mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-06 18:21:45 +00:00
* Add transparent support * Add `Config` struct * Deprecate `enum_behaviour` * Partially remove enum_behaviour from project * Revert "Partially remove enum_behaviour from project" This reverts commit46ffb7fe77. * Revert "Deprecate `enum_behaviour`" This reverts commit89b64a6f53. * Add `struct_behaviour` * Tidy * Move tests into `ssz_derive` * Bump ssz derive * Fix comment * newtype transaparent ssz * use ssz transparent and create macros for per fork implementations * use superstruct map macros Co-authored-by: Paul Hauner <paul@paulhauner.com>
21 lines
672 B
TOML
21 lines
672 B
TOML
[package]
|
|
name = "fork_choice"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
types = { path = "../types" }
|
|
state_processing = { path = "../state_processing" }
|
|
proto_array = { path = "../proto_array" }
|
|
eth2_ssz = "0.4.1"
|
|
eth2_ssz_derive = "0.3.1"
|
|
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_trace"] }
|
|
|
|
[dev-dependencies]
|
|
beacon_chain = { path = "../../beacon_node/beacon_chain" }
|
|
store = { path = "../../beacon_node/store" }
|
|
tokio = { version = "1.14.0", features = ["rt-multi-thread"] }
|