mirror of
https://github.com/anthonyoteri/advent-of-code-2023.git
synced 2026-06-05 23:06:53 -04:00
530417e816
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
30 lines
643 B
TOML
30 lines
643 B
TOML
[package]
|
|
name = "day-11"
|
|
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 }
|
|
rayon = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
divan = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
test-log = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "day-00"
|
|
path = "benches/benchmark.rs"
|
|
harness = false
|
|
|
|
[features]
|
|
dhat-heap = []
|