mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
Re-export `context_deserialize_derive` inside of `context_deserialize` so they are both available from the same interface, which matches how popular crates (like `serde`) handle this. This also nests both crates inside a new `context_deserialize` directory which will make it easier to eventually spin out into a different repo (if/when) we decide to do that (plus I prefer it aesthetically).
42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "ef_tests"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
|
|
[features]
|
|
# `ef_tests` feature must be enabled to actually run the tests
|
|
ef_tests = []
|
|
disable_rayon = []
|
|
fake_crypto = ["bls/fake_crypto"]
|
|
portable = ["beacon_chain/portable"]
|
|
|
|
[dependencies]
|
|
alloy-primitives = { workspace = true }
|
|
beacon_chain = { workspace = true }
|
|
bls = { workspace = true }
|
|
compare_fields = { workspace = true }
|
|
compare_fields_derive = { workspace = true }
|
|
context_deserialize = { workspace = true }
|
|
derivative = { workspace = true }
|
|
eth2_network_config = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
ethereum_ssz_derive = { workspace = true }
|
|
execution_layer = { workspace = true }
|
|
fork_choice = { workspace = true }
|
|
fs2 = { workspace = true }
|
|
hex = { workspace = true }
|
|
kzg = { workspace = true }
|
|
logging = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_repr = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
snap = { workspace = true }
|
|
state_processing = { workspace = true }
|
|
swap_or_not_shuffle = { workspace = true }
|
|
tree_hash = { workspace = true }
|
|
tree_hash_derive = { workspace = true }
|
|
types = { workspace = true }
|