From 640bd26ec347cbb996d5476fc63fcf71aa2b273c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Apr 2024 15:16:11 +0000 Subject: [PATCH] chore(deps): bump tonic from 0.8.3 to 0.11.0 Bumps [tonic](https://github.com/hyperium/tonic) from 0.8.3 to 0.11.0. - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.8.3...v0.11.0) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++++------ moksha-mint/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0be032e4..1d797cc6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1032,7 +1032,7 @@ dependencies = [ "hyper-rustls 0.24.2", "prost 0.12.3", "rustls 0.21.10", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "tokio", "tokio-stream", "tonic 0.10.2", @@ -2067,7 +2067,7 @@ dependencies = [ "testcontainers-modules", "thiserror", "tokio", - "tonic 0.8.3", + "tonic 0.11.0", "tower", "tower-http", "tracing", @@ -2849,7 +2849,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.22.3", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "rustls-pki-types", "serde", "serde_json", @@ -3051,6 +3051,16 @@ dependencies = [ "base64 0.21.7", ] +[[package]] +name = "rustls-pemfile" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d" +dependencies = [ + "base64 0.22.0", + "rustls-pki-types", +] + [[package]] name = "rustls-pki-types" version = "1.4.1" @@ -3463,7 +3473,7 @@ dependencies = [ "paste", "percent-encoding", "rustls 0.21.10", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "serde", "serde_json", "sha2", @@ -3958,7 +3968,7 @@ dependencies = [ "pin-project", "prost 0.11.9", "prost-derive 0.11.9", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "tokio", "tokio-rustls 0.23.4", "tokio-stream", @@ -3990,7 +4000,7 @@ dependencies = [ "pin-project", "prost 0.12.3", "rustls 0.21.10", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "tokio", "tokio-rustls 0.24.1", "tokio-stream", @@ -4019,7 +4029,10 @@ dependencies = [ "percent-encoding", "pin-project", "prost 0.12.3", + "rustls-pemfile 2.1.2", + "rustls-pki-types", "tokio", + "tokio-rustls 0.25.0", "tokio-stream", "tower", "tower-layer", diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index 0a8e3989..47ac228e 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -42,7 +42,7 @@ utoipa-swagger-ui = { version = "6.0.0", features = ["axum"] } sqlx = { version = "0.7.4", default-features = false, features = ["postgres", "runtime-tokio", "tls-rustls", "migrate", "macros", "uuid"] } chrono = "0.4.31" cln-grpc = "0.1.7" -tonic = { version = "0.8", features = ["transport", "tls"] } +tonic = { version = "0.11", features = ["transport", "tls"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }