Group all days under one common workspace

Should make it easier to share code across days in the future.
This commit is contained in:
Tyler Hallada 2021-12-01 00:49:56 -05:00
parent 54b6ccfc26
commit 200daf7336
7 changed files with 19 additions and 0 deletions

View File

3
Cargo.toml Normal file
View File

@ -0,0 +1,3 @@
[workspace]
members = ["crates/*"]
default-members = ["crates/day*"]

16
crates/day01/Cargo.lock generated Normal file
View File

@ -0,0 +1,16 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "anyhow"
version = "1.0.51"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b26702f315f53b6071259e15dd9d64528213b44d61de1ec926eca7715d62203"
[[package]]
name = "day01"
version = "0.1.0"
dependencies = [
"anyhow",
]