diff options
author | cos <cos> | 2020-12-07 08:26:05 +0100 |
---|---|---|
committer | cos <cos> | 2020-12-08 00:17:35 +0100 |
commit | 3cc461bc73e3fde58df6952f4db9c67a89b65858 (patch) | |
tree | 719e5f1c588ff25b576680a4436eea59a0ff6429 /2020/rust/day07/Cargo.toml | |
parent | a0b89c75d8429cdfbff99c02e9fc8d332641e189 (diff) | |
download | adventofcode-3cc461bc73e3fde58df6952f4db9c67a89b65858.zip |
Add day07, 2020
Diffstat (limited to '2020/rust/day07/Cargo.toml')
-rw-r--r-- | 2020/rust/day07/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2020/rust/day07/Cargo.toml b/2020/rust/day07/Cargo.toml new file mode 100644 index 0000000..c30cde6 --- /dev/null +++ b/2020/rust/day07/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "day07" +version = "0.1.0" +authors = ["cos <cos>"] +edition = "2018" + +[dependencies] +aoc = { path = "../aoc" } +anyhow = "1.0" +daggy = "0.7.0" +#petgraph = "0.4.13" +petgraph = "0.5.1" +regex = "1.4" |