Skip to content

Commit bb79811

Browse files
Bump derive_more from 0.99.18 to 1.0.0 (#2300)
* Bump derive_more from 0.99.18 to 1.0.0 Bumps [derive_more](https://github.com/JelteF/derive_more) from 0.99.18 to 1.0.0. - [Release notes](https://github.com/JelteF/derive_more/releases) - [Changelog](https://github.com/JelteF/derive_more/blob/master/CHANGELOG.md) - [Commits](JelteF/derive_more@v0.99.18...v1.0.0) --- updated-dependencies: - dependency-name: derive_more dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Propagate feature `std` to `derive_more` * Fix casing --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Michael Mueller <[email protected]>
1 parent 2609f17 commit bb79811

File tree

11 files changed

+29
-17
lines changed

11 files changed

+29
-17
lines changed

.config/zepter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ workflows:
3232
# Will be displayed when any workflow fails:
3333
help:
3434
text: |
35-
Ink! uses the Zepter CLI to detect abnormalities in the feature configuration.
35+
ink! uses the Zepter CLI to detect abnormalities in the feature configuration.
3636
It looks like one more more checks failed; please check the console output. You can try to automatically address them by running `zepter`.
3737
Otherwise please ask directly in the Merge Request, GitHub Discussions or on Matrix Chat, thank you.
3838
links:

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cargo_metadata = { version = "0.18.0" }
4040
cfg-if = { version = "1.0" }
4141
contract-build = { version = "4.1.2" }
4242
darling = { version = "0.20.10" }
43-
derive_more = { version = "0.99.18", default-features = false }
43+
derive_more = { version = "1.0.0", default-features = false }
4444
either = { version = "1.13", default-features = false }
4545
funty = { version = "2.0.0" }
4646
heck = { version = "0.5.0" }

crates/engine/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,9 @@ secp256k1 = { workspace = true, features = ["recovery", "global-context"], optio
2929

3030
[features]
3131
default = [ "std" ]
32-
std = [ "ink_primitives/std", "scale/std", "secp256k1" ]
32+
std = [
33+
"ink_primitives/std",
34+
"scale/std",
35+
"secp256k1",
36+
"derive_more/std"
37+
]

crates/env/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ std = [
8080
"sha3",
8181
"scale-decode?/std",
8282
"scale-encode?/std",
83-
"xcm/std"
83+
"xcm/std",
84+
"derive_more/std"
8485
]
8586

8687
# Enable contract debug messages via `debug_print!` and `debug_println!`.

crates/ink/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ std = [
4545
"ink_storage/std",
4646
"scale-info/std",
4747
"scale/std",
48-
"xcm/std"
48+
"xcm/std",
49+
"derive_more/std"
4950
]
5051
# Enable contract debug messages via `debug_print!` and `debug_println!`.
5152
ink-debug = [ "ink_env/ink-debug" ]

crates/ink/codegen/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,6 @@ std = [
4242
"ir/std",
4343
"itertools/use_std",
4444
"scale/std",
45-
"serde/std"
45+
"serde/std",
46+
"derive_more/std"
4647
]

crates/metadata/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ std = [
3737
"ink_primitives/std",
3838
"scale-info/std",
3939
"serde/std",
40-
"scale/std"
40+
"scale/std",
41+
"derive_more/std"
4142
]
4243
derive = []

crates/primitives/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,6 @@ std = [
3333
"scale/std",
3434
"scale-decode?/std",
3535
"scale-encode?/std",
36-
"xxhash-rust/std"
36+
"derive_more/std",
37+
"xxhash-rust/std"
3738
]

crates/storage/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@ std = [
4545
"ink_storage_traits/std",
4646
"scale-info/std",
4747
"scale/std",
48+
"derive_more/std"
4849
]
4950
ink-fuzz-tests = [ "std" ]

0 commit comments

Comments
 (0)