diff options
author | cos <cos> | 2021-12-06 06:20:53 +0100 |
---|---|---|
committer | cos <cos> | 2021-12-06 16:00:01 +0100 |
commit | 83859ecb86b5ffb411d0b0a98c021820cdc83630 (patch) | |
tree | 2152149476d334dee2820734ca9ef7aad16606f6 /2021/rust/day05/Cargo.toml | |
parent | 86f696a318001f1e6f1d063ba42dee1f5da13477 (diff) | |
download | adventofcode-83859ecb86b5ffb411d0b0a98c021820cdc83630.zip |
Add day05, 2021
Diffstat (limited to '2021/rust/day05/Cargo.toml')
-rw-r--r-- | 2021/rust/day05/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2021/rust/day05/Cargo.toml b/2021/rust/day05/Cargo.toml new file mode 100644 index 0000000..6a8f51f --- /dev/null +++ b/2021/rust/day05/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "day05" +version = "0.1.0" +authors = ["cos <cos>"] +edition = "2021" + +[dependencies] +aoc = { path = "../../../common/rust/aoc" } +anyhow = "1.0" +regex = "1.5" |