From e86736fc955b441487e139ce721a525faa5c97ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 00:43:22 +0000 Subject: [PATCH] Update ethabi requirement from 16.0 to 18.0 Updates the requirements on [ethabi](https://github.com/rust-ethereum/ethabi) to permit the latest version. - [Release notes](https://github.com/rust-ethereum/ethabi/releases) - [Changelog](https://github.com/rust-ethereum/ethabi/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-ethereum/ethabi/compare/v16.0.0...v18.0.0) --- updated-dependencies: - dependency-name: ethabi dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ethcontract-common/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcontract-common/Cargo.toml b/ethcontract-common/Cargo.toml index 91374bce..5077ee39 100644 --- a/ethcontract-common/Cargo.toml +++ b/ethcontract-common/Cargo.toml @@ -12,7 +12,7 @@ Common types for ethcontract-rs runtime and proc macro. """ [dependencies] -ethabi = "16.0" +ethabi = "18.0" hex = "0.4" serde = "1.0" serde_derive = "1.0"