mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 19:51:47 +00:00
https://github.com/sigp/lighthouse/issues/6022 Switches the `deposit_contract` crate to use the `alloy` ecosystem and removes the dependency on `ethabi` Co-Authored-By: Mac L <mjladson@pm.me>
23 lines
528 B
TOML
23 lines
528 B
TOML
[package]
|
|
name = "deposit_contract"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
alloy-dyn-abi = "1.4"
|
|
alloy-json-abi = "1.4"
|
|
alloy-primitives = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tree_hash = { workspace = true }
|
|
types = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
hex = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sha2 = { workspace = true }
|