Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump tendermint-rs crates to 0.26 #299

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cosmos-sdk-proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
rust:
- 1.57.0 # MSRV
- 1.59.0 # MSRV
- stable
target:
- x86_64-unknown-linux-gnu
Expand All @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
rust:
- 1.57.0 # MSRV
- 1.59.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cosmrs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
rust:
- 1.57.0 # MSRV
- 1.59.0 # MSRV
- stable
target:
- x86_64-unknown-linux-gnu
Expand All @@ -44,7 +44,7 @@ jobs:
strategy:
matrix:
rust:
- 1.57.0 # MSRV
- 1.59.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rebuild-protos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.57.0 # MSRV
toolchain: 1.59.0 # MSRV
components: rustfmt
override: true
profile: minimal
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.57.0 # MSRV
toolchain: 1.59.0 # MSRV
components: rustfmt
override: true
profile: minimal
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.57.0 # MSRV
toolchain: 1.59.0 # MSRV
components: clippy
override: true
profile: minimal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ all other crates, simply make the required edits in [main.rs](proto-build/main.r

## Minimum Supported Rust Version

Rust **1.57**
Rust **1.59**

[//]: # "crates"

Expand Down
2 changes: 1 addition & 1 deletion cosmos-sdk-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.56"
[dependencies]
prost = "0.11"
prost-types = "0.11"
tendermint-proto = "=0.23.9"
tendermint-proto = "=0.26.0"

# Optional dependencies
tonic = { version = "0.8", optional = true, default-features = false, features = ["codegen", "prost"] }
Expand Down
4 changes: 2 additions & 2 deletions cosmos-sdk-proto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Pull requests to expand coverage are welcome.

## Minimum Supported Rust Version

This crate is supported on Rust **1.57** or newer.
This crate is supported on Rust **1.59** or newer.

[//]: # "badges"
[crate-image]: https://buildstats.info/crate/cosmos-sdk-proto
Expand All @@ -31,7 +31,7 @@ This crate is supported on Rust **1.57** or newer.
[build-link]: https://github.com/cosmos/cosmos-rust/actions/workflows/cosmos-sdk-proto.yml
[license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg
[license-link]: https://github.com/cosmos/cosmos-rust/blob/master/LICENSE
[rustc-image]: https://img.shields.io/badge/rustc-1.57+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.59+-blue.svg

[//]: # "links"
[Protobufs]: (https://github.com/cosmos/cosmos-sdk/tree/master/proto/)
Expand Down
6 changes: 3 additions & 3 deletions cosmrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
categories = ["cryptography", "cryptography::cryptocurrencies", "encoding"]
keywords = ["blockchain", "cosmos", "tendermint", "transaction"]
edition = "2021"
rust-version = "1.57"
rust-version = "1.59"

[dependencies]
cosmos-sdk-proto = { version = "0.14", default-features = false, path = "../cosmos-sdk-proto" }
Expand All @@ -20,12 +20,12 @@ rand_core = { version = "0.6", features = ["std"] }
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tendermint = { version = "=0.23.9", features = ["secp256k1"] }
tendermint = { version = "=0.26.0", features = ["secp256k1"] }
thiserror = "1"

# optional dependencies
bip32 = { version = "0.4", optional = true }
tendermint-rpc = { version = "=0.23.9", optional = true, features = ["http-client"] }
tendermint-rpc = { version = "=0.26.0", optional = true, features = ["http-client"] }
tokio = { version = "1", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions cosmrs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and message passing.

## Minimum Supported Rust Version

This crate is supported on Rust **1.57** or newer.
This crate is supported on Rust **1.59** or newer.

[//]: # "badges"
[crate-image]: https://buildstats.info/crate/cosmrs
Expand All @@ -41,7 +41,7 @@ This crate is supported on Rust **1.57** or newer.
[build-link]: https://github.com/cosmos/cosmos-rust/actions/workflows/cosmrs.yml
[license-image]: https://img.shields.io/badge/license-Apache2.0-blue.svg
[license-link]: https://github.com/cosmos/cosmos-rust/blob/master/LICENSE
[rustc-image]: https://img.shields.io/badge/rustc-1.57+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.59+-blue.svg

[//]: # "general links"
[Cosmos]: https://cosmos.network/
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.57.0
1.59.0