mirror of
https://github.com/qdrant/qdrant.git
synced 2026-09-25 07:27:41 -05:00
Minor version bump of the edge packages from `0.7.2` to `0.8.0`. - `lib/edge/python/Cargo.toml`: `qdrant-edge-py` 0.7.2 -> 0.8.0 - `lib/edge/publish/amalgamate.py`: `VERSION` constant bumped (`qdrant-edge` on crates.io) - `lib/edge/ffi/Cargo.toml`: `qdrant-edge-ffi` bumped, kept in sync with the other two as its header comment requires - `lib/edge/publish/ast-grep-rules.yaml`: inline package version comment updated (it was stale at 0.7.1) - `Cargo.lock`: regenerated version entries Follows the same pattern as #9252. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
44 lines
882 B
TOML
44 lines
882 B
TOML
[package]
|
|
name = "qdrant-edge-py"
|
|
version = "0.8.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", default-features = false }
|
|
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.29.0"
|
|
features = ["uuid"]
|