advent-of-code/aoc2019/Cargo.toml

19 lines
349 B
TOML
Raw Normal View History

2019-12-01 16:03:34 +01:00
[package]
name = "aoc2019"
version = "0.1.0"
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
2021-11-25 16:34:29 +01:00
edition = "2021"
2019-12-01 16:03:34 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2019-12-01 22:22:12 +01:00
aoc = { path = "../aoc" }
2020-12-14 19:24:43 +01:00
anyhow = "1.0"
2019-12-06 19:07:57 +01:00
[lib]
path = "src/lib.rs"
[[bin]]
name = "aoc2019"
path = "src/main.rs"