Skip to content

Commit c8df551

Browse files
committed
Bump Rust version to 1.89
1 parent 4c4c98f commit c8df551

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.88
23+
- run: rustup default 1.89
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.88
21+
- run: rustup default 1.89
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.88"
5+
rust-version = "1.89"
66

77
[features]
88
frivolity = []
@@ -140,6 +140,7 @@ integer_division = "allow"
140140
integer_division_remainder_used = "allow"
141141
into_iter_without_iter = "warn"
142142
invalid_upcast_comparisons = "warn"
143+
ip_constant = "warn"
143144
items_after_statements = "warn"
144145
iter_filter_is_ok = "warn"
145146
iter_filter_is_some = "warn"
@@ -213,6 +214,7 @@ panic_in_result_fn = "warn"
213214
partial_pub_fields = "warn"
214215
pathbuf_init_then_push = "warn"
215216
pattern_type_mismatch = "allow"
217+
pointer_format = "warn"
216218
precedence_bits = "warn"
217219
print_stderr = "allow"
218220
print_stdout = "allow"

0 commit comments

Comments
 (0)