day-07 part-1

This commit is contained in:
2024-12-07 11:55:24 +02:00
parent 9c3920b29a
commit c2eb41f435
9 changed files with 521 additions and 6 deletions

28
2024/day-07/Cargo.toml Normal file
View File

@@ -0,0 +1,28 @@
[package]
name = "day-07"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools.workspace = true
nom.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
miette.workspace = true
thiserror.workspace = true
[dev-dependencies]
divan.workspace = true
rstest.workspace = true
test-log.workspace = true
[[bench]]
name = "day-07-bench"
path = "benches/benchmarks.rs"
harness = false
[lints.clippy]
pedantic = "warn"
nursery = "warn"