mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-06 18:10:58 -05:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.0 to 1.28.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.28.0...tokio-1.28.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
895 B
TOML
33 lines
895 B
TOML
[package]
|
|
name = "api"
|
|
version = "1.1.3"
|
|
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.2", features = ["gzip", "tls"] }
|
|
prost = "0.11.9"
|
|
prost-types = "0.11.9"
|
|
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.28.1"
|
|
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.2", features = ["prost"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "~1.28", features = ["full"] }
|