kubi/kubi/Cargo.toml

29 lines
785 B
TOML
Raw Normal View History

2023-01-29 18:46:22 -06:00
[package]
name = "kubi"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-01-29 19:37:11 -06:00
kubi-shared = { path = "../kubi-shared" }
2023-02-11 21:04:48 -06:00
kubi-udp = { path = "../kubi-udp" }
2023-02-10 13:44:34 -06:00
kubi-logging = { path = "../kubi-logging" }
log = "*"
2023-01-29 18:46:22 -06:00
glium = "0.32"
glam = { version = "0.22", features = ["debug-glam-assert", "fast-math"] }
2023-01-29 18:46:22 -06:00
image = { version = "0.24", default_features = false, features = ["png"] }
strum = { version = "0.24", features = ["derive"] }
hashbrown = "0.13"
rayon = "1.6"
shipyard = { version = "0.6", features = ["thread_local"] }
nohash-hasher = "0.2.0"
anyhow = "1.0"
flume = "0.10"
2023-01-29 21:20:13 -06:00
gilrs = { version = "0.10", default_features = false, features = ["xinput"] }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3" }
2023-02-11 17:37:24 -06:00
[features]
default = []
unstable = ["glam/core-simd"]