e8fba8d3a7
## Issue Addressed Addresses the recent CI failures caused by caching `blst` for the wrong CPU type. ## Proposed Changes - Use `FEATURES: jemalloc,portable` when building Lighthouse & `lcli` in tests - Add a new `TEST_FEATURES` and set to `portable` for all CI test jobs. - Updated Makefiles to read the `TEST_FEATURES` environment variable, and default to none.
29 lines
787 B
TOML
29 lines
787 B
TOML
[package]
|
|
name = "operation_pool"
|
|
version = "0.2.0"
|
|
authors = ["Michael Sproul <michael@sigmaprime.io>"]
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
derivative = { workspace = true }
|
|
itertools = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
lighthouse_metrics = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
types = { workspace = true }
|
|
state_processing = { workspace = true }
|
|
ethereum_ssz = { workspace = true }
|
|
ethereum_ssz_derive = { workspace = true }
|
|
rayon = { workspace = true }
|
|
serde = { workspace = true }
|
|
store = { workspace = true }
|
|
bitvec = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
beacon_chain = { workspace = true }
|
|
tokio = { workspace = true }
|
|
maplit = { workspace = true }
|
|
|
|
[features]
|
|
portable = ["beacon_chain/portable"] |