khors/Cargo.toml

29 lines
587 B
TOML
Raw Permalink Normal View History

2024-03-26 22:44:34 -06:00
[package]
name = "khors"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-04-01 20:51:39 -06:00
[workspace]
members = [
"khors-core",
"vendor/egui-vulkano",
"vendor/egui-snarl",
2024-04-02 19:12:59 -06:00
"modules/khors-app",
2024-04-01 20:51:39 -06:00
"modules/khors-graphics",
"modules/khors-window",
"modules/khors-config",
"modules/khors-steel",
"khors-test",
]
default-members = [ "khors-test" ]
2024-04-02 19:12:59 -06:00
[workspace.dependencies]
flax = { version = "0.6.2", features = ["derive", "serde", "tokio", "tracing"] }
2024-04-01 20:51:39 -06:00
[[bin]]
name = "khors-test"
path = "./khors-test"