diff options
author | cos <cos> | 2020-12-06 09:05:40 +0100 |
---|---|---|
committer | cos <cos> | 2020-12-06 10:10:04 +0100 |
commit | a0b89c75d8429cdfbff99c02e9fc8d332641e189 (patch) | |
tree | 6a766ec7d24f6b8fe347a67e1d742917eca2c00c /2020/rust/day06/Cargo.toml | |
parent | 59290646080f5f1af417ba276355bd4fb7c49c20 (diff) | |
download | adventofcode-a0b89c75d8429cdfbff99c02e9fc8d332641e189.zip |
Add day06, 2020
Diffstat (limited to '2020/rust/day06/Cargo.toml')
-rw-r--r-- | 2020/rust/day06/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2020/rust/day06/Cargo.toml b/2020/rust/day06/Cargo.toml new file mode 100644 index 0000000..0a1e5f4 --- /dev/null +++ b/2020/rust/day06/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "day06" +version = "0.1.0" +authors = ["cos <cos>"] +edition = "2018" + +[dependencies] +aoc = { path = "../aoc" } +anyhow = "1.0" +thiserror = "1.0" |