Skip to content

Commit 15db74a

Browse files
committed
Bump Rust version to 1.91
1 parent aced27a commit 15db74a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
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.90
23+
- run: rustup default 1.91
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.90
21+
- run: rustup default 1.91
2222
- run: cargo doc
2323
env:
2424
RUSTDOCFLAGS: "--document-private-items --default-theme=ayu --deny warnings"

Cargo.toml

Lines changed: 3 additions & 1 deletion
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.90"
5+
rust-version = "1.91"
66

77
# Speed up benchmarking by not recompiling everything when only a single file changes.
88
[profile.bench]
@@ -90,6 +90,7 @@ default_trait_access = "warn"
9090
default_union_representation = "warn"
9191
deref_by_slicing = "allow"
9292
disallowed_script_idents = "warn"
93+
doc_broken_link = "warn"
9394
doc_comment_double_space_linebreaks = "warn"
9495
doc_include_without_cfg = "warn"
9596
doc_link_with_quotes = "warn"
@@ -283,6 +284,7 @@ try_err = "warn"
283284
unchecked_time_subtraction = "warn"
284285
undocumented_unsafe_blocks = "warn"
285286
unicode_not_nfc = "warn"
287+
uninlined_format_args = "allow"
286288
unimplemented = "warn"
287289
unnecessary_box_returns = "warn"
288290
unnecessary_debug_formatting = "warn"

0 commit comments

Comments
 (0)