kubi/kubi-server/Cargo.toml

30 lines
1,001 B
TOML
Raw Normal View History

2023-01-29 18:46:22 -06:00
[package]
name = "kubi-server"
2023-05-17 05:30:14 -05:00
version = "0.0.0"
2023-01-29 18:46:22 -06:00
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" }
2023-05-20 19:16:12 -05:00
log = "0.4"
2023-07-08 20:03:45 -05:00
shipyard = { git = "https://github.com/leudz/shipyard", rev = "0934b426eb9a8", default-features = false, features = ["std", "proc", "thread_local"] }
2023-03-08 10:27:53 -06:00
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
2023-11-19 12:36:17 -06:00
toml = "0.8"
2023-07-08 20:03:45 -05:00
glam = { version = "0.24", features = ["debug-glam-assert", "fast-math"] }
hashbrown = "0.14"
nohash-hasher = "0.2"
2023-02-13 21:27:27 -06:00
anyhow = "1.0"
2023-07-08 20:03:45 -05:00
rayon = "1.7"
2023-11-19 12:36:17 -06:00
flume = "0.11"
2023-03-08 10:27:53 -06:00
rand = "0.8"
uflow = "0.7"
postcard = { version = "1.0", features = ["alloc"] }
2023-07-08 20:03:45 -05:00
lz4_flex = { version = "0.11", default-features = false, features = ["std"] }
2023-02-11 17:37:24 -06:00
[features]
default = ["parallel"]
parallel = ["shipyard/parallel"]
safe_lz4 = ["lz4_flex/safe-encode", "lz4_flex/safe-decode"]
2023-05-16 06:42:55 -05:00
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd", "kubi-shared/nightly"]