fix: version of ethers-core

This commit is contained in:
rymnc 2023-07-03 20:08:37 +05:30
parent 56b9285fef
commit 90fdfb9d78
No known key found for this signature in database
GPG Key ID: AAA088D5C68ECD34
2 changed files with 55 additions and 7 deletions

60
Cargo.lock generated
View File

@ -142,7 +142,7 @@ dependencies = [
"cfg-if",
"color-eyre 0.6.2",
"criterion 0.3.6",
"ethers-core",
"ethers-core 2.0.4",
"fnv",
"hex",
"num",
@ -169,7 +169,7 @@ dependencies = [
"cfg-if",
"color-eyre 0.5.11",
"criterion 0.3.6",
"ethers-core",
"ethers-core 2.0.4",
"fnv",
"hex",
"num",
@ -1522,7 +1522,33 @@ dependencies = [
"rlp",
"serde",
"serde_json",
"strum",
"strum 0.24.1",
"tempfile",
"thiserror",
"tiny-keccak",
"unicode-xid",
]
[[package]]
name = "ethers-core"
version = "2.0.7"
source = "git+https://github.com/gakonst/ethers-rs?rev=3110864#311086466871204c3965065b8c81e47418261412"
dependencies = [
"arrayvec",
"bytes",
"chrono",
"elliptic-curve",
"ethabi",
"generic-array",
"hex",
"k256",
"num_enum",
"open-fastrlp",
"rand",
"rlp",
"serde",
"serde_json",
"strum 0.25.0",
"tempfile",
"thiserror",
"tiny-keccak",
@ -2908,7 +2934,7 @@ dependencies = [
"ark-std 0.3.0",
"color-eyre 0.6.2",
"enumset",
"ethers-core",
"ethers-core 2.0.4",
"hex",
"hex-literal",
"num-bigint",
@ -2934,7 +2960,7 @@ dependencies = [
"ark-relations 0.3.0",
"ark-std 0.3.0",
"color-eyre 0.6.2",
"ethers-core",
"ethers-core 2.0.7",
"once_cell",
"rand",
"rand_chacha",
@ -3141,7 +3167,16 @@ version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
dependencies = [
"strum_macros",
"strum_macros 0.24.3",
]
[[package]]
name = "strum"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
dependencies = [
"strum_macros 0.25.0",
]
[[package]]
@ -3157,6 +3192,19 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "strum_macros"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe9f3bd7d2e45dcc5e265fbb88d6513e4747d8ef9444cf01a533119bce28a157"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 2.0.16",
]
[[package]]
name = "subtle"
version = "2.4.1"

View File

@ -21,7 +21,7 @@ color-eyre = "0.6.1"
once_cell = "1.8"
rand = "0.8.4"
semaphore = { git = "https://github.com/worldcoin/semaphore-rs", rev = "ee658c2"}
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false }
ethers-core = { git = "https://github.com/gakonst/ethers-rs", default-features = false, rev = "3110864" }
ruint = { version = "1.2.0", features = [ "serde", "num-bigint", "ark-ff" ] }
serde = "1.0"
thiserror = "1.0.0"