Update dependencies.

This commit is contained in:
Orne Brocaar 2023-04-10 10:22:37 +01:00
parent 3f4c262267
commit 101b155d91
4 changed files with 321 additions and 270 deletions

565
Cargo.lock generated

File diff suppressed because it is too large Load Diff

6
api/rust/Cargo.toml vendored
View File

@ -20,12 +20,12 @@ prost-types = "0.11"
hex = "0.4" hex = "0.4"
rand = "0.8" rand = "0.8"
tonic = { version = "0.8", features = ["codegen", "prost"], default-features = false, optional = true } tonic = { version = "0.9", features = ["codegen", "prost"], default-features = false, optional = true }
tokio = { version = "1.25", features = ["macros"], optional = true } tokio = { version = "1.27", features = ["macros"], optional = true }
pbjson = { version = "0.5", optional = true } pbjson = { version = "0.5", optional = true }
pbjson-types = { version = "0.5", optional = true } pbjson-types = { version = "0.5", optional = true }
serde = { version = "1.0", optional = true } serde = { version = "1.0", optional = true }
[build-dependencies] [build-dependencies]
tonic-build = { version = "0.8", features = ["prost"], default-features = false } tonic-build = { version = "0.9", features = ["prost"], default-features = false }
pbjson-build = "0.5" pbjson-build = "0.5"

View File

@ -16,7 +16,7 @@ rand = "0.8"
aes-kw = "0.2" aes-kw = "0.2"
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false } reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
chrono = { version = "0.4", features = ["serde"] } chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1.25", features = ["macros" ] } tokio = { version = "1.27", features = ["macros" ] }
# Development and testing # Development and testing
[dev-dependencies] [dev-dependencies]

View File

@ -11,7 +11,7 @@ license = "MIT"
[dependencies] [dependencies]
# CLI interface # CLI interface
clap = { version = "4.1", features = ["derive"] } clap = { version = "4.2", features = ["derive"] }
# Configuration # Configuration
serde = { version = "1.0", features = ["derive", "rc"] } serde = { version = "1.0", features = ["derive", "rc"] }
@ -27,8 +27,8 @@ diesel = { version = "2.0", features = [ "chrono", "postgres", "r2d2", "uuid", "
diesel_migrations = { version = "2.0" } diesel_migrations = { version = "2.0" }
r2d2 = "0.8" r2d2 = "0.8"
bigdecimal = "0.3" bigdecimal = "0.3"
redis = { version = "0.22", features = ["r2d2", "cluster"] } redis = { version = "0.23", features = ["r2d2", "cluster"] }
pq-sys = { version = "0.4.7", features = ["pkg-config"] } pq-sys = { version = "0.4", features = ["pkg-config"] }
# Logging # Logging
tracing = "0.1" tracing = "0.1"
@ -57,10 +57,10 @@ tokio-reactor-trait = "1.1"
rdkafka = { version = "0.29", features = ["cmake-build"]} rdkafka = { version = "0.29", features = ["cmake-build"]}
# gRPC and Protobuf # gRPC and Protobuf
tonic = "0.8" tonic = "0.9"
tonic-web = "0.5" tonic-web = "0.9"
tonic-reflection = "0.6" tonic-reflection = "0.9"
tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] } tokio = { version = "1.27", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1" tokio-stream = "0.1"
prost-types = "0.11" prost-types = "0.11"
prost = "0.11" prost = "0.11"
@ -73,7 +73,7 @@ tower = "0.4"
futures = "0.3" futures = "0.3"
http = "0.2" http = "0.2"
http-body = "0.4" http-body = "0.4"
rust-embed = "6.4" rust-embed = "6.6"
mime_guess = "2.0" mime_guess = "2.0"
tower-http = { version = "0.4", features = ["trace", "auth"] } tower-http = { version = "0.4", features = ["trace", "auth"] }
@ -106,7 +106,7 @@ base64 = "0.21"
async-recursion = "1.0" async-recursion = "1.0"
regex = "1.7" regex = "1.7"
petgraph = "0.6" petgraph = "0.6"
prometheus-client = "0.19" prometheus-client = "0.20"
pin-project = "1.0" pin-project = "1.0"
# Development and testing # Development and testing