advent_of_code_2022/Cargo.toml
Gabe Venberg 242989bb95 switched to workspaces.
This should let me make a cross-day library.
2023-11-19 20:32:41 -06:00

20 lines
313 B
TOML

[workspace]
members = [
"template",
"days/*",
]
default-members = [ "days/*" ]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["Gabriel Venberg"]
edition = "2021"
description = "advent of code 2022 in rust"
[workspace.dependencies]
regex = "1"
once_cell = "1.16"
thiserror = "1.0"
nom = "7.1"