advent-of-code/aoc2021/Cargo.toml

21 lines
377 B
TOML
Raw Normal View History

2021-11-25 16:49:52 +01:00
[package]
name = "aoc2021"
version = "0.1.0"
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aoc = { path = "../aoc" }
anyhow = "1.0"
rand = "0.8"
2022-12-05 23:04:07 +01:00
bitvec = "1.0"
2021-11-25 16:49:52 +01:00
[lib]
path = "src/lib.rs"
[[bin]]
name = "aoc2021"
path = "src/main.rs"