Skip to content

Commit 2043c33

Browse files
committed
Update to Rust 1.80
1 parent 6cac112 commit 2043c33

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions-rs/toolchain@v1
2323
with:
2424
profile: default
25-
toolchain: 1.79.0
25+
toolchain: 1.80.0
2626
override: true
2727

2828
- name: Install packages (Linux)
@@ -107,7 +107,7 @@ jobs:
107107
- uses: actions-rs/toolchain@v1
108108
with:
109109
profile: minimal
110-
toolchain: 1.79.0
110+
toolchain: 1.80.0
111111
target: wasm32-unknown-unknown
112112
override: true
113113
components: clippy
@@ -135,6 +135,6 @@ jobs:
135135
- uses: actions/checkout@v3
136136
- uses: EmbarkStudios/cargo-deny-action@v1
137137
with:
138-
rust-version: "1.79.0"
138+
rust-version: "1.80.0"
139139
log-level: warn
140140
command: check

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "new_project_name"
1111
publish = false # TODO: set to `true` if you plan on publishing the crate
1212
readme = "README.md"
1313
repository = "https://github.com/rerun-io/new_repo_name"
14-
rust-version = "1.79"
14+
rust-version = "1.80"
1515
version = "0.1.0"
1616

1717
[package.metadata.docs.rs]
@@ -40,13 +40,13 @@ workspace = true
4040
unsafe_code = "deny"
4141

4242
elided_lifetimes_in_paths = "warn"
43-
future_incompatible = "warn"
44-
nonstandard_style = "warn"
45-
rust_2018_idioms = "warn"
43+
future_incompatible = { level = "warn", priority = -1 }
44+
nonstandard_style = { level = "warn", priority = -1 }
45+
rust_2018_idioms = { level = "warn", priority = -1 }
4646
rust_2021_prelude_collisions = "warn"
4747
semicolon_in_expressions_from_macros = "warn"
4848
trivial_numeric_casts = "warn"
49-
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
49+
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
5050
unused_extern_crates = "warn"
5151
unused_import_braces = "warn"
5252
unused_lifetimes = "warn"

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# -----------------------------------------------------------------------------
66
# Section identical to scripts/clippy_wasm/clippy.toml:
77

8-
msrv = "1.79"
8+
msrv = "1.80"
99

1010
allow-unwrap-in-tests = true
1111

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".
66

77
[toolchain]
8-
channel = "1.79" # Avoid specifying a patch version here; see https://github.com/emilk/eframe_template/issues/145
8+
channel = "1.80" # Avoid specifying a patch version here; see https://github.com/emilk/eframe_template/issues/145
99
components = ["rustfmt", "clippy"]
1010
targets = ["wasm32-unknown-unknown"]

scripts/clippy_wasm/clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# -----------------------------------------------------------------------------
99
# Section identical to the main clippy.toml:
1010

11-
msrv = "1.79"
11+
msrv = "1.80"
1212

1313
allow-unwrap-in-tests = true
1414

0 commit comments

Comments
 (0)