1
1
Fork 0
mirror of https://github.com/griffi-gh/kubi.git synced 2025-01-15 16:38:21 -06:00
kubi/kubi/Cargo.toml

25 lines
725 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-07 19:29:29 -06:00
kubi-udp = { path = "../kubi-udp", optional = true }
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"] }
log = "0.4"
env_logger = "0.10"
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" }