You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
249 B
TOML
20 lines
249 B
TOML
3 years ago
|
[package]
|
||
|
name = "aoc-2021"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
itertools = "0.10.1"
|
||
|
|
||
|
[lib]
|
||
|
name = "util"
|
||
|
path = "util/main.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "day-01-part-1"
|
||
|
path = "01/part1.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "day-01-part-2"
|
||
|
path = "01/part2.rs"
|