mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-30 22:51:00 -05:00
* feat: pin per-shard search pool to a core * fix: plumb search_pool_core through bindings * feat: expose search_pool_core in python bindings * fix: validate search pool core before pinning * chore: trim comments
38 lines
931 B
TOML
38 lines
931 B
TOML
[package]
|
|
name = "edge"
|
|
version = "0.1.0"
|
|
authors = ["Qdrant Team <info@qdrant.tech>"]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
staging = ["shard/staging"]
|
|
|
|
[dependencies]
|
|
bm25 = { path = "../bm25" }
|
|
common = { path = "../common/common" }
|
|
segment = { path = "../segment", default-features = false }
|
|
shard = { path = "../shard", default-features = false }
|
|
sparse = { path = "../sparse" }
|
|
wal = { path = "../wal" }
|
|
|
|
ahash = { workspace = true }
|
|
core_affinity = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
rand = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
fs-err = { workspace = true, features = ["debug"] }
|
|
tempfile = { workspace = true }
|