Files
qdrant/lib/common/dataset/Cargo.toml
xzfc 34f2c82901 Cache sparse benchmark setup (#9141)
* dataset: add features to fs-err

Reason: fix `cargo check --all-targets -p dataset`. Feature unification
pulls `fs-err/debug` + `fs-err/tokio` without `fs-err/debug_tokio`.

* dataset: run `cargo metadata` to get target dir

Reason: avoid re-downloading in separate worktrees. The old
`cargo locate-project` ignores custom target dirs.

* sparse/benches/search: cache vectors/indices
2026-05-23 16:45:42 +00:00

26 lines
553 B
TOML

[package]
name = "dataset"
version = "0.0.0"
authors = [
"Andrey Vasnetsov <andrey@qdrant.com>",
"Qdrant Team <info@qdrant.tech>",
]
license = "Apache-2.0"
edition = "2024"
publish = false
[lints]
workspace = true
[dependencies]
anyhow = { workspace = true }
flate2 = { version = "1.1.9" }
fs-err = { workspace = true }
indicatif = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
[dev-dependencies]
fs-err = { workspace = true, features = ["debug", "debug_tokio", "tokio"] }