2023-11-20 03:32:41 +01:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"template",
|
2023-11-20 21:40:03 +01:00
|
|
|
"aoc_libs",
|
2023-11-20 03:32:41 +01:00
|
|
|
"days/*",
|
|
|
|
]
|
2023-11-20 21:40:03 +01:00
|
|
|
default-members = [ "days/*", "aoc_libs" ]
|
2023-11-20 03:32:41 +01:00
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[workspace.package]
|
2022-12-01 05:56:59 +01:00
|
|
|
version = "0.1.0"
|
2023-11-20 03:32:41 +01:00
|
|
|
authors = ["Gabriel Venberg"]
|
2022-12-01 05:56:59 +01:00
|
|
|
edition = "2021"
|
2023-11-20 03:32:41 +01:00
|
|
|
description = "advent of code 2022 in rust"
|
2022-12-01 05:56:59 +01:00
|
|
|
|
2023-11-20 03:32:41 +01:00
|
|
|
[workspace.dependencies]
|
2023-11-20 21:40:03 +01:00
|
|
|
aoc_libs = {path = "./aoc_libs"}
|
2023-11-20 03:32:41 +01:00
|
|
|
regex = "1"
|
2023-11-06 03:20:34 +01:00
|
|
|
once_cell = "1.16"
|
|
|
|
thiserror = "1.0"
|
2023-11-20 03:32:41 +01:00
|
|
|
nom = "7.1"
|