From eea2f3cf0d2c803d42bb0b418feead036721f36f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 14:16:55 +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 45b35085..09777a10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -939,7 +939,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", @@ -1905,7 +1905,7 @@ dependencies = [ "testcontainers-modules", "thiserror", "tokio", - "tonic 0.8.3", + "tonic 0.11.0", "tower", "tower-http", "tracing", @@ -2652,7 +2652,7 @@ dependencies = [ "percent-encoding", "pin-project-lite", "rustls 0.22.2", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "rustls-pki-types", "serde", "serde_json", @@ -2835,6 +2835,16 @@ dependencies = [ "base64 0.21.7", ] +[[package]] +name = "rustls-pemfile" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f48172685e6ff52a556baa527774f61fcaa884f59daf3375c62a3f1cd2549dab" +dependencies = [ + "base64 0.21.7", + "rustls-pki-types", +] + [[package]] name = "rustls-pki-types" version = "1.4.0" @@ -3234,7 +3244,7 @@ dependencies = [ "paste", "percent-encoding", "rustls 0.21.10", - "rustls-pemfile", + "rustls-pemfile 1.0.4", "serde", "serde_json", "sha2", @@ -3729,7 +3739,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", @@ -3761,7 +3771,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", @@ -3790,7 +3800,10 @@ dependencies = [ "percent-encoding", "pin-project", "prost 0.12.3", + "rustls-pemfile 2.1.1", + "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 4b0e16df..0ca778f4 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"] }