2023-01-29 18:46:22 -06:00
|
|
|
[package]
|
|
|
|
name = "kubi-server"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-02-12 20:01:29 -06:00
|
|
|
publish = false
|
2023-01-29 18:46:22 -06:00
|
|
|
|
|
|
|
[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" }
|
2023-02-10 13:44:34 -06:00
|
|
|
kubi-logging = { path = "../kubi-logging" }
|
|
|
|
log = "*"
|
2023-02-14 12:54:52 -06:00
|
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "e30dece" }
|
2023-02-10 15:11:18 -06:00
|
|
|
serde = "1.0"
|
|
|
|
toml = "0.7"
|
2023-02-11 17:37:24 -06:00
|
|
|
glam = { version = "0.22", features = ["debug-glam-assert", "fast-math"] }
|
2023-02-11 18:32:59 -06:00
|
|
|
hashbrown = "0.13"
|
|
|
|
nohash-hasher = "0.2.0"
|
2023-02-13 21:27:27 -06:00
|
|
|
anyhow = "1.0"
|
2023-02-11 17:37:24 -06:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
unstable = ["glam/core-simd"]
|