advent-of-code/aoc2020/Cargo.toml
Antoine Martin 0446f11a46 2020: bump nom version
I was getting a compilation error (something in the latest Rust
compiler?), related to a nom dependency (bitvec v0.19), but nom 7 does
not depend on bitvec by default anymore, yay!

The move + clone closures feel kind of wrong though
2021-12-17 14:12:35 +01:00

21 lines
379 B
TOML

[package]
name = "aoc2020"
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"
itertools = "0.9"
nom = "7.0"
[lib]
path = "src/lib.rs"
[[bin]]
name = "aoc2020"
path = "src/main.rs"