Skip to content

Commit 1cf4103

Browse files
authored
bump tonic, tonic-build to 0.13.0, set msrv to 1.75 (#520)
1 parent d111430 commit 1cf4103

37 files changed

+2717
-3201
lines changed

.github/workflows/cosmos-sdk-proto.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
rust:
26-
- 1.72.0 # MSRV
26+
- 1.75.0 # MSRV
2727
target:
2828
- x86_64-unknown-linux-gnu
2929
- wasm32-unknown-unknown
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.72.0 # MSRV
45+
- 1.75.0 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v1

.github/workflows/cosmrs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
rust:
28-
- 1.72.0 # MSRV
28+
- 1.75.0 # MSRV
2929
target:
3030
- x86_64-unknown-linux-gnu
3131
- wasm32-unknown-unknown
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.72.0 # MSRV
45+
- 1.75.0 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v1

.github/workflows/workspace.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v2
2121
- uses: dtolnay/rust-toolchain@master
2222
with:
23-
toolchain: 1.72.0
23+
toolchain: 1.75.0
2424
components: rustfmt
2525
- run: cargo fmt --all -- --check
2626

@@ -30,6 +30,6 @@ jobs:
3030
- uses: actions/checkout@v2
3131
- uses: dtolnay/rust-toolchain@master
3232
with:
33-
toolchain: 1.72.0
33+
toolchain: 1.75.0
3434
components: clippy
3535
- run: cargo clippy --all --all-features -- -D warnings

Cargo.lock

Lines changed: 43 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cosmos-sdk-proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ readme = "README.md"
1313
categories = ["cryptography", "cryptography::cryptocurrencies", "database"]
1414
keywords = ["blockchain", "cosmos", "tendermint", "proto"]
1515
edition = "2021"
16-
rust-version = "1.72"
16+
rust-version = "1.75"
1717

1818
[dependencies]
1919
prost = { version = "0.13", default-features = false }
2020
tendermint-proto = { version = "0.40.0" }
2121

2222
# Optional dependencies
23-
tonic = { version = "0.12", optional = true, default-features = false, features = ["codegen", "prost"] }
23+
tonic = { version = "0.13", optional = true, default-features = false, features = ["codegen", "prost"] }
2424
serde = { version = "1.0.203", optional = true, default-features = false, features = ["alloc"] }
2525
pbjson = { package = "informalsystems-pbjson", optional = true, default-features = false, version = "0.7" }
2626

0 commit comments

Comments
 (0)