mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-21 13:54:44 +00:00
Previously, we had a pinned version of `alloy` to fix some crate compatibility issues we encountered during the migration away from `ethers`. Now that the migration is complete we should remove the pin. This also updates alloy crates to their latest versions. Co-Authored-By: Mac L <mjladson@pm.me>
23 lines
558 B
TOML
23 lines
558 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 = { workspace = true }
|
|
alloy-json-abi = { workspace = true }
|
|
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 }
|