diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2022-12-20 23:33:51 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2022-12-20 23:33:51 +0000 |
| commit | a667c19882e1feb542a122781b4efe5545dea0dd (patch) | |
| tree | d7f8a0aa645ad5181995e93381e5c0cf9122cd42 /day04a/Cargo.toml | |
| parent | 5941c6c20ab337194514a5d2bf2b9b9c8b0b3d32 (diff) | |
| download | advent_of_code_2022-a667c19882e1feb542a122781b4efe5545dea0dd.tar.gz advent_of_code_2022-a667c19882e1feb542a122781b4efe5545dea0dd.zip | |
complete day 4
Diffstat (limited to 'day04a/Cargo.toml')
| -rw-r--r-- | day04a/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/day04a/Cargo.toml b/day04a/Cargo.toml new file mode 100644 index 0000000..edd2432 --- /dev/null +++ b/day04a/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "day04a" +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"] } +itertools = "0.10.5" |
