day-03 part-1

This commit is contained in:
2024-12-03 09:21:02 +02:00
parent 3789ea1005
commit d986d89c78
8 changed files with 170 additions and 1 deletions

24
2024/day-03/Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
name = "day-03"
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
regex = "1.11"
[dev-dependencies]
divan.workspace = true
rstest.workspace = true
test-log.workspace = true
[[bench]]
name = "day-03-bench"
path = "benches/benchmarks.rs"
harness = false