2023: day01: part 1

This commit is contained in:
Antoine Martin 2023-12-02 14:24:43 +01:00
parent 516fed49be
commit 0df2dd8dd8
8 changed files with 1099 additions and 1 deletions

21
aoc2023/Cargo.toml Normal file
View file

@ -0,0 +1,21 @@
[package]
name = "aoc2023"
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"
[dev-dependencies]
criterion = { version = "0.4", default-features = false, features = [ "rayon" ] }
[lib]
path = "src/lib.rs"
[[bin]]
name = "aoc2023"
path = "src/main.rs"