Day 19 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-19 16:39:19 -05:00
parent 4ff47dfc8b
commit 3952d1d4c0
10 changed files with 1082 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
[package]
name = "day-19"
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-19"
path = "benches/benchmark.rs"
harness = false
[features]
dhat-heap = []