2020: introduce anyhow

This commit is contained in:
Antoine Martin 2020-12-14 09:52:13 +01:00
parent d457461d2f
commit f9e1306881
2 changed files with 9 additions and 0 deletions

7
Cargo.lock generated
View file

@ -1,5 +1,11 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
[[package]]
name = "anyhow"
version = "1.0.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c0df63cb2955042487fad3aefd2c6e3ae7389ac5dc1beb28921de0b69f779d4"
[[package]] [[package]]
name = "aoc" name = "aoc"
version = "0.1.0" version = "0.1.0"
@ -33,6 +39,7 @@ dependencies = [
name = "aoc2020" name = "aoc2020"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"anyhow",
"aoc", "aoc",
"criterion", "criterion",
] ]

View file

@ -14,6 +14,8 @@ criterion = "0.3"
aoc = { path = "../aoc" } aoc = { path = "../aoc" }
anyhow = "1.0"
[lib] [lib]
path = "src/lib.rs" path = "src/lib.rs"
bench = false bench = false