Day-07 - From Skeleton

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-06 20:32:10 -05:00
parent 6bc2407bba
commit 11d6c3f810
10 changed files with 134 additions and 0 deletions
+28
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 }
dhat = { workspace = true }
[dev-dependencies]
divan = { workspace = true }
env_logger = { workspace = true }
test-log = { workspace = true }
[[bench]]
name = "day-07"
path = "benches/benchmark.rs"
harness = false
[features]
dhat-heap = []