2022: day 01 part 1

This commit is contained in:
Antoine Martin 2022-12-05 22:57:19 +01:00
parent a5fd485c10
commit f3f3b40d47
12 changed files with 2415 additions and 6 deletions

18
aoc2022/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "aoc2022"
version = "0.1.0"
authors = ["Antoine Martin <antoine@alarsyo.net>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aoc = { path = "../aoc" }
anyhow = "1.0"
[lib]
path = "src/lib.rs"
[[bin]]
name = "aoc2022"
path = "src/main.rs"