Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
44
crates/ruvector-router-core/Cargo.toml
Normal file
44
crates/ruvector-router-core/Cargo.toml
Normal file
@@ -0,0 +1,44 @@
|
||||
[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
|
||||
Reference in New Issue
Block a user