git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "ruvector-router-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
description = "Core vector database and neural routing inference engine"
|
|
|
|
[lib]
|
|
crate-type = ["lib", "staticlib"]
|
|
|
|
[dependencies]
|
|
# Workspace dependencies
|
|
redb = { workspace = true }
|
|
memmap2 = { workspace = true }
|
|
rayon = { workspace = true }
|
|
crossbeam = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
rkyv = { workspace = true }
|
|
bincode = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
simsimd = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Additional dependencies
|
|
ndarray = "0.15"
|
|
rand = "0.8"
|
|
uuid = { version = "1.10", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
proptest = { workspace = true }
|
|
tempfile = "3.12"
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "vector_search"
|
|
harness = false
|