mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-03 16:40:54 -05:00
* simplify edge config * Accept default vector config or explicit vector config map when creating `EdgeConfig` * fixup! Accept default vector config or explicit vector config map when creating `EdgeConfig` Update examples * upd tests * bump edge version to v0.5.0 --------- Co-authored-by: Roman Titov <ffuugoo@users.noreply.github.com>
44 lines
856 B
TOML
44 lines
856 B
TOML
[package]
|
|
name = "qdrant-edge-py"
|
|
version = "0.5.0"
|
|
authors = ["Qdrant Team <info@qdrant.tech>"]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "qdrant_edge"
|
|
crate-type = ["cdylib"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
|
|
[features]
|
|
default = []
|
|
abi3 = ["pyo3/abi3-py310"]
|
|
|
|
|
|
[dependencies]
|
|
edge = { path = ".." }
|
|
edge-py-codegen = { path = "./codegen" }
|
|
segment = { path = "../../segment", default-features = false }
|
|
shard = { path = "../../shard" }
|
|
sparse = { path = "../../sparse" }
|
|
|
|
ahash = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
fnv = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[dependencies.derive_more]
|
|
version = "2.1"
|
|
features = ["into"]
|
|
|
|
[dependencies.pyo3]
|
|
version = "0.27.2"
|
|
features = ["uuid"]
|