Skip to content

Commit 53a926a

Browse files
authored
Update MSRV to 1.80 (#5457)
Because some dependencies now require it, see: * #5456
1 parent 9b1ae6b commit 53a926a

File tree

42 files changed

+63
-52
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+63
-52
lines changed

.github/workflows/deploy_web_demo.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
profile: minimal
4141
target: wasm32-unknown-unknown
42-
toolchain: 1.79.0
42+
toolchain: 1.80.0
4343
override: true
4444

4545
- uses: Swatinem/rust-cache@v2

.github/workflows/rust.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: dtolnay/rust-toolchain@master
2020
with:
21-
toolchain: 1.79.0
21+
toolchain: 1.80.0
2222

2323
- name: Install packages (Linux)
2424
if: runner.os == 'Linux'
@@ -83,7 +83,7 @@ jobs:
8383
- uses: actions/checkout@v4
8484
- uses: dtolnay/rust-toolchain@master
8585
with:
86-
toolchain: 1.79.0
86+
toolchain: 1.80.0
8787
targets: wasm32-unknown-unknown
8888

8989
- run: sudo apt-get update && sudo apt-get install libgtk-3-dev libatk1.0-dev
@@ -155,7 +155,7 @@ jobs:
155155
- uses: actions/checkout@v4
156156
- uses: EmbarkStudios/cargo-deny-action@v1
157157
with:
158-
rust-version: "1.79.0"
158+
rust-version: "1.80.0"
159159
log-level: error
160160
command: check
161161
arguments: --target ${{ matrix.target }}
@@ -170,7 +170,7 @@ jobs:
170170

171171
- uses: dtolnay/rust-toolchain@master
172172
with:
173-
toolchain: 1.79.0
173+
toolchain: 1.80.0
174174
targets: aarch64-linux-android
175175

176176
- name: Set up cargo cache
@@ -189,7 +189,7 @@ jobs:
189189

190190
- uses: dtolnay/rust-toolchain@master
191191
with:
192-
toolchain: 1.79.0
192+
toolchain: 1.80.0
193193
targets: aarch64-apple-ios
194194

195195
- name: Set up cargo cache
@@ -208,7 +208,7 @@ jobs:
208208
- uses: actions/checkout@v4
209209
- uses: dtolnay/rust-toolchain@master
210210
with:
211-
toolchain: 1.79.0
211+
toolchain: 1.80.0
212212

213213
- name: Set up cargo cache
214214
uses: Swatinem/rust-cache@v2
@@ -232,7 +232,7 @@ jobs:
232232
lfs: true
233233
- uses: dtolnay/rust-toolchain@master
234234
with:
235-
toolchain: 1.79.0
235+
toolchain: 1.80.0
236236

237237
- name: Set up cargo cache
238238
uses: Swatinem/rust-cache@v2

Cargo.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ members = [
2323
[workspace.package]
2424
edition = "2021"
2525
license = "MIT OR Apache-2.0"
26-
rust-version = "1.79"
26+
rust-version = "1.80"
2727
version = "0.29.1"
2828

2929

@@ -106,13 +106,13 @@ winit = { version = "0.30.5", default-features = false }
106106
unsafe_code = "deny"
107107

108108
elided_lifetimes_in_paths = "warn"
109-
future_incompatible = "warn"
110-
nonstandard_style = "warn"
111-
rust_2018_idioms = "warn"
109+
future_incompatible = { level = "warn", priority = -1 }
110+
nonstandard_style = { level = "warn", priority = -1 }
111+
rust_2018_idioms = { level = "warn", priority = -1 }
112112
rust_2021_prelude_collisions = "warn"
113113
semicolon_in_expressions_from_macros = "warn"
114114
trivial_numeric_casts = "warn"
115-
unsafe_op_in_unsafe_fn = "warn" # `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668
115+
unsafe_op_in_unsafe_fn = "warn" # `unsafe_op_in_unsafe_fn` may become the default in future Rust versions: https://github.com/rust-lang/rust/issues/71668
116116
unused_extern_crates = "warn"
117117
unused_import_braces = "warn"
118118
unused_lifetimes = "warn"
@@ -233,6 +233,7 @@ ref_patterns = "warn"
233233
rest_pat_in_fully_bound_structs = "warn"
234234
same_functions_in_if_condition = "warn"
235235
semicolon_if_nothing_returned = "warn"
236+
single_char_pattern = "warn"
236237
single_match_else = "warn"
237238
str_split_at_newline = "warn"
238239
str_to_string = "warn"

clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# -----------------------------------------------------------------------------
44
# Section identical to scripts/clippy_wasm/clippy.toml:
55

6-
msrv = "1.79"
6+
msrv = "1.80"
77

88
allow-unwrap-in-tests = true
99

crates/eframe/src/web/app_runner.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ impl AppRunner {
260260
self.frame.info.cpu_usage = Some(cpu_usage_seconds);
261261
}
262262

263-
fn handle_platform_output(&mut self, platform_output: egui::PlatformOutput) {
263+
fn handle_platform_output(&self, platform_output: egui::PlatformOutput) {
264264
#[cfg(feature = "web_screen_reader")]
265265
if self.egui_ctx.options(|o| o.screen_reader) {
266266
super::screen_reader::speak(&platform_output.events_description());

crates/egui-wgpu/src/winit.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ impl Painter {
728728
.retain(|id, _| active_viewports.contains(id));
729729
}
730730

731-
#[allow(clippy::unused_self)]
731+
#[allow(clippy::needless_pass_by_ref_mut, clippy::unused_self)]
732732
pub fn destroy(&mut self) {
733733
// TODO(emilk): something here?
734734
}

crates/egui/src/containers/resize.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ struct Prepared {
205205
}
206206

207207
impl Resize {
208-
fn begin(&mut self, ui: &mut Ui) -> Prepared {
208+
fn begin(&self, ui: &mut Ui) -> Prepared {
209209
let position = ui.available_rect_before_wrap().min;
210210
let id = self.id.unwrap_or_else(|| {
211211
let id_salt = self.id_salt.unwrap_or_else(|| Id::new("resize"));
@@ -295,7 +295,7 @@ impl Resize {
295295
}
296296
}
297297

298-
pub fn show<R>(mut self, ui: &mut Ui, add_contents: impl FnOnce(&mut Ui) -> R) -> R {
298+
pub fn show<R>(self, ui: &mut Ui, add_contents: impl FnOnce(&mut Ui) -> R) -> R {
299299
let mut prepared = self.begin(ui);
300300
let ret = add_contents(&mut prepared.content_ui);
301301
self.end(ui, prepared);

crates/egui/src/grid.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ impl GridLayout {
227227
self.col += 1;
228228
}
229229

230-
fn paint_row(&mut self, cursor: &Rect, painter: &Painter) {
230+
fn paint_row(&self, cursor: &Rect, painter: &Painter) {
231231
// handle row color painting based on color-picker function
232232
let Some(color_picker) = self.color_picker.as_ref() else {
233233
return;
@@ -450,7 +450,7 @@ impl Grid {
450450
ui.allocate_new_ui(ui_builder, |ui| {
451451
ui.horizontal(|ui| {
452452
let is_color = color_picker.is_some();
453-
let mut grid = GridLayout {
453+
let grid = GridLayout {
454454
num_columns,
455455
color_picker,
456456
min_cell_size: vec2(min_col_width, min_row_height),

crates/egui/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! Try the live web demo: <https://www.egui.rs/#demo>. Read more about egui at <https://github.com/emilk/egui>.
44
//!
55
//! `egui` is in heavy development, with each new version having breaking changes.
6-
//! You need to have rust 1.79.0 or later to use `egui`.
6+
//! You need to have rust 1.80.0 or later to use `egui`.
77
//!
88
//! To quickly get started with egui, you can take a look at [`eframe_template`](https://github.com/emilk/eframe_template)
99
//! which uses [`eframe`](https://docs.rs/eframe).

crates/egui/src/widgets/color_picker.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,11 @@ fn color_slider_1d(ui: &mut Ui, value: &mut f32, color_at: impl Fn(f32) -> Color
165165
/// * `x_value` - X axis, either saturation or value (0.0-1.0).
166166
/// * `y_value` - Y axis, either saturation or value (0.0-1.0).
167167
/// * `color_at` - A function that dictates how the mix of saturation and value will be displayed in the 2d slider.
168-
/// E.g.: `|x_value, y_value| HsvaGamma { h: 1.0, s: x_value, v: y_value, a: 1.0 }.into()` displays the colors as follows: top-left: white \[s: 0.0, v: 1.0], top-right: fully saturated color \[s: 1.0, v: 1.0], bottom-right: black \[s: 0.0, v: 1.0].
169168
///
169+
/// e.g.: `|x_value, y_value| HsvaGamma { h: 1.0, s: x_value, v: y_value, a: 1.0 }.into()` displays the colors as follows:
170+
/// * top-left: white `[s: 0.0, v: 1.0]`
171+
/// * top-right: fully saturated color `[s: 1.0, v: 1.0]`
172+
/// * bottom-right: black `[s: 0.0, v: 1.0].`
170173
fn color_slider_2d(
171174
ui: &mut Ui,
172175
x_value: &mut f32,

crates/egui/src/widgets/text_edit/state.rs

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ impl TextEditState {
8989
self.undoer.lock().clone()
9090
}
9191

92+
#[allow(clippy::needless_pass_by_ref_mut)] // Intentionally hide interiority of mutability
9293
pub fn set_undoer(&mut self, undoer: TextEditUndoer) {
9394
*self.undoer.lock() = undoer;
9495
}

crates/egui_demo_app/src/frame_history.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ impl FrameHistory {
3232
1.0 / self.frame_times.mean_time_interval().unwrap_or_default()
3333
}
3434

35-
pub fn ui(&mut self, ui: &mut egui::Ui) {
35+
pub fn ui(&self, ui: &mut egui::Ui) {
3636
ui.label(format!(
3737
"Mean CPU usage: {:.2} ms / frame",
3838
1e3 * self.mean_frame_time()

crates/egui_extras/src/table.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ impl<'a> TableBody<'a> {
12271227

12281228
// Capture the hover information for the just created row. This is used in the next render
12291229
// to ensure that the entire row is highlighted.
1230-
fn capture_hover_state(&mut self, response: &Option<Response>, row_index: usize) {
1230+
fn capture_hover_state(&self, response: &Option<Response>, row_index: usize) {
12311231
let is_row_hovered = response.as_ref().map_or(false, |r| r.hovered());
12321232
if is_row_hovered {
12331233
self.layout

crates/egui_kittest/src/wgpu.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ impl TestRenderer {
6060
}
6161

6262
/// Render the [`Harness`] and return the resulting image.
63-
pub fn render<State>(&mut self, harness: &Harness<'_, State>) -> RgbaImage {
63+
pub fn render<State>(&self, harness: &Harness<'_, State>) -> RgbaImage {
6464
// We need to create a new renderer each time we render, since the renderer stores
6565
// textures related to the Harnesses' egui Context.
6666
// Calling the renderer from different Harnesses would cause problems if we store the renderer.

crates/epaint/src/bezier.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -207,17 +207,21 @@ impl CubicBezierShape {
207207
/// B.x = (P3.x - 3 * P2.x + 3 * P1.x - P0.x) * t^3 + (3 * P2.x - 6 * P1.x + 3 * P0.x) * t^2 + (3 * P1.x - 3 * P0.x) * t + P0.x
208208
/// B.y = (P3.y - 3 * P2.y + 3 * P1.y - P0.y) * t^3 + (3 * P2.y - 6 * P1.y + 3 * P0.y) * t^2 + (3 * P1.y - 3 * P0.y) * t + P0.y
209209
/// Combine the above three equations and iliminate B.x and B.y, we get:
210+
/// ```text
210211
/// t^3 * ( (P3.x - 3*P2.x + 3*P1.x - P0.x) * (P3.y - P0.y) - (P3.y - 3*P2.y + 3*P1.y - P0.y) * (P3.x - P0.x))
211212
/// + t^2 * ( (3 * P2.x - 6 * P1.x + 3 * P0.x) * (P3.y - P0.y) - (3 * P2.y - 6 * P1.y + 3 * P0.y) * (P3.x - P0.x))
212213
/// + t^1 * ( (3 * P1.x - 3 * P0.x) * (P3.y - P0.y) - (3 * P1.y - 3 * P0.y) * (P3.x - P0.x))
213214
/// + (P0.x * (P3.y - P0.y) - P0.y * (P3.x - P0.x)) + P0.x * (P0.y - P3.y) + P0.y * (P3.x - P0.x)
214215
/// = 0
215-
/// or a * t^3 + b * t^2 + c * t + d = 0
216+
/// ```
217+
/// or `a * t^3 + b * t^2 + c * t + d = 0`
216218
///
217219
/// let x = t - b / (3 * a), then we have:
220+
/// ```text
218221
/// x^3 + p * x + q = 0, where:
219222
/// p = (3.0 * a * c - b^2) / (3.0 * a^2)
220223
/// q = (2.0 * b^3 - 9.0 * a * b * c + 27.0 * a^2 * d) / (27.0 * a^3)
224+
/// ```
221225
///
222226
/// when p > 0, there will be one real root, two complex roots
223227
/// when p = 0, there will be two real roots, when p=q=0, there will be three real roots but all 0.

crates/epaint/src/texture_handle.rs

+2
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,15 @@ impl TextureHandle {
6666
}
6767

6868
/// Assign a new image to an existing texture.
69+
#[allow(clippy::needless_pass_by_ref_mut)] // Intentionally hide interiority of mutability
6970
pub fn set(&mut self, image: impl Into<ImageData>, options: TextureOptions) {
7071
self.tex_mngr
7172
.write()
7273
.set(self.id, ImageDelta::full(image.into(), options));
7374
}
7475

7576
/// Assign a new image to a subregion of the whole texture.
77+
#[allow(clippy::needless_pass_by_ref_mut)] // Intentionally hide interiority of mutability
7678
pub fn set_partial(
7779
&mut self,
7880
pos: [usize; 2],

examples/confirm_exit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/custom_3d_glow/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/custom_font/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/custom_font_style/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["tami5 <kkharji@proton.me>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/custom_keypad/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Varphone Wong <varphone@qq.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/custom_style/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "custom_style"
33
version = "0.1.0"
44
license = "MIT OR Apache-2.0"
55
edition = "2021"
6-
rust-version = "1.79"
6+
rust-version = "1.80"
77
publish = false
88

99
[lints]

examples/custom_window_frame/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/file_dialog/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/hello_world/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/hello_world_par/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Maxim Osipenko <maxim1999max@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/hello_world_simple/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/images/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Jan Procházka <github.com/jprochazk>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/keyboard_events/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Jose Palazon <jose@palako.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

examples/multiple_viewports/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
authors = ["Emil Ernerfeldt <emil.ernerfeldt@gmail.com>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
7-
rust-version = "1.79"
7+
rust-version = "1.80"
88
publish = false
99

1010
[lints]

0 commit comments

Comments
 (0)