2020: day01: part 1
This commit is contained in:
parent
fa32903fdc
commit
b44c6bacbc
8 changed files with 318 additions and 1 deletions
28
aoc2020/Cargo.toml
Normal file
28
aoc2020/Cargo.toml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
[package]
|
||||
name = "aoc2020"
|
||||
version = "0.1.0"
|
||||
authors = ["Antoine Martin <antoine97.martin@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
criterion = "0.3"
|
||||
|
||||
[dependencies]
|
||||
|
||||
aoc = { path = "../aoc" }
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
bench = false
|
||||
|
||||
[[bin]]
|
||||
name = "aoc2020"
|
||||
path = "src/main.rs"
|
||||
bench = false
|
||||
|
||||
[[bench]]
|
||||
name = "bench"
|
||||
harness = false
|
||||
Loading…
Add table
Add a link
Reference in a new issue