Skip to content

Commit

Permalink
chore(deps): update derive_more requirement from 0.99.18 to 1.0.0 (#1313
Browse files Browse the repository at this point in the history
)

* 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] <support@github.com>

* 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] <support@github.com>
Signed-off-by: Rano | Ranadeep <ranadeep@informal.systems>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sean Chen <seanchen11235@gmail.com>
Co-authored-by: Ranadeep Biswas <mail@rnbguy.at>
Co-authored-by: Rano | Ranadeep <ranadeep@informal.systems>
  • Loading branch information
4 people authored Nov 12, 2024
1 parent 6d1ac7c commit 81625d6
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 64 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cw-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
paths:
- .github/workflows/cw-check.yaml
- Makefile
- '*.toml'
- "*.toml"
- Cargo.lock
- ci/cw-check/**
- ibc/**
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
-v "$(pwd)":/code \
-v "$(pwd)"/target:/target \
-v "${HOME}/.cargo/registry":/usr/local/cargo/registry \
cosmwasm/optimizer:0.16.0 ./ci/cw-check
cosmwasm/optimizer:0.16.1 ./ci/cw-check
- name: Fix permissions
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
paths:
- .github/workflows/rust.yaml
- Makefile
- '*.toml'
- "*.toml"
- ci/**
- ibc/**
- ibc-core/**
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
name: Test MSRV for `ibc` libraries
timeout-minutes: 30
env:
CARGO_MSRV_VERSION: 0.16.2
CARGO_MSRV_VERSION: 0.16.3
MSRV: 1.75.0
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ base64 = { version = "0.22", default-features = false }
borsh = { version = "1", default-features = false, features = [ "derive" ] }
displaydoc = { version = "0.2.5", default-features = false }
prost = { version = "0.13.2", default-features = false }
derive_more = { version = "0.99.18", default-features = false, features = [ "from", "into", "display", "try_into" ] }
derive_more = { version = "1.0.0", default-features = false, features = [ "from", "into", "display", "try_into" ] }
rstest = { version = "0.23" }
schemars = { version = "0.8.21" }
sha2 = { version = "0.10.8", default-features = false }
Expand Down
39 changes: 14 additions & 25 deletions ci/cw-check/Cargo.lock

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

29 changes: 15 additions & 14 deletions ci/no-std-check/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 ibc-apps/ics20-transfer/types/src/denom.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! 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)
use core::fmt::{Display, Error as FmtError, Formatter};
use core::fmt::{Error as FmtError, Formatter};
use core::str::FromStr;

use derive_more::{Display, From};
Expand Down
Loading

0 comments on commit 81625d6

Please sign in to comment.