mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-04 17:10:59 -05:00
* Qdrant Edge Python binding 🐍⛓️💥 * fixup! Qdrant Edge Python binding 🐍⛓️💥 Fix example + cleanup * review: move QueryEnum + mark search as deprecated --------- Co-authored-by: generall <andrey@vasnetsov.com>
28 lines
470 B
TOML
28 lines
470 B
TOML
[package]
|
|
name = "edge-py"
|
|
version = "0.1.0"
|
|
authors = ["Qdrant Team <info@qdrant.tech>"]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
|
|
|
|
[lib]
|
|
name = "qdrant_edge"
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
[dependencies]
|
|
edge = { path = ".." }
|
|
segment = { path = "../../segment", default-features = false }
|
|
shard = { path = "../../shard" }
|
|
|
|
uuid = { workspace = true }
|
|
|
|
[dependencies.derive_more]
|
|
version = "2.0"
|
|
features = ["into"]
|
|
|
|
[dependencies.pyo3]
|
|
version = "0.26"
|
|
features = ["uuid"]
|