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.
17 lines
376 B
TOML
17 lines
376 B
TOML
[package]
|
|
name = "advent_of_code_2024"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
resolver = "2" # Important! wgpu/Bevy needs this!
|
|
members = ["crates/solver_base", "crates/part_1"]
|
|
|
|
[dependencies]
|
|
solver_base = { workspace = true }
|
|
part_1 = { workspace = true }
|
|
|
|
|
|
[workspace.dependencies]
|
|
solver_base = { path = "crates/solver_base" }
|
|
part_1 = { path = "crates/part_1" } |