ec416df061
# Conflicts: # Cargo.lock # beacon_node/beacon_chain/src/lib.rs # beacon_node/execution_layer/src/engine_api.rs # beacon_node/execution_layer/src/engine_api/http.rs # beacon_node/execution_layer/src/test_utils/mod.rs # beacon_node/lighthouse_network/src/rpc/codec/ssz_snappy.rs # beacon_node/lighthouse_network/src/rpc/handler.rs # beacon_node/lighthouse_network/src/rpc/protocol.rs # beacon_node/lighthouse_network/src/service/utils.rs # beacon_node/lighthouse_network/tests/rpc_tests.rs # beacon_node/network/Cargo.toml # beacon_node/network/src/network_beacon_processor/tests.rs # lcli/src/parse_ssz.rs # scripts/cross/Dockerfile # validator_client/src/block_service.rs # validator_client/src/validator_store.rs
27 lines
671 B
TOML
27 lines
671 B
TOML
[package]
|
|
name = "validator_dir"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
insecure_keys = []
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bls = { path = "../../crypto/bls" }
|
|
eth2_keystore = { path = "../../crypto/eth2_keystore" }
|
|
filesystem = { path = "../filesystem" }
|
|
types = { path = "../../consensus/types" }
|
|
rand = "0.8.5"
|
|
deposit_contract = { path = "../deposit_contract" }
|
|
tree_hash = "0.5.2"
|
|
hex = "0.4.2"
|
|
derivative = "2.1.1"
|
|
lockfile = { path = "../lockfile" }
|
|
directory = { path = "../directory" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|