advent-of-code-2021/Cargo.toml
zendesk-acicchetti 8202d2a935 Start of Day 02
2021-12-02 13:56:30 -05:00

18 lines
372 B
TOML

[package]
name = "executor"
version = "0.0.0"
authors = ["Anthony Cicchetti <anthony@anthonycicchetti.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.3"
day_01 = { path = "./day_01" }
day_02 = { path = "./day_02"}
[workspace]
members = [
'day_01',
'day_02',
]