porting over AOC from previous years to a monorepo.
This commit is contained in:
commit
84c4cf9991
194 changed files with 30104 additions and 0 deletions
23
2023/Cargo.toml
Normal file
23
2023/Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[workspace]
|
||||
members = [
|
||||
"template",
|
||||
"aoc_libs",
|
||||
"days/*",
|
||||
]
|
||||
default-members = [ "days/*", "aoc_libs" ]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.1.0"
|
||||
authors = ["Gabriel Venberg"]
|
||||
edition = "2021"
|
||||
description = "advent of code 2022 in rust"
|
||||
|
||||
[workspace.dependencies]
|
||||
aoc_libs = {path = "./aoc_libs"}
|
||||
regex = "1"
|
||||
once_cell = "1.16"
|
||||
thiserror = "1.0"
|
||||
nom = "7.1"
|
||||
collection_literals = "1.0.1"
|
||||
itertools = "0.12.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue