mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-09 17:18:41 -06:00
30 lines
1 KiB
TOML
30 lines
1 KiB
TOML
[package]
|
|
name = "kubi-server"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
kubi-shared = { path = "../kubi-shared" }
|
|
kubi-logging = { path = "../kubi-logging" }
|
|
log = "0.4"
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "aacf3b1df5", default-features = false, features = ["std", "proc", "thread_local"] }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
|
|
toml = "0.8"
|
|
glam = { version = "0.27", features = ["debug-glam-assert", "fast-math"] }
|
|
hashbrown = "0.14"
|
|
nohash-hasher = "0.2"
|
|
anyhow = "1.0"
|
|
rayon = "1.7"
|
|
flume = "0.11"
|
|
rand = "0.8"
|
|
uflow = "0.7"
|
|
postcard = { version = "1.0", features = ["alloc"] }
|
|
lz4_flex = { version = "0.11", default-features = false, features = ["std"] }
|
|
|
|
[features]
|
|
default = ["parallel"]
|
|
parallel = ["shipyard/parallel"]
|
|
safe_lz4 = ["lz4_flex/safe-encode", "lz4_flex/safe-decode"]
|
|
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd", "kubi-shared/nightly"]
|