mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
45 lines
1.1 KiB
TOML
45 lines
1.1 KiB
TOML
[package]
|
|
name = "api"
|
|
version = "1.18.3"
|
|
authors = [
|
|
"Andrey Vasnetsov <andrey@vasnetsov.com>",
|
|
"Qdrant Team <info@qdrant.tech>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
tracing = ["dep:tracing", "segment/tracing"]
|
|
|
|
[dependencies]
|
|
ahash = { workspace = true }
|
|
tonic = { workspace = true }
|
|
tonic-prost = { workspace = true }
|
|
prost = { workspace = true }
|
|
prost-wkt-types = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
schemars = { workspace = true }
|
|
uuid = { workspace = true }
|
|
tokio = { workspace = true }
|
|
rand = { workspace = true }
|
|
chrono = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
validator = { workspace = true }
|
|
itertools = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
|
|
common = { path = "../common/common" }
|
|
segment = { path = "../segment", default-features = false }
|
|
sparse = { path = "../sparse" }
|
|
|
|
tracing = { workspace = true, optional = true }
|
|
|
|
[build-dependencies]
|
|
tonic-prost-build = { workspace = true }
|
|
common = { path = "../common/common" }
|