Skip to content

Commit

Permalink
Use Debug from derive_more (#3145)
Browse files Browse the repository at this point in the history
# Description
Use Debug from `derive_more` crate.
The `Derivative` crate wasn't fully removed because of the `Default`
derives.

# Changes
- Use Debug from `derive_more` crate
- Update `derive_more` to use the first stable release `1.0.0`
- Remove unused crates dependencies

## How to test
1. Unit test
2. Regression tests
  • Loading branch information
m-lord-renkse authored Dec 2, 2024
1 parent d54d231 commit 69a68bf
Show file tree
Hide file tree
Showing 23 changed files with 86 additions and 158 deletions.
101 changes: 40 additions & 61 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cached = { version = "0.49.3", default-features = false }
chrono = { version = "0.4.38", default-features = false }
clap = { version = "4.5.6", features = ["derive", "env"] }
derivative = "2.2.0"
derive_more = "0.99.17"
derive_more = { version = "1.0.0", features = ["full"] }
ethcontract = { version = "0.25.7", default-features = false, features = ["aws-kms"] }
mimalloc = "0.1.43"
ethcontract-generate = { version = "0.25.7", default-features = false }
Expand Down
Loading

0 comments on commit 69a68bf

Please sign in to comment.