mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-31 13:17:09 +00:00
Merge branch 'unstable' into progressive-list-tests
This commit is contained in:
49
Cargo.toml
49
Cargo.toml
@@ -42,7 +42,6 @@ members = [
|
||||
"common/system_health",
|
||||
"common/target_check",
|
||||
"common/task_executor",
|
||||
"common/test_random_derive",
|
||||
"common/tracing_samplers",
|
||||
"common/validator_dir",
|
||||
"common/warp_utils",
|
||||
@@ -91,7 +90,7 @@ resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
edition = "2024"
|
||||
version = "8.1.0"
|
||||
version = "8.1.3"
|
||||
|
||||
[workspace.dependencies]
|
||||
account_utils = { path = "common/account_utils" }
|
||||
@@ -117,9 +116,6 @@ bitvec = "1"
|
||||
bls = { path = "crypto/bls" }
|
||||
byteorder = "1"
|
||||
bytes = "1.11.1"
|
||||
# Turn off c-kzg's default features which include `blst/portable`. We can turn on blst's portable
|
||||
# feature ourselves when desired.
|
||||
c-kzg = { version = "2.1", default-features = false }
|
||||
cargo_metadata = "0.19"
|
||||
clap = { version = "4.5.4", features = ["derive", "cargo", "wrap_help"] }
|
||||
clap_utils = { path = "common/clap_utils" }
|
||||
@@ -148,7 +144,6 @@ ethereum_serde_utils = "0.8.0"
|
||||
ethereum_ssz = { version = "0.10.0", features = ["context_deserialize"] }
|
||||
ethereum_ssz_derive = "0.10.0"
|
||||
execution_layer = { path = "beacon_node/execution_layer" }
|
||||
exit-future = "0.2"
|
||||
filesystem = { path = "common/filesystem" }
|
||||
fixed_bytes = { path = "consensus/fixed_bytes" }
|
||||
fnv = "1"
|
||||
@@ -166,20 +161,7 @@ initialized_validators = { path = "validator_client/initialized_validators" }
|
||||
int_to_bytes = { path = "consensus/int_to_bytes" }
|
||||
itertools = "0.14"
|
||||
kzg = { path = "crypto/kzg" }
|
||||
libp2p = { git = "https://github.com/libp2p/rust-libp2p.git", default-features = false, features = [
|
||||
"identify",
|
||||
"yamux",
|
||||
"noise",
|
||||
"dns",
|
||||
"tcp",
|
||||
"tokio",
|
||||
"secp256k1",
|
||||
"macros",
|
||||
"metrics",
|
||||
"quic",
|
||||
"upnp",
|
||||
"gossipsub",
|
||||
] }
|
||||
libp2p = { git = "https://github.com/libp2p/rust-libp2p.git", default-features = false, features = ["identify", "yamux", "noise", "dns", "tcp", "tokio", "secp256k1", "macros", "metrics", "quic", "upnp", "gossipsub"] }
|
||||
libsecp256k1 = "0.7"
|
||||
lighthouse_network = { path = "beacon_node/lighthouse_network" }
|
||||
lighthouse_validator_store = { path = "validator_client/lighthouse_validator_store" }
|
||||
@@ -217,30 +199,25 @@ proto_array = { path = "consensus/proto_array" }
|
||||
quote = "1"
|
||||
r2d2 = "0.8"
|
||||
rand = "0.9.0"
|
||||
rand_xorshift = "0.4.0"
|
||||
rayon = "1.7"
|
||||
regex = "1"
|
||||
reqwest = { version = "0.12", default-features = false, features = [
|
||||
"blocking",
|
||||
"json",
|
||||
"stream",
|
||||
"rustls-tls",
|
||||
] }
|
||||
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "stream", "rustls-tls"] }
|
||||
ring = "0.17"
|
||||
rpds = "0.11"
|
||||
rusqlite = { version = "0.28", features = ["bundled"] }
|
||||
rusqlite = { version = "0.38", features = ["bundled"] }
|
||||
rust_eth_kzg = "0.9"
|
||||
safe_arith = "0.1"
|
||||
sensitive_url = { version = "0.1", features = ["serde"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
serde_repr = "0.1"
|
||||
serde_yaml = "0.9"
|
||||
sha2 = "0.10"
|
||||
signing_method = { path = "validator_client/signing_method" }
|
||||
slasher = { path = "slasher", default-features = false }
|
||||
slashing_protection = { path = "validator_client/slashing_protection" }
|
||||
slot_clock = { path = "common/slot_clock" }
|
||||
smallvec = { version = "1.11.2", features = ["arbitrary"] }
|
||||
smallvec = "1"
|
||||
snap = "1"
|
||||
ssz_types = { version = "0.14.0", features = ["context_deserialize", "runtime_types"] }
|
||||
state_processing = { path = "consensus/state_processing" }
|
||||
@@ -253,12 +230,7 @@ sysinfo = "0.26"
|
||||
system_health = { path = "common/system_health" }
|
||||
task_executor = { path = "common/task_executor" }
|
||||
tempfile = "3"
|
||||
tokio = { version = "1", features = [
|
||||
"rt-multi-thread",
|
||||
"sync",
|
||||
"signal",
|
||||
"macros",
|
||||
] }
|
||||
tokio = { version = "1", features = ["rt-multi-thread", "sync", "signal", "macros"] }
|
||||
tokio-stream = { version = "0.1", features = ["sync"] }
|
||||
tokio-util = { version = "0.7", features = ["codec", "compat", "time"] }
|
||||
tracing = "0.1.40"
|
||||
@@ -271,9 +243,9 @@ tracing_samplers = { path = "common/tracing_samplers" }
|
||||
tree_hash = "0.12.0"
|
||||
tree_hash_derive = "0.12.0"
|
||||
typenum = "1"
|
||||
types = { path = "consensus/types" }
|
||||
types = { path = "consensus/types", features = ["saturating-arith"] }
|
||||
url = "2"
|
||||
uuid = { version = "0.8", features = ["serde", "v4"] }
|
||||
uuid = { version = "1", features = ["serde", "v4"] }
|
||||
validator_client = { path = "validator_client" }
|
||||
validator_dir = { path = "common/validator_dir" }
|
||||
validator_http_api = { path = "validator_client/http_api" }
|
||||
@@ -286,6 +258,7 @@ warp = { version = "0.3.7", default-features = false, features = ["tls"] }
|
||||
warp_utils = { path = "common/warp_utils" }
|
||||
workspace_members = { path = "common/workspace_members" }
|
||||
xdelta3 = { git = "https://github.com/sigp/xdelta3-rs", rev = "fe3906605c87b6c0515bd7c8fc671f47875e3ccc" }
|
||||
yaml_serde = "0.10"
|
||||
zeroize = { version = "1", features = ["zeroize_derive", "serde"] }
|
||||
zip = { version = "6.0", default-features = false, features = ["deflate"] }
|
||||
zstd = "0.13"
|
||||
@@ -301,7 +274,7 @@ inherits = "release"
|
||||
debug = true
|
||||
|
||||
[patch.crates-io]
|
||||
quick-protobuf = { git = "https://github.com/sigp/quick-protobuf.git", rev = "681f413312404ab6e51f0b46f39b0075c6f4ebfd" }
|
||||
quick-protobuf = { git = "https://github.com/sigp/quick-protobuf.git", rev = "87c4ccb9bb2af494de375f5f6c62850badd26304" }
|
||||
# FIXME(sproul): REMOVE patch
|
||||
milhouse = { git = "https://github.com/sigp/milhouse", branch = "progressive-list" }
|
||||
ethereum_ssz = { git = "https://github.com/sigp/ethereum_ssz", branch = "progressive" }
|
||||
|
||||
Reference in New Issue
Block a user