chore: bump ethabi (#469)

This commit is contained in:
Georgios Konstantopoulos 2021-09-24 21:05:58 -04:00 committed by GitHub
parent 1d149d70ef
commit 7fdc47e8e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

6
Cargo.lock generated
View File

@ -804,8 +804,9 @@ dependencies = [
[[package]]
name = "ethabi"
version = "14.1.0"
source = "git+https://github.com/rust-ethereum/ethabi/?branch=master#1da9de9c23c5e242ba770a05c69c3a479e681b71"
version = "15.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f76ef192b63e8a44b3d08832acebbb984c3fba154b5c26f70037c860202a0d4b"
dependencies = [
"anyhow",
"ethereum-types",
@ -923,7 +924,6 @@ dependencies = [
"ecdsa",
"elliptic-curve",
"ethabi",
"ethereum-types",
"futures-util",
"generic-array 0.14.4",
"glob",

View File

@ -11,9 +11,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
[dependencies]
rlp = { version = "0.5.0", default-features = false }
# ethabi = { version = "14.1.0", default-features = false }
ethabi = { git = "https://github.com/rust-ethereum/ethabi/", branch = "master" }
ethereum-types = { version = "0.12.0", default-features = false, features = ["serialize", "rlp"] }
ethabi = { version = "15.0", default-features = false, features = ["full-serde", "rlp"] }
arrayvec = { version = "0.7.1", default-features = false }
rlp-derive = { version = "0.1.0", default-features = false }