mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-05 01:20:53 -05:00
* 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
26 lines
553 B
TOML
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"] }
|