2021: setup boilerplate

This commit is contained in:
Antoine Martin 2021-11-25 16:49:52 +01:00
parent ebc57d58b6
commit d5c85d4a17
9 changed files with 98 additions and 1 deletions

18
aoc2021/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "aoc2021"
version = "0.1.0"
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
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 = "aoc2021"
path = "src/main.rs"