mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
29 lines
559 B
TOML
29 lines
559 B
TOML
[package]
|
|
name = "day-08"
|
|
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-08-bench"
|
|
path = "benches/benchmarks.rs"
|
|
harness = false
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|
|
nursery = "warn"
|