kubi/kubi/Cargo.toml
2023-03-07 00:52:00 +01:00

30 lines
867 B
TOML

[package]
name = "kubi"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
kubi-shared = { path = "../kubi-shared" }
kubi-udp = { path = "../kubi-udp" }
kubi-logging = { path = "../kubi-logging" }
log = "*"
glium = "0.32"
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] }
image = { version = "0.24", default_features = false, features = ["png"] }
strum = { version = "0.24", features = ["derive"] }
hashbrown = "0.13"
rayon = "1.6"
shipyard = { git = "https://github.com/leudz/shipyard", rev = "eb189f66", features = ["thread_local"] }
nohash-hasher = "0.2.0"
anyhow = "1.0"
flume = "0.10"
gilrs = { version = "0.10", default_features = false, features = ["xinput"] }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3" }
[features]
default = []
nightly = ["glam/core-simd", "kubi-shared/nightly"]