mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-25 16:28:42 -06:00
30 lines
867 B
TOML
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"]
|