diff --git a/Cargo.lock b/Cargo.lock index 5b70bca7..393bd115 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -646,9 +646,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.21" +version = "0.3.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" dependencies = [ "bytes", "fnv", @@ -656,7 +656,7 @@ dependencies = [ "futures-sink", "futures-util", "http", - "indexmap 1.9.3", + "indexmap 2.0.2", "slab", "tokio", "tokio-util", @@ -1942,9 +1942,9 @@ dependencies = [ [[package]] name = "tonic" -version = "0.10.2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d560933a0de61cf715926b9cac824d4c883c2c43142f787595e48280c40a1d0e" +checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13" dependencies = [ "async-stream", "async-trait", @@ -1969,9 +1969,9 @@ dependencies = [ [[package]] name = "tonic-build" -version = "0.10.2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d021fc044c18582b9a2408cd0dd05b1596e3ecdb5c4df822bb0183545683889" +checksum = "be4ef6dd70a610078cb4e338a0f79d06bc759ff1b22d2120c2ff02ae264ba9c2" dependencies = [ "prettyplease", "proc-macro2", diff --git a/cosmos-sdk-proto/CHANGELOG.md b/cosmos-sdk-proto/CHANGELOG.md index d1d26ce2..35508fc3 100644 --- a/cosmos-sdk-proto/CHANGELOG.md +++ b/cosmos-sdk-proto/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased (0.21.0) +### Changed +- Update `tonic` to v0.11 + ## 0.20.0 (2023-10-03) ### Added - Expose `gov::v1` module ([#437]) diff --git a/cosmos-sdk-proto/Cargo.toml b/cosmos-sdk-proto/Cargo.toml index 1d1f690c..a35f70a6 100644 --- a/cosmos-sdk-proto/Cargo.toml +++ b/cosmos-sdk-proto/Cargo.toml @@ -21,7 +21,7 @@ prost-types = "0.12" tendermint-proto = "0.34" # Optional dependencies -tonic = { version = "0.10", optional = true, default-features = false, features = ["codegen", "prost"] } +tonic = { version = "0.11", optional = true, default-features = false, features = ["codegen", "prost"] } [features] default = ["grpc-transport"] diff --git a/proto-build/Cargo.toml b/proto-build/Cargo.toml index 4f97ead2..b622432f 100644 --- a/proto-build/Cargo.toml +++ b/proto-build/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] prost = "0.12" prost-build = "0.12" -tonic = "0.10" -tonic-build = "0.10" +tonic = "0.11" +tonic-build = "0.11" regex = "1" walkdir = "2"