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/agents/scraper/Cargo.toml

34 lines
1.0 KiB

[package]
name = "scraper"
version = "0.1.0"
edition = "2021"
[dependencies]
async-trait = { version = "0.1", default-features = false }
chrono = "0.4"
config = "0.13"
ethers = { git = "https://github.com/abacus-network/ethers-rs", tag = "2022-10-28-01" }
eyre = "0.6"
itertools = "0.10"
prometheus = "0.13"
sea-orm = { version = "0.10", features = ["sqlx-postgres", "runtime-tokio-native-tls", "macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
thiserror = { version = "1.0", default-features = false }
tokio = { version = "1", features = ["rt", "macros"] }
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = "0.3"
abacus-core = { path = "../../abacus-core" }
abacus-base = { path = "../../abacus-base" }
migration = { path = "migration" }
hex = { path = "../../utils/hex" }
[dev-dependencies]
tokio-test = "0.4"
abacus-test = { path = "../../abacus-test" }
[features]
default = ["abacus-base/color-eyre"]
oneline-errors = ["abacus-base/oneline-errors"]