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

chore(deps): update derive_more requirement from 0.99.18 to 1.0.0 #1313

Merged
merged 9 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading