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

19 lines
372 B
TOML
Raw Normal View History

2022-12-02 01:29:16 +02:00
[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 = [
2022-12-05 14:08:57 +02:00
"day*"
2022-12-02 01:29:16 +02:00
]
[dependencies]
2022-12-02 13:07:53 +02:00
day1 = { path = "./day1" }
2022-12-03 13:59:29 +02:00
day2 = { path = "./day2" }
2022-12-04 12:23:54 +02:00
day3 = { path = "./day3" }
2022-12-05 14:08:57 +02:00
day4 = { path = "./day4" }
2022-12-06 11:14:30 +02:00
day5 = { path = "./day5" }
day6 = { path = "./day6" }