Skip to content

Commit 81625d6

Browse files
dependabot[bot]seanchen1991rnbguy
authored
chore(deps): update derive_more requirement from 0.99.18 to 1.0.0 (#1313)
* chore(deps): update derive_more requirement from 0.99.18 to 1.0.0 Updates the requirements on [derive_more](https://github.com/JelteF/derive_more) to permit the latest version. - [Release notes](https://github.com/JelteF/derive_more/releases) - [Changelog](https://github.com/JelteF/derive_more/blob/v0.99.18/CHANGELOG.md) - [Commits](JelteF/derive_more@v0.99.18...v0.99.18) --- updated-dependencies: - dependency-name: derive_more dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * remove fmt from derive_more attribute * rm shadowed import * update cargo lockfile * update cosmwasm optimizer in ci * update cargo msrv * use double quotes for strings --------- Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Rano | Ranadeep <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sean Chen <[email protected]> Co-authored-by: Ranadeep Biswas <[email protected]> Co-authored-by: Rano | Ranadeep <[email protected]>
1 parent 6d1ac7c commit 81625d6

File tree

7 files changed

+54
-64
lines changed

7 files changed

+54
-64
lines changed

.github/workflows/cw-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
paths:
55
- .github/workflows/cw-check.yaml
66
- Makefile
7-
- '*.toml'
7+
- "*.toml"
88
- Cargo.lock
99
- ci/cw-check/**
1010
- ibc/**
@@ -43,7 +43,7 @@ jobs:
4343
-v "$(pwd)":/code \
4444
-v "$(pwd)"/target:/target \
4545
-v "${HOME}/.cargo/registry":/usr/local/cargo/registry \
46-
cosmwasm/optimizer:0.16.0 ./ci/cw-check
46+
cosmwasm/optimizer:0.16.1 ./ci/cw-check
4747
4848
- name: Fix permissions
4949
run: |

.github/workflows/rust.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
paths:
55
- .github/workflows/rust.yaml
66
- Makefile
7-
- '*.toml'
7+
- "*.toml"
88
- ci/**
99
- ibc/**
1010
- ibc-core/**
@@ -110,7 +110,7 @@ jobs:
110110
name: Test MSRV for `ibc` libraries
111111
timeout-minutes: 30
112112
env:
113-
CARGO_MSRV_VERSION: 0.16.2
113+
CARGO_MSRV_VERSION: 0.16.3
114114
MSRV: 1.75.0
115115
strategy:
116116
matrix:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ base64 = { version = "0.22", default-features = false }
5858
borsh = { version = "1", default-features = false, features = [ "derive" ] }
5959
displaydoc = { version = "0.2.5", default-features = false }
6060
prost = { version = "0.13.2", default-features = false }
61-
derive_more = { version = "0.99.18", default-features = false, features = [ "from", "into", "display", "try_into" ] }
61+
derive_more = { version = "1.0.0", default-features = false, features = [ "from", "into", "display", "try_into" ] }
6262
rstest = { version = "0.23" }
6363
schemars = { version = "0.8.21" }
6464
sha2 = { version = "0.10.8", default-features = false }

ci/cw-check/Cargo.lock

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

ci/no-std-check/Cargo.lock

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

ibc-apps/ics20-transfer/types/src/denom.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Defines types to represent "denominations" [as defined in ICS-20](https://github.com/cosmos/ibc/blob/main/spec/app/ics-020-fungible-token-transfer/README.md#data-structures)
2-
use core::fmt::{Display, Error as FmtError, Formatter};
2+
use core::fmt::{Error as FmtError, Formatter};
33
use core::str::FromStr;
44

55
use derive_more::{Display, From};

0 commit comments

Comments
 (0)