mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-06 18:10:58 -05:00
33 lines
895 B
TOML
33 lines
895 B
TOML
[package]
|
|
name = "api"
|
|
version = "1.1.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
env_logger = "0.10.0"
|
|
tonic = { version = "0.9.1", features = ["gzip", "tls"] }
|
|
prost = "0.11.8"
|
|
prost-types = "0.11.8"
|
|
serde = { version = "~1.0", features = ["derive"] }
|
|
serde_json = "~1.0"
|
|
schemars = { version = "0.8.12", features = ["uuid1", "preserve_order", "chrono"] }
|
|
uuid = { version = "1.3", features = ["v4", "serde"] }
|
|
tower = "0.4.13"
|
|
tokio = "1.27.0"
|
|
rand = "0.8.5"
|
|
chrono = { version = "~0.4", features = ["serde"] }
|
|
thiserror = "1.0"
|
|
parking_lot = "0.12"
|
|
validator = { version = "0.16", features = ["derive"] }
|
|
|
|
segment = {path = "../segment"}
|
|
|
|
[build-dependencies]
|
|
tonic-build = { version = "0.9.1", features = ["prost"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "~1.27", features = ["full"] }
|