20 lines
332 B
TOML
20 lines
332 B
TOML
[package]
|
|
name = "aoc22"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
regex = "1"
|
|
itertools = "^0.10"
|
|
log = "^0.4"
|
|
env_logger = "^0.10"
|
|
num = "^0.1"
|
|
lazy_static = "^1.4"
|
|
once_cell = "^1.16"
|
|
trees = "^0.4"
|
|
|
|
[[bin]]
|
|
name = "d1p1"
|