kubi/kubi-server/Cargo.toml

30 lines
1 KiB
TOML
Raw Normal View History

2023-01-30 00:46:22 +00:00
[package]
name = "kubi-server"
2023-05-17 10:30:14 +00:00
version = "0.0.0"
2023-01-30 00:46:22 +00:00
edition = "2021"
2023-02-13 02:01:29 +00:00
publish = false
2023-01-30 00:46:22 +00:00
[dependencies]
2023-01-30 01:37:11 +00:00
kubi-shared = { path = "../kubi-shared" }
2023-02-10 19:44:34 +00:00
kubi-logging = { path = "../kubi-logging" }
2023-05-21 00:16:12 +00:00
log = "0.4"
2023-11-21 15:45:41 +00:00
shipyard = { git = "https://github.com/leudz/shipyard", rev = "8ef90ea6c4d1eb6c9cb0988f0d2f873f75044d49", default-features = false, features = ["std", "proc", "thread_local"] }
2023-03-08 16:27:53 +00:00
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
2023-11-19 18:36:17 +00:00
toml = "0.8"
2023-07-09 01:03:45 +00:00
glam = { version = "0.24", features = ["debug-glam-assert", "fast-math"] }
hashbrown = "0.14"
nohash-hasher = "0.2"
2023-02-14 03:27:27 +00:00
anyhow = "1.0"
2023-07-09 01:03:45 +00:00
rayon = "1.7"
2023-11-19 18:36:17 +00:00
flume = "0.11"
2023-03-08 16:27:53 +00:00
rand = "0.8"
uflow = "0.7"
postcard = { version = "1.0", features = ["alloc"] }
2023-07-09 01:03:45 +00:00
lz4_flex = { version = "0.11", default-features = false, features = ["std"] }
2023-02-11 23:37:24 +00:00
[features]
default = ["parallel"]
parallel = ["shipyard/parallel"]
safe_lz4 = ["lz4_flex/safe-encode", "lz4_flex/safe-decode"]
2023-05-16 11:42:55 +00:00
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd", "kubi-shared/nightly"]