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-10 13:44:34 -06:00
|
|
|
kubi-logging = { path = "../kubi-logging" }
|
|
|
|
log = "*"
|
2023-03-08 13:26:51 -06:00
|
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "eb189f66", features = ["thread_local"] }
|
2023-03-08 10:27:53 -06:00
|
|
|
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
|
2023-02-10 15:11:18 -06:00
|
|
|
toml = "0.7"
|
2023-03-06 17:52:00 -06:00
|
|
|
glam = { version = "0.23", 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-03-06 21:50:06 -06:00
|
|
|
rayon = "1.6"
|
|
|
|
flume = "0.10"
|
2023-03-08 10:27:53 -06:00
|
|
|
rand = "0.8"
|
|
|
|
uflow = "0.7"
|
|
|
|
postcard = { version = "1.0", features = ["alloc"] }
|
2023-03-08 21:29:21 -06:00
|
|
|
lz4_flex = { version = "0.10", default-features = false, features = ["checked-decode", "std"] }
|
2023-02-11 17:37:24 -06:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-03-08 10:27:53 -06:00
|
|
|
nightly = ["rand/nightly", "rand/simd_support", "serde/unstable", "glam/core-simd", "kubi-shared/nightly"]
|