You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
491 B
TOML
19 lines
491 B
TOML
[package]
|
|
name = "advent_of_code_2024"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
# resolver = "2" # Important! wgpu/Bevy needs this! .. so not important for this project?
|
|
members = ["crates/utils", "crates/solver_base", "crates/day_1"]
|
|
|
|
[dependencies]
|
|
utils = { workspace = true }
|
|
solver_base = { workspace = true }
|
|
day_1 = { workspace = true }
|
|
|
|
|
|
[workspace.dependencies]
|
|
utils = { path = "crates/utils" }
|
|
solver_base = { path = "crates/solver_base" }
|
|
day_1 = { path = "crates/day_1" } |