Skip to content

Commit e107ad8

Browse files
committedAug 18, 2024·
Update dependencies to latest.
1 parent 4735b0a commit e107ad8

File tree

10 files changed

+264
-298
lines changed

10 files changed

+264
-298
lines changed
 

‎Cargo.lock

+259-283
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
My solutions for Advent of Code 2023. Written in Rust 🦀.
66

77
- Clone the repository.
8-
- Make sure you have a nightly version of Rust around January 2024.
8+
- Make sure you have a nightly version of Rust around August 2024.
99
- `cargo run --release` for all days, `cargo run --release -- NN` for a specific
1010
day.
1111
- Want your own inputs?

‎framework/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
#![feature(maybe_uninit_array_assume_init)]
77
#![feature(maybe_uninit_uninit_array)]
88
#![feature(negative_impls)]
9-
#![feature(non_null_convenience)]
10-
#![feature(slice_split_at_unchecked)]
119
#![feature(trait_alias)]
1210
#![feature(trusted_len)]
1311

‎framework/src/outputs.rs

-3
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@ impl fmt::Display for ColoredOutput {
2424
}
2525

2626
auto trait NotIntoColorOutput {}
27-
#[allow(suspicious_auto_trait_impls)]
2827
impl !NotIntoColorOutput for ColoredOutput {}
29-
#[allow(suspicious_auto_trait_impls)]
3028
impl !NotIntoColorOutput for AString {}
31-
#[allow(suspicious_auto_trait_impls)]
3229
impl !NotIntoColorOutput for &'static AStr {}
3330

3431
impl<T: fmt::Display + NotIntoColorOutput> From<T> for ColoredOutput {

‎framework/src/parsers/numbers.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ macro_rules! impl_uint_parsing {
1616

1717
let mut remainder = &input[1..];
1818

19-
let mut x = (first_char as $kind) - ('0' as $kind);
19+
let mut x = (first_char as $kind) - (b'0' as $kind);
2020
loop {
2121
let next_digit = match remainder.first() {
22-
Some(&c @ b'0'..=b'9') => (c as $kind) - ('0' as $kind),
22+
Some(&c @ b'0'..=b'9') => (c as $kind) - (b'0' as $kind),
2323
_ => break,
2424
};
2525
x = x

‎framework/src/result.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
pub type Result<T> = std::result::Result<T, crate::error::Error>;
22

33
pub auto trait IsNotResult {}
4-
#[allow(suspicious_auto_trait_impls)]
54
impl<T> !IsNotResult for Result<T> {}
65

76
pub trait IntoResult {

‎framework/src/vecs.rs

-3
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,6 @@ macro_rules! impl_vec {
235235
};
236236
}
237237

238-
auto trait NotSame {}
239-
impl<T> !NotSame for (T, T) {}
240-
241238
impl_vec!(Vec1, NotVec1, x, "({})");
242239
impl_vec!(Vec2, NotVec2, x, y, "({}, {})");
243240
impl_vec!(Vec3, NotVec3, x, y, z, "({}, {}, {})");

‎src/day03.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ type Vec2 = framework::vecs::Vec2<u32>;
44
type Grid = VecGrid<u8>;
55

66
fn iter_ranges(grid: &Grid) -> impl Iterator<Item = (Vec2, u32)> + '_ {
7-
std::iter::from_coroutine(|| {
7+
std::iter::from_coroutine(#[coroutine] || {
88
for y in 0..grid.height() {
99
let mut x = 0;
1010
while x < grid.width() {

‎src/day25.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ impl Graph {
115115
for wire in wiring {
116116
let a_idx = node_map[&wire.a];
117117
for b in &wire.b {
118-
let b_idx = node_map[&b];
118+
let b_idx = node_map[b];
119119
let (a, b) = nodes.get_two_mut(a_idx as usize, b_idx as usize).unwrap();
120120

121121
let edge_idx = edges.len() as u32;

‎src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![feature(array_chunks)]
2-
#![feature(byte_slice_trim_ascii)]
32
#![feature(coroutines)]
43
#![feature(hash_raw_entry)]
54
#![feature(iter_from_coroutine)]

0 commit comments

Comments
 (0)