mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 09:16:00 +00:00
Add missing crates to cargo workspace (#6774)
* Add the remaining crates to cargo workspace * Merge branch 'unstable' into add-remaining-crates-workspace
This commit is contained in:
@@ -9,11 +9,13 @@ members = [
|
|||||||
"beacon_node/client",
|
"beacon_node/client",
|
||||||
"beacon_node/eth1",
|
"beacon_node/eth1",
|
||||||
"beacon_node/execution_layer",
|
"beacon_node/execution_layer",
|
||||||
|
"beacon_node/genesis",
|
||||||
"beacon_node/http_api",
|
"beacon_node/http_api",
|
||||||
"beacon_node/http_metrics",
|
"beacon_node/http_metrics",
|
||||||
"beacon_node/lighthouse_network",
|
"beacon_node/lighthouse_network",
|
||||||
"beacon_node/lighthouse_network/gossipsub",
|
"beacon_node/lighthouse_network/gossipsub",
|
||||||
"beacon_node/network",
|
"beacon_node/network",
|
||||||
|
"beacon_node/operation_pool",
|
||||||
"beacon_node/store",
|
"beacon_node/store",
|
||||||
"beacon_node/timer",
|
"beacon_node/timer",
|
||||||
|
|
||||||
@@ -30,6 +32,7 @@ members = [
|
|||||||
"common/eth2_interop_keypairs",
|
"common/eth2_interop_keypairs",
|
||||||
"common/eth2_network_config",
|
"common/eth2_network_config",
|
||||||
"common/eth2_wallet_manager",
|
"common/eth2_wallet_manager",
|
||||||
|
"common/filesystem",
|
||||||
"common/lighthouse_version",
|
"common/lighthouse_version",
|
||||||
"common/lockfile",
|
"common/lockfile",
|
||||||
"common/logging",
|
"common/logging",
|
||||||
@@ -48,14 +51,16 @@ members = [
|
|||||||
"common/unused_port",
|
"common/unused_port",
|
||||||
"common/validator_dir",
|
"common/validator_dir",
|
||||||
"common/warp_utils",
|
"common/warp_utils",
|
||||||
|
|
||||||
"consensus/fixed_bytes",
|
"consensus/fixed_bytes",
|
||||||
"consensus/fork_choice",
|
"consensus/fork_choice",
|
||||||
|
|
||||||
"consensus/int_to_bytes",
|
"consensus/int_to_bytes",
|
||||||
|
"consensus/merkle_proof",
|
||||||
"consensus/proto_array",
|
"consensus/proto_array",
|
||||||
"consensus/safe_arith",
|
"consensus/safe_arith",
|
||||||
"consensus/state_processing",
|
"consensus/state_processing",
|
||||||
"consensus/swap_or_not_shuffle",
|
"consensus/swap_or_not_shuffle",
|
||||||
|
"consensus/types",
|
||||||
|
|
||||||
"crypto/bls",
|
"crypto/bls",
|
||||||
"crypto/eth2_key_derivation",
|
"crypto/eth2_key_derivation",
|
||||||
|
|||||||
@@ -9,16 +9,16 @@ eth1_test_rig = { workspace = true }
|
|||||||
sensitive_url = { workspace = true }
|
sensitive_url = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = { workspace = true }
|
|
||||||
types = { workspace = true }
|
|
||||||
environment = { workspace = true }
|
environment = { workspace = true }
|
||||||
eth1 = { workspace = true }
|
eth1 = { workspace = true }
|
||||||
rayon = { workspace = true }
|
|
||||||
state_processing = { workspace = true }
|
|
||||||
merkle_proof = { workspace = true }
|
|
||||||
ethereum_ssz = { workspace = true }
|
|
||||||
ethereum_hashing = { workspace = true }
|
ethereum_hashing = { workspace = true }
|
||||||
tree_hash = { workspace = true }
|
ethereum_ssz = { workspace = true }
|
||||||
tokio = { workspace = true }
|
futures = { workspace = true }
|
||||||
slog = { workspace = true }
|
|
||||||
int_to_bytes = { workspace = true }
|
int_to_bytes = { workspace = true }
|
||||||
|
merkle_proof = { workspace = true }
|
||||||
|
rayon = { workspace = true }
|
||||||
|
slog = { workspace = true }
|
||||||
|
state_processing = { workspace = true }
|
||||||
|
tokio = { workspace = true }
|
||||||
|
tree_hash = { workspace = true }
|
||||||
|
types = { workspace = true }
|
||||||
|
|||||||
@@ -5,24 +5,24 @@ authors = ["Michael Sproul <michael@sigmaprime.io>"]
|
|||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
bitvec = { workspace = true }
|
||||||
derivative = { workspace = true }
|
derivative = { workspace = true }
|
||||||
|
ethereum_ssz = { workspace = true }
|
||||||
|
ethereum_ssz_derive = { workspace = true }
|
||||||
itertools = { workspace = true }
|
itertools = { workspace = true }
|
||||||
metrics = { workspace = true }
|
metrics = { workspace = true }
|
||||||
parking_lot = { workspace = true }
|
parking_lot = { workspace = true }
|
||||||
types = { workspace = true }
|
rand = { workspace = true }
|
||||||
state_processing = { workspace = true }
|
|
||||||
ethereum_ssz = { workspace = true }
|
|
||||||
ethereum_ssz_derive = { workspace = true }
|
|
||||||
rayon = { workspace = true }
|
rayon = { workspace = true }
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
|
state_processing = { workspace = true }
|
||||||
store = { workspace = true }
|
store = { workspace = true }
|
||||||
bitvec = { workspace = true }
|
types = { workspace = true }
|
||||||
rand = { workspace = true }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
beacon_chain = { workspace = true }
|
beacon_chain = { workspace = true }
|
||||||
tokio = { workspace = true }
|
|
||||||
maplit = { workspace = true }
|
maplit = { workspace = true }
|
||||||
|
tokio = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
portable = ["beacon_chain/portable"]
|
portable = ["beacon_chain/portable"]
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ name = "filesystem"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Mark Mackey <mark@sigmaprime.io>"]
|
authors = ["Mark Mackey <mark@sigmaprime.io>"]
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ edition = { workspace = true }
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
alloy-primitives = { workspace = true }
|
alloy-primitives = { workspace = true }
|
||||||
ethereum_hashing = { workspace = true }
|
ethereum_hashing = { workspace = true }
|
||||||
safe_arith = { workspace = true }
|
|
||||||
fixed_bytes = { workspace = true }
|
fixed_bytes = { workspace = true }
|
||||||
|
safe_arith = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
quickcheck = { workspace = true }
|
quickcheck = { workspace = true }
|
||||||
|
|||||||
@@ -10,56 +10,56 @@ harness = false
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
alloy-primitives = { workspace = true }
|
alloy-primitives = { workspace = true }
|
||||||
merkle_proof = { workspace = true }
|
alloy-rlp = { version = "0.3.4", features = ["derive"] }
|
||||||
bls = { workspace = true, features = ["arbitrary"] }
|
|
||||||
kzg = { workspace = true }
|
|
||||||
compare_fields = { workspace = true }
|
|
||||||
compare_fields_derive = { workspace = true }
|
|
||||||
eth2_interop_keypairs = { path = "../../common/eth2_interop_keypairs" }
|
|
||||||
ethereum_hashing = { workspace = true }
|
|
||||||
hex = { workspace = true }
|
|
||||||
int_to_bytes = { workspace = true }
|
|
||||||
log = { workspace = true }
|
|
||||||
rayon = { workspace = true }
|
|
||||||
rand = { workspace = true }
|
|
||||||
safe_arith = { workspace = true }
|
|
||||||
serde = { workspace = true, features = ["rc"] }
|
|
||||||
slog = { workspace = true }
|
|
||||||
ethereum_ssz = { workspace = true, features = ["arbitrary"] }
|
|
||||||
ethereum_ssz_derive = { workspace = true }
|
|
||||||
ssz_types = { workspace = true, features = ["arbitrary"] }
|
|
||||||
swap_or_not_shuffle = { workspace = true, features = ["arbitrary"] }
|
|
||||||
test_random_derive = { path = "../../common/test_random_derive" }
|
|
||||||
tree_hash = { workspace = true }
|
|
||||||
tree_hash_derive = { workspace = true }
|
|
||||||
rand_xorshift = "0.3.0"
|
|
||||||
serde_yaml = { workspace = true }
|
|
||||||
tempfile = { workspace = true }
|
|
||||||
derivative = { workspace = true }
|
|
||||||
rusqlite = { workspace = true }
|
|
||||||
# The arbitrary dependency is enabled by default since Capella to avoid complexity introduced by
|
# The arbitrary dependency is enabled by default since Capella to avoid complexity introduced by
|
||||||
# `AbstractExecPayload`
|
# `AbstractExecPayload`
|
||||||
arbitrary = { workspace = true, features = ["derive"] }
|
arbitrary = { workspace = true, features = ["derive"] }
|
||||||
|
bls = { workspace = true, features = ["arbitrary"] }
|
||||||
|
compare_fields = { workspace = true }
|
||||||
|
compare_fields_derive = { workspace = true }
|
||||||
|
derivative = { workspace = true }
|
||||||
|
eth2_interop_keypairs = { path = "../../common/eth2_interop_keypairs" }
|
||||||
|
ethereum_hashing = { workspace = true }
|
||||||
ethereum_serde_utils = { workspace = true }
|
ethereum_serde_utils = { workspace = true }
|
||||||
regex = { workspace = true }
|
ethereum_ssz = { workspace = true, features = ["arbitrary"] }
|
||||||
parking_lot = { workspace = true }
|
ethereum_ssz_derive = { workspace = true }
|
||||||
itertools = { workspace = true }
|
|
||||||
superstruct = { workspace = true }
|
|
||||||
metastruct = "0.1.0"
|
|
||||||
serde_json = { workspace = true }
|
|
||||||
smallvec = { workspace = true }
|
|
||||||
maplit = { workspace = true }
|
|
||||||
alloy-rlp = { version = "0.3.4", features = ["derive"] }
|
|
||||||
milhouse = { workspace = true }
|
|
||||||
rpds = { workspace = true }
|
|
||||||
fixed_bytes = { workspace = true }
|
fixed_bytes = { workspace = true }
|
||||||
|
hex = { workspace = true }
|
||||||
|
int_to_bytes = { workspace = true }
|
||||||
|
itertools = { workspace = true }
|
||||||
|
kzg = { workspace = true }
|
||||||
|
log = { workspace = true }
|
||||||
|
maplit = { workspace = true }
|
||||||
|
merkle_proof = { workspace = true }
|
||||||
|
metastruct = "0.1.0"
|
||||||
|
milhouse = { workspace = true }
|
||||||
|
parking_lot = { workspace = true }
|
||||||
|
rand = { workspace = true }
|
||||||
|
rand_xorshift = "0.3.0"
|
||||||
|
rayon = { workspace = true }
|
||||||
|
regex = { workspace = true }
|
||||||
|
rpds = { workspace = true }
|
||||||
|
rusqlite = { workspace = true }
|
||||||
|
safe_arith = { workspace = true }
|
||||||
|
serde = { workspace = true, features = ["rc"] }
|
||||||
|
serde_json = { workspace = true }
|
||||||
|
serde_yaml = { workspace = true }
|
||||||
|
slog = { workspace = true }
|
||||||
|
smallvec = { workspace = true }
|
||||||
|
ssz_types = { workspace = true, features = ["arbitrary"] }
|
||||||
|
superstruct = { workspace = true }
|
||||||
|
swap_or_not_shuffle = { workspace = true, features = ["arbitrary"] }
|
||||||
|
tempfile = { workspace = true }
|
||||||
|
test_random_derive = { path = "../../common/test_random_derive" }
|
||||||
|
tree_hash = { workspace = true }
|
||||||
|
tree_hash_derive = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = { workspace = true }
|
|
||||||
beacon_chain = { workspace = true }
|
beacon_chain = { workspace = true }
|
||||||
|
criterion = { workspace = true }
|
||||||
|
paste = { workspace = true }
|
||||||
state_processing = { workspace = true }
|
state_processing = { workspace = true }
|
||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
paste = { workspace = true }
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["sqlite", "legacy-arith"]
|
default = ["sqlite", "legacy-arith"]
|
||||||
|
|||||||
Reference in New Issue
Block a user