Files
qdrant/lib/sparse/Cargo.toml
xzfc d2ef556237 Make sparse vectors generic (#4364)
* Make sparse vector generic

* Generic search_context tests
2024-06-10 15:04:32 +00:00

46 lines
1017 B
TOML

[package]
name = "sparse"
version = "0.1.0"
authors = [
"Andrey Vasnetsov <andrey@vasnetsov.com>",
"Qdrant Team <info@qdrant.tech>",
]
license = "Apache-2.0"
edition = "2021"
[features]
testing = []
[dependencies]
bitpacking = "0.9.2"
common = { path = "../common/common" }
half = { workspace = true }
io = { path = "../common/io" }
memory = { path = "../common/memory" }
num-traits = { workspace = true }
memmap2 = "0.9.4"
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tempfile = "3.10.1"
ordered-float = "4.2"
rand = "0.8.5"
validator = { workspace = true }
itertools = { workspace = true }
log = "0.4"
parking_lot = "0.12.3"
[dev-dependencies]
criterion = "0.5"
dataset = { path = "../common/dataset" }
generic-tests = { workspace = true }
indicatif = { workspace = true }
sparse = { path = ".", features = ["testing"] }
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
pprof = { workspace = true }
[[bench]]
name = "search"
harness = false