File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed
Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ name = "new_project_name"
1111publish = false # TODO: set to `true` if you plan on publishing the crate
1212readme = " README.md"
1313repository = " https://github.com/rerun-io/new_repo_name"
14- rust-version = " 1.79 "
14+ rust-version = " 1.80 "
1515version = " 0.1.0"
1616
1717[package .metadata .docs .rs ]
@@ -40,13 +40,13 @@ workspace = true
4040unsafe_code = " deny"
4141
4242elided_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 }
4646rust_2021_prelude_collisions = " warn"
4747semicolon_in_expressions_from_macros = " warn"
4848trivial_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
5050unused_extern_crates = " warn"
5151unused_import_braces = " warn"
5252unused_lifetimes = " warn"
Original file line number Diff line number Diff line change 55# -----------------------------------------------------------------------------
66# Section identical to scripts/clippy_wasm/clippy.toml:
77
8- msrv = " 1.79 "
8+ msrv = " 1.80 "
99
1010allow-unwrap-in-tests = true
1111
Original file line number Diff line number Diff line change 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
99components = ["rustfmt", "clippy"]
1010targets = ["wasm32-unknown-unknown"]
Original file line number Diff line number Diff line change 88# -----------------------------------------------------------------------------
99# Section identical to the main clippy.toml:
1010
11- msrv = " 1.79 "
11+ msrv = " 1.80 "
1212
1313allow-unwrap-in-tests = true
1414
You can’t perform that action at this time.
0 commit comments