Day 16 - Part 1

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-18 12:34:29 -05:00
parent 5b5da8e223
commit 5c5bb4f8d8
10 changed files with 500 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
[package]
name = "day-16"
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 }
glam = { workspace = true }
[dev-dependencies]
divan = { workspace = true }
env_logger = { workspace = true }
test-log = { workspace = true }
[[bench]]
name = "day-16"
path = "benches/benchmark.rs"
harness = false
[features]
dhat-heap = []