Add skeleton project

Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
This commit is contained in:
Anthony Oteri
2023-12-06 20:30:47 -05:00
parent 39357dd33c
commit 6bc2407bba
11 changed files with 166 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
[package]
name = "day-00"
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-00"
path = "benches/benchmark.rs"
harness = false
[features]
dhat-heap = []