The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/chains/hyperlane-ethereum/Cargo.toml

29 lines
994 B

[package]
name = "hyperlane-ethereum"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Main block
serde = "1.0"
serde_json = { version = "1.0", default-features = false }
ethers = { git = "https://github.com/hyperlane-xyz/ethers-rs", tag = "2023-01-10-04", features = ["abigen"] }
ethers-signers = { git = "https://github.com/hyperlane-xyz/ethers-rs", tag = "2023-01-10-04", features = ["aws"] }
ethers-contract = { git = "https://github.com/hyperlane-xyz/ethers-rs", tag = "2023-01-10-04", features=["legacy"] }
async-trait = { version = "0.1", default-features = false }
thiserror = "1.0"
tracing = "0.1"
num = "0.4"
tokio = "1"
hex = "0.4.3"
tracing-futures = "0.2"
reqwest = "0.11"
url = "2.3"
hyperlane-core = { path = "../../hyperlane-core" }
ethers-prometheus = { path = "../../ethers-prometheus", features = ["serde"] }
[build-dependencies]
abigen = { path = "../../utils/abigen" }