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
This commit is contained in:
Antoine Martin 2021-12-17 14:12:35 +01:00
parent 4f36262761
commit 0446f11a46
3 changed files with 17 additions and 61 deletions

View file

@ -10,7 +10,7 @@ edition = "2021"
aoc = { path = "../aoc" }
anyhow = "1.0"
itertools = "0.9"
nom = "6.0"
nom = "7.0"
[lib]
path = "src/lib.rs"