30 lines
898 B
TOML
30 lines
898 B
TOML
[package]
|
|
name = "ruvector-cluster"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
description = "Distributed clustering and sharding for ruvector"
|
|
|
|
[dependencies]
|
|
ruvector-core = { version = "2.0.1", path = "../ruvector-core" }
|
|
tokio = { workspace = true, features = ["time"] }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
futures = { workspace = true }
|
|
rand = { workspace = true }
|
|
bincode = { workspace = true }
|
|
async-trait = "0.1"
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "test-util"] }
|