mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-07 16:55:46 +00:00
Squashed reset to unstable
This commit is contained in:
committed by
Daniel Knopik
parent
b71b5f2231
commit
f61f0b654c
35
Cargo.toml
35
Cargo.toml
@@ -13,7 +13,6 @@ members = [
|
||||
"beacon_node/http_api",
|
||||
"beacon_node/http_metrics",
|
||||
"beacon_node/lighthouse_network",
|
||||
"beacon_node/lighthouse_network/gossipsub",
|
||||
"beacon_node/network",
|
||||
"beacon_node/operation_pool",
|
||||
"beacon_node/store",
|
||||
@@ -85,7 +84,6 @@ members = [
|
||||
"testing/node_test_rig",
|
||||
"testing/simulator",
|
||||
"testing/state_transition_vectors",
|
||||
"testing/test-test_logger",
|
||||
"testing/validator_test_rig",
|
||||
"testing/web3signer_tests",
|
||||
|
||||
@@ -97,15 +95,13 @@ members = [
|
||||
"validator_client/http_api",
|
||||
"validator_client/http_metrics",
|
||||
"validator_client/initialized_validators",
|
||||
"validator_client/lighthouse_validator_store",
|
||||
"validator_client/signing_method",
|
||||
"validator_client/slashing_protection",
|
||||
"validator_client/validator_metrics",
|
||||
"validator_client/validator_services",
|
||||
"validator_client/validator_store",
|
||||
|
||||
"validator_manager",
|
||||
|
||||
"watch",
|
||||
]
|
||||
resolver = "2"
|
||||
|
||||
@@ -134,13 +130,13 @@ delay_map = "0.4"
|
||||
derivative = "2"
|
||||
dirs = "3"
|
||||
either = "1.9"
|
||||
rust_eth_kzg = "0.5.3"
|
||||
rust_eth_kzg = "0.5.4"
|
||||
discv5 = { version = "0.9", features = ["libp2p"] }
|
||||
env_logger = "0.9"
|
||||
ethereum_hashing = "0.7.0"
|
||||
ethereum_serde_utils = "0.7"
|
||||
ethereum_ssz = "0.7"
|
||||
ethereum_ssz_derive = "0.7"
|
||||
ethereum_ssz = "0.8.2"
|
||||
ethereum_ssz_derive = "0.8.2"
|
||||
ethers-core = "1"
|
||||
ethers-providers = { version = "1", default-features = false }
|
||||
exit-future = "0.2"
|
||||
@@ -154,9 +150,10 @@ hyper = "1"
|
||||
itertools = "0.10"
|
||||
libsecp256k1 = "0.7"
|
||||
log = "0.4"
|
||||
logroller = "0.1.4"
|
||||
lru = "0.12"
|
||||
maplit = "1"
|
||||
milhouse = "0.3"
|
||||
milhouse = "0.5"
|
||||
mockito = "1.5.0"
|
||||
num_cpus = "1"
|
||||
parking_lot = "0.12"
|
||||
@@ -184,17 +181,9 @@ serde_json = "1"
|
||||
serde_repr = "0.1"
|
||||
serde_yaml = "0.9"
|
||||
sha2 = "0.9"
|
||||
slog = { version = "2", features = [
|
||||
"max_level_debug",
|
||||
"release_max_level_debug",
|
||||
"nested-values",
|
||||
] }
|
||||
slog-async = "2"
|
||||
slog-term = "2"
|
||||
sloggers = { version = "2", features = ["json"] }
|
||||
smallvec = { version = "1.11.2", features = ["arbitrary"] }
|
||||
snap = "1"
|
||||
ssz_types = "0.8"
|
||||
ssz_types = "0.10"
|
||||
strum = { version = "0.24", features = ["derive"] }
|
||||
superstruct = "0.8"
|
||||
syn = "1"
|
||||
@@ -212,9 +201,9 @@ tracing = "0.1.40"
|
||||
tracing-appender = "0.2"
|
||||
tracing-core = "0.1"
|
||||
tracing-log = "0.2"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
tree_hash = "0.8"
|
||||
tree_hash_derive = "0.8"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
||||
tree_hash = "0.9"
|
||||
tree_hash_derive = "0.9"
|
||||
url = "2"
|
||||
uuid = { version = "0.8", features = ["serde", "v4"] }
|
||||
warp = { version = "0.3.7", default-features = false, features = ["tls"] }
|
||||
@@ -233,6 +222,7 @@ compare_fields = { path = "common/compare_fields" }
|
||||
deposit_contract = { path = "common/deposit_contract" }
|
||||
directory = { path = "common/directory" }
|
||||
doppelganger_service = { path = "validator_client/doppelganger_service" }
|
||||
validator_services = { path = "validator_client/validator_services" }
|
||||
environment = { path = "lighthouse/environment" }
|
||||
eth1 = { path = "beacon_node/eth1" }
|
||||
eth1_test_rig = { path = "testing/eth1_test_rig" }
|
||||
@@ -247,7 +237,6 @@ fixed_bytes = { path = "consensus/fixed_bytes" }
|
||||
filesystem = { path = "common/filesystem" }
|
||||
fork_choice = { path = "consensus/fork_choice" }
|
||||
genesis = { path = "beacon_node/genesis" }
|
||||
gossipsub = { path = "beacon_node/lighthouse_network/gossipsub/" }
|
||||
health_metrics = { path = "common/health_metrics" }
|
||||
http_api = { path = "beacon_node/http_api" }
|
||||
initialized_validators = { path = "validator_client/initialized_validators" }
|
||||
@@ -255,7 +244,6 @@ int_to_bytes = { path = "consensus/int_to_bytes" }
|
||||
kzg = { path = "crypto/kzg" }
|
||||
metrics = { path = "common/metrics" }
|
||||
lighthouse_network = { path = "beacon_node/lighthouse_network" }
|
||||
lighthouse_validator_store = { path = "validator_client/lighthouse_validator_store" }
|
||||
lighthouse_version = { path = "common/lighthouse_version" }
|
||||
lockfile = { path = "common/lockfile" }
|
||||
logging = { path = "common/logging" }
|
||||
@@ -286,7 +274,6 @@ validator_dir = { path = "common/validator_dir" }
|
||||
validator_http_api = { path = "validator_client/http_api" }
|
||||
validator_http_metrics = { path = "validator_client/http_metrics" }
|
||||
validator_metrics = { path = "validator_client/validator_metrics" }
|
||||
validator_services = { path = "validator_client/validator_services" }
|
||||
validator_store = { path = "validator_client/validator_store" }
|
||||
validator_test_rig = { path = "testing/validator_test_rig" }
|
||||
warp_utils = { path = "common/warp_utils" }
|
||||
|
||||
Reference in New Issue
Block a user