Skip to content

Commit 4ac7e43

Browse files
committed
Bump Rust version to 1.92
1 parent c30eec9 commit 4ac7e43

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@v4
23-
- run: rustup default 1.91
23+
- run: rustup default 1.92
2424
- run: cargo test
2525

2626
test-nightly:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
url: ${{ steps.deployment.outputs.page_url }}
1919
steps:
2020
- uses: actions/checkout@v4
21-
- run: rustup default 1.91
21+
- run: rustup default 1.92
2222
- run: cargo doc
2323
env:
2424
RUSTDOCFLAGS: "--document-private-items --default-theme=ayu --deny warnings"

Cargo.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "aoc"
33
version = "2024.12.25"
44
edition = "2024"
5-
rust-version = "1.91"
5+
rust-version = "1.92"
66

77
# Speed up benchmarking by not recompiling everything when only a single file changes.
88
[profile.bench]
@@ -18,15 +18,15 @@ private_intra_doc_links = "allow"
1818
[lints.rust]
1919
absolute_paths_not_starting_with_crate = "warn"
2020
ambiguous_negative_literals = "warn"
21-
closure-returning-async-block = "warn"
21+
closure_returning_async_block = "warn"
22+
deref_into_dyn_supertrait = "warn"
2223
elided_lifetimes_in_paths = "warn"
2324
explicit_outlives_requirements = "warn"
2425
ffi_unwind_calls = "warn"
25-
if-let-rescope = "warn"
26+
if_let_rescope = "warn"
2627
let_underscore_drop = "warn"
2728
macro_use_extern_crate = "warn"
2829
meta_variable_misuse = "warn"
29-
missing_abi = "warn"
3030
missing_copy_implementations = "allow"
3131
missing_debug_implementations = "allow"
3232
missing_docs = "allow"
@@ -98,8 +98,8 @@ doc_markdown = "warn"
9898
elidable_lifetime_names = "warn"
9999
else_if_without_else = "allow"
100100
empty_drop = "warn"
101-
empty_enums = "warn"
102101
empty_enum_variants_with_brackets = "warn"
102+
empty_enums = "warn"
103103
empty_structs_with_brackets = "warn"
104104
enum_glob_use = "allow"
105105
error_impl_error = "warn"
@@ -250,6 +250,7 @@ return_self_not_must_use = "warn"
250250
same_functions_in_if_condition = "warn"
251251
same_name_method = "warn"
252252
self_named_module_files = "warn"
253+
self_only_used_in_recursion = "warn"
253254
semicolon_if_nothing_returned = "warn"
254255
semicolon_inside_block = "warn"
255256
semicolon_outside_block = "warn"
@@ -284,8 +285,8 @@ try_err = "warn"
284285
unchecked_time_subtraction = "warn"
285286
undocumented_unsafe_blocks = "warn"
286287
unicode_not_nfc = "warn"
287-
uninlined_format_args = "allow"
288288
unimplemented = "warn"
289+
uninlined_format_args = "allow"
289290
unnecessary_box_returns = "warn"
290291
unnecessary_debug_formatting = "warn"
291292
unnecessary_join = "warn"

0 commit comments

Comments
 (0)