19 lines
636 B
TOML
19 lines
636 B
TOML
[package]
|
|
name = "khors-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
egui-vulkano = { path = "../vendor/egui-vulkano", version = "0.1.0" }
|
|
|
|
flax = { version = "0.6.2", features = ["derive", "serde", "tokio", "tracing"] }
|
|
flume = "0.11.0"
|
|
anyhow = "1.0.80"
|
|
vulkano = { git = "https://github.com/vulkano-rs/vulkano.git", branch = "master" }
|
|
vulkano-util = { git = "https://github.com/vulkano-rs/vulkano.git", branch = "master" }
|
|
winit = { version = "0.29.15",features = ["rwh_05"] }
|
|
parking_lot = "0.12.1"
|
|
downcast-rs = "1.2.0"
|