diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2023-01-08 19:47:17 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2023-01-08 19:47:17 +0000 |
| commit | 3c03c8b85457c04c1cc4f08a5542aa596f8228e3 (patch) | |
| tree | 10f8bebe30531ca048193c02966d7cc6db45047c /day14a/Cargo.toml | |
| parent | 733c909873edd6f783d52960b7faac0aad5902c2 (diff) | |
| download | advent_of_code_2022-3c03c8b85457c04c1cc4f08a5542aa596f8228e3.tar.gz advent_of_code_2022-3c03c8b85457c04c1cc4f08a5542aa596f8228e3.zip | |
Diffstat (limited to 'day14a/Cargo.toml')
| -rw-r--r-- | day14a/Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/day14a/Cargo.toml b/day14a/Cargo.toml new file mode 100644 index 0000000..8dbd6fe --- /dev/null +++ b/day14a/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "day14a" +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" |
