This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues/pull-requests.
advent-of-code-2022/Cargo.toml

21 lines
426 B
TOML

[package]
name = "aocrust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"day*"
]
[dependencies]
day1 = { path = "./day1" }
day2 = { path = "./day2" }
day3 = { path = "./day3" }
day4 = { path = "./day4" }
day5 = { path = "./day5" }
day6 = { path = "./day6" }
day7 = { path = "./day7" }
day8 = { path = "./day8" }