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

16 lines
273 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-02 13:07:53 +02:00
"day1",
"day2"
2022-12-02 01:29:16 +02:00
]
[dependencies]
2022-12-02 13:07:53 +02:00
day1 = { path = "./day1" }
day2 = { path = "./day2" }