Skip to content

Commit

Permalink
cosmrs: bump signature + tendermint-rs dependencies; MSRV 1.65 (#385)
Browse files Browse the repository at this point in the history
Bumps the following dependencies:

- `bip32` v0.5
- `ecdsa` v0.16
- `k256` v0.13
- `tendermint` v0.31
- `tendermint-proto` v0.31
- `tendermint-rpc` v0.31
  • Loading branch information
tony-iqlusion authored Apr 17, 2023
1 parent 5633f12 commit 3a3a7f5
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 110 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cosmos-sdk-proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
rust:
- 1.63.0 # MSRV
- 1.65.0 # MSRV
target:
- x86_64-unknown-linux-gnu
- wasm32-unknown-unknown
Expand All @@ -41,7 +41,7 @@ jobs:
strategy:
matrix:
rust:
- 1.63.0 # MSRV
- 1.65.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 @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
rust:
- 1.63.0 # MSRV
- 1.65.0 # MSRV
target:
- x86_64-unknown-linux-gnu
- wasm32-unknown-unknown
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
rust:
- 1.63.0 # MSRV
- 1.65.0 # MSRV
- stable
steps:
- uses: actions/checkout@v1
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: dtolnay/rust-toolchain@master
with:
toolchain: 1.63.0
toolchain: 1.65.0
components: rustfmt
- run: cargo fmt --all -- --check

Expand All @@ -30,6 +30,6 @@ jobs:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.63.0
toolchain: 1.65.0
components: clippy
- run: cargo clippy --all --all-features -- -D warnings
111 changes: 48 additions & 63 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.63"
[dependencies]
prost = "0.11"
prost-types = "0.11"
tendermint-proto = "0.30"
tendermint-proto = "0.31"

# Optional dependencies
tonic = { version = "0.8", optional = true, default-features = false, features = ["codegen", "prost"] }
Expand Down
12 changes: 6 additions & 6 deletions cosmrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ readme = "README.md"
categories = ["cryptography", "cryptography::cryptocurrencies", "encoding"]
keywords = ["blockchain", "cosmos", "tendermint", "transaction"]
edition = "2021"
rust-version = "1.63"
rust-version = "1.65"

[dependencies]
cosmos-sdk-proto = { version = "0.17", default-features = false, path = "../cosmos-sdk-proto" }
ecdsa = { version = "0.14", features = ["std"] }
ecdsa = { version = "0.16", features = ["std"] }
eyre = "0.6"
k256 = { version = "0.11", features = ["ecdsa", "sha256"] }
k256 = { version = "0.13", features = ["ecdsa", "sha256"] }
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.30", features = ["secp256k1"] }
tendermint = { version = "0.31", features = ["secp256k1"] }
thiserror = "1"

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

[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
Loading

0 comments on commit 3a3a7f5

Please sign in to comment.