update ethers-rs (#1004)

pull/1007/head
Mattie Conover 2 years ago committed by GitHub
parent 9bb234b878
commit d316ae68d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      rust/abacus-base/Cargo.toml
  2. 6
      rust/abacus-core/Cargo.toml
  3. 2
      rust/abacus-test/Cargo.toml
  4. 4
      rust/agents/relayer/Cargo.toml
  5. 2
      rust/agents/validator/Cargo.toml
  6. 6
      rust/chains/abacus-ethereum/Cargo.toml
  7. 2
      rust/ethers-prometheus/Cargo.toml
  8. 2
      rust/gelato/Cargo.toml
  9. 2
      rust/utils/abigen/Cargo.toml

@ -10,7 +10,7 @@ tokio = { version = "1", features = ["rt", "macros"] }
config = "0.13" config = "0.13"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
thiserror = { version = "1.0", default-features = false } thiserror = { version = "1.0", default-features = false }
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
futures-util = "0.3" futures-util = "0.3"

@ -7,9 +7,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", default-features = false, features = ['legacy'] } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", default-features = false, features = ['legacy'] }
ethers-signers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", features=["aws"] } ethers-signers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", features=["aws"] }
ethers-providers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", features=["ws", "rustls"] } ethers-providers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", features=["ws", "rustls"] }
config = "0.13" config = "0.13"
hex = "0.4.3" hex = "0.4.3"
sha3 = "0.9.1" sha3 = "0.9.1"

@ -7,7 +7,7 @@ edition = "2021"
tokio = { version = "1", features = ["rt", "macros"] } tokio = { version = "1", features = ["rt", "macros"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
thiserror = { version = "1.0", default-features = false } thiserror = { version = "1.0", default-features = false }
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
futures-util = "0.3" futures-util = "0.3"

@ -9,8 +9,8 @@ config = "0.13"
color-eyre = { version = "0.6", optional = true } color-eyre = { version = "0.6", optional = true }
serde = {version = "1.0", features = ["derive"]} serde = {version = "1.0", features = ["derive"]}
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
ethers-contract = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", features=["legacy"] } ethers-contract = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", features=["legacy"] }
thiserror = { version = "1.0", default-features = false } thiserror = { version = "1.0", default-features = false }
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
futures-util = "0.3" futures-util = "0.3"

@ -8,7 +8,7 @@ tokio = { version = "1", features = ["rt", "macros"] }
config = "0.13" config = "0.13"
serde = "1.0" serde = "1.0"
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
thiserror = { version = "1.0", default-features = false } thiserror = { version = "1.0", default-features = false }
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
futures-util = "0.3" futures-util = "0.3"

@ -9,9 +9,9 @@ edition = "2021"
# Main block # Main block
serde = "1.0" serde = "1.0"
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
ethers = {git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", features = ["abigen"]} ethers = {git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", features = ["abigen"]}
ethers-signers = {git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", features = ["aws"]} ethers-signers = {git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", features = ["aws"]}
ethers-contract = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01", features=["legacy"] } ethers-contract = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02", features=["legacy"] }
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
thiserror = { version = "1.0", default-features = false } thiserror = { version = "1.0", default-features = false }
tracing = "0.1" tracing = "0.1"

@ -6,7 +6,7 @@ edition = "2021"
[dependencies] [dependencies]
prometheus = "0.13" prometheus = "0.13"
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
derive_builder = "0.11" derive_builder = "0.11"
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
futures = "0.3" futures = "0.3"

@ -5,7 +5,7 @@ edition = "2021"
[dependencies] [dependencies]
async-trait = { version = "0.1", default-features = false } async-trait = { version = "0.1", default-features = false }
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false }
tokio = { version = "1", features = ["macros"] } tokio = { version = "1", features = ["macros"] }

@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-19-01" } ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-08-30-02" }
Inflector = "0.11" Inflector = "0.11"

Loading…
Cancel
Save