add first draft of a gumdrop implementation

This commit is contained in:
Leo Drachenfeuer 2022-12-19 08:13:44 +01:00
parent 289a06a228
commit 3f6d9223d5
Signed by: dragonleo
GPG key ID: A8338FC081137CF0
4 changed files with 93 additions and 94 deletions

26
Cargo.lock generated
View file

@ -2,10 +2,6 @@
# It is not intended for manual editing.
version = 3
[[package]]
name = "adventofcode"
version = "2022.1.0"
[[package]]
name = "aoc"
version = "2022.1.0"
@ -23,7 +19,7 @@ name = "aoc22-gdrop"
version = "2022.1.0"
dependencies = [
"aoc",
"clap",
"gumdrop",
]
[[package]]
@ -96,6 +92,26 @@ dependencies = [
"libc",
]
[[package]]
name = "gumdrop"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bc700f989d2f6f0248546222d9b4258f5b02a171a431f8285a81c08142629e3"
dependencies = [
"gumdrop_derive",
]
[[package]]
name = "gumdrop_derive"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "729f9bd3449d77e7831a18abfb7ba2f99ee813dfd15b8c2167c9a54ba20aa99d"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "heck"
version = "0.4.0"