mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-09 17:18:41 -06:00
29 lines
951 B
TOML
29 lines
951 B
TOML
[package]
|
|
name = "kubi-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
kubi-shared = { path = "../kubi-shared" }
|
|
kubi-logging = { path = "../kubi-logging" }
|
|
log = "*"
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "a4f4d27edcf", features = ["thread_local"] }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
|
|
toml = "0.7"
|
|
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] }
|
|
hashbrown = "0.13"
|
|
nohash-hasher = "0.2.0"
|
|
anyhow = "1.0"
|
|
rayon = "1.6"
|
|
flume = "0.10"
|
|
rand = "0.8"
|
|
uflow = "0.7"
|
|
postcard = { version = "1.0", features = ["alloc"] }
|
|
lz4_flex = { version = "0.10", default-features = false, features = ["std", "checked-decode"] }
|
|
|
|
[features]
|
|
default = []
|
|
safe_lz4 = ["lz4_flex/safe-encode", "lz4_flex/safe-decode"]
|
|
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "serde/unstable", "glam/core-simd", "kubi-shared/nightly"]
|