a3a7f39b0d
Add pools supporting sync committees: - naive sync aggregation pool - observed sync contributions pool - observed sync contributors pool - observed sync aggregators pool Add SSZ types and tests related to sync committee signatures. Co-authored-by: Michael Sproul <michael@sigmaprime.io> Co-authored-by: realbigsean <seananderson33@gmail.com>
28 lines
714 B
TOML
28 lines
714 B
TOML
[package]
|
|
name = "operation_pool"
|
|
version = "0.2.0"
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derivative = "2.1.1"
|
|
itertools = "0.10.0"
|
|
int_to_bytes = { path = "../../consensus/int_to_bytes" }
|
|
lazy_static = "1.4.0"
|
|
lighthouse_metrics = { path = "../../common/lighthouse_metrics" }
|
|
parking_lot = "0.11.0"
|
|
types = { path = "../../consensus/types" }
|
|
state_processing = { path = "../../consensus/state_processing" }
|
|
eth2_ssz = "0.1.2"
|
|
eth2_ssz_derive = "0.1.0"
|
|
rayon = "1.5.0"
|
|
serde = "1.0.116"
|
|
serde_derive = "1.0.116"
|
|
store = { path = "../store" }
|
|
superstruct = "0.2.0"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|
|
lazy_static = "1.4.0"
|
|
beacon_chain = { path = "../beacon_chain" }
|