18 lines
330 B
TOML
18 lines
330 B
TOML
[package]
|
|
name = "deposit_contract"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
reqwest = "0.9.20"
|
|
serde_json = "1.0"
|
|
|
|
[dependencies]
|
|
types = { path = "../../types"}
|
|
eth2_ssz = { path = "../ssz"}
|
|
tree_hash = { path = "../tree_hash"}
|
|
ethabi = "11.0"
|