kubi/kubi-server/Cargo.toml

27 lines
771 B
TOML
Raw Normal View History

2023-01-30 00:46:22 +00:00
[package]
name = "kubi-server"
version = "0.1.0"
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" }
log = "*"
2023-03-08 19:26:51 +00:00
shipyard = { git = "https://github.com/leudz/shipyard", rev = "eb189f66", features = ["thread_local"] }
2023-03-08 16:27:53 +00:00
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
2023-02-10 21:11:18 +00:00
toml = "0.7"
2023-03-06 23:52:00 +00:00
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math"] }
hashbrown = "0.13"
nohash-hasher = "0.2.0"
2023-02-14 03:27:27 +00:00
anyhow = "1.0"
2023-03-07 03:50:06 +00:00
rayon = "1.6"
flume = "0.10"
2023-03-08 16:27:53 +00:00
rand = "0.8"
uflow = "0.7"
postcard = { version = "1.0", features = ["alloc"] }
2023-02-11 23:37:24 +00:00
[features]
default = []
2023-03-08 16:27:53 +00:00
nightly = ["rand/nightly", "rand/simd_support", "serde/unstable", "glam/core-simd", "kubi-shared/nightly"]