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

14 lines
237 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 = [
"day1"
]
[dependencies]
day1 = { path = "./day1" }