Files
qdrant/lib/sparse/Cargo.toml
Luis CossíoandClaude Fable 5 2279c4a79b [UIO] UniversalReadFs::open_async (#10352)
* `UniversalReadFs::open_async`

* `schedule_open` polls once

Scheduled opens must start eagerly: sync backends complete their
`open_async` on the first poll, preserving the prefetch contract
(handles outlive later file deletions/replacements). Moved down from
the integration branch so this PR stays green.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-08-31 12:35:50 -04:00

55 lines
1.3 KiB
TOML

[package]
name = "sparse"
version = "0.1.0"
authors = [
"Andrey Vasnetsov <andrey@vasnetsov.com>",
"Qdrant Team <info@qdrant.tech>",
]
license = "Apache-2.0"
edition = "2024"
[lints]
workspace = true
[features]
testing = ["common/testing"]
[dependencies]
bitpacking = { workspace = true }
blink-alloc = { workspace = true }
blobstore = { path = "../blobstore" }
bincode = { workspace = true }
common = { path = "../common/common" }
fs-err = { workspace = true }
half = { workspace = true }
memmap2 = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
ordered-float = { workspace = true }
rand = { workspace = true }
validator = { workspace = true }
itertools = { workspace = true }
parking_lot = { workspace = true }
log = { workspace = true }
zerocopy = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
dataset = { path = "../common/dataset" }
duplicate = { workspace = true }
fs-err = { workspace = true, features = ["debug"] }
indicatif = { workspace = true }
sha2 = { workspace = true }
sparse = { path = ".", features = ["testing"] }
tempfile = { workspace = true }
tokio = { workspace = true }
zerocopy = { workspace = true }
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
pprof = { workspace = true }
[[bench]]
name = "search"
harness = false