Update dependencies

ethers previously used a git spec due to depending on not-yet-published 
updates. Now that they've been released, a properly published version is 
used.
This commit is contained in:
Luke Parker
2022-07-22 12:36:30 -04:00
parent bd93d6ec8a
commit b80c1bec4c
2 changed files with 95 additions and 171 deletions

View File

@@ -12,7 +12,7 @@ serde_json = "1.0"
serde = "1.0"
hex-literal = "0.3"
ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen", "ethers-solc"] }
ethers = { version = "0.14", features = ["abigen", "ethers-solc"] }
eyre = "0.6"
k256 = { version = "0.11", features = ["arithmetic", "keccak256", "ecdsa"] }
@@ -25,4 +25,4 @@ rand = "0.8"
tokio = { version = "1.19", features = ["macros"] }
[build-dependencies]
ethers-solc = { git = "https://github.com/gakonst/ethers-rs" }
ethers-solc = "0.14"