diff options
author | cos <cos> | 2021-12-02 10:37:10 +0100 |
---|---|---|
committer | cos <cos> | 2021-12-02 10:41:51 +0100 |
commit | 8d207663b8c561e27e1dd50a7523ed6b62c8e1cd (patch) | |
tree | de17623979a2a1e6a6e8d5c5d0bedd24aac26cf8 /2021/rust/day02/Cargo.toml | |
parent | f4400c6410f4b932eb738760996e0dcc271157f1 (diff) | |
download | adventofcode-8d207663b8c561e27e1dd50a7523ed6b62c8e1cd.zip |
Add day02, 2021
Diffstat (limited to '2021/rust/day02/Cargo.toml')
-rw-r--r-- | 2021/rust/day02/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2021/rust/day02/Cargo.toml b/2021/rust/day02/Cargo.toml new file mode 100644 index 0000000..232d0dc --- /dev/null +++ b/2021/rust/day02/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "day02" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +aoc = { path = "../../../common/rust/aoc" } +anyhow = "1.0" |