2020-12-01 16:34:25 +01:00
|
|
|
[package]
|
|
|
|
name = "aoc2020"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
|
2021-11-25 16:34:29 +01:00
|
|
|
edition = "2021"
|
2020-12-01 16:34:25 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
aoc = { path = "../aoc" }
|
2020-12-14 09:52:13 +01:00
|
|
|
anyhow = "1.0"
|
2020-12-17 13:12:11 +01:00
|
|
|
itertools = "0.9"
|
2021-12-17 14:12:35 +01:00
|
|
|
nom = "7.0"
|
2020-12-14 09:52:13 +01:00
|
|
|
|
2020-12-01 16:34:25 +01:00
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "aoc2020"
|
|
|
|
path = "src/main.rs"
|