This commit is contained in:
Stefan Schwarz 2021-12-04 01:34:01 +01:00
commit 1e95ecc760
8 changed files with 3206 additions and 0 deletions

20
Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "aoc2021"
version = "0.1.0"
authors = ["Stefan Schwarz <stefan@f2o.io>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
itertools = "0.10"
thiserror = "1.0"
[[bin]]
name = "1"
path = "src/01.rs"
[[bin]]
name = "2"
path = "src/02.rs"