diff options
author | cos <cos> | 2020-12-04 08:11:32 +0100 |
---|---|---|
committer | cos <cos> | 2020-12-04 10:25:55 +0100 |
commit | 1630c01b93513a650c8cb550bcad2da9a6d9d4fb (patch) | |
tree | 5d7f7fb034b9b5f09bf028690a9bcf506932a282 /2020/rust/day04/Cargo.toml | |
parent | 31c4288918624c5af2adbe642e578d2cb70a0fe0 (diff) | |
download | adventofcode-1630c01b93513a650c8cb550bcad2da9a6d9d4fb.zip |
Add day04, 2020
Diffstat (limited to '2020/rust/day04/Cargo.toml')
-rw-r--r-- | 2020/rust/day04/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/rust/day04/Cargo.toml b/2020/rust/day04/Cargo.toml new file mode 100644 index 0000000..4742cd9 --- /dev/null +++ b/2020/rust/day04/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "day04" +version = "0.1.0" +authors = ["cos <cos>"] +edition = "2018" + +[dependencies] +aoc = { path = "../aoc" } +anyhow = "1.0" +regex = "1.4" |