diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2022-12-21 18:17:44 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2022-12-21 18:17:44 +0000 |
| commit | 666b11bc77f17d6d2b5a466c56ea7710bb9134fd (patch) | |
| tree | b19bd61fb34a190ec825e18b64a04656fc86b6cc /day05a/Cargo.toml | |
| parent | a667c19882e1feb542a122781b4efe5545dea0dd (diff) | |
| download | advent_of_code_2022-666b11bc77f17d6d2b5a466c56ea7710bb9134fd.tar.gz advent_of_code_2022-666b11bc77f17d6d2b5a466c56ea7710bb9134fd.zip | |
complete day 5
Diffstat (limited to 'day05a/Cargo.toml')
| -rw-r--r-- | day05a/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/day05a/Cargo.toml b/day05a/Cargo.toml new file mode 100644 index 0000000..4ff4967 --- /dev/null +++ b/day05a/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "day05a" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "3.2.20", features = ["derive"] } +nom = "7.1.1" +itertools = "0.10.5" |
