82753f842d
## Issue Addressed Closes #1264 ## Proposed Changes * Milagro BLS: tweak the feature flags so that Milagro doesn't get compiled if we're using BLST. Profiling showed that it was consuming about 1 minute of CPU time out of 60 minutes of CPU time (real time ~15 mins). A 1.6% saving. * Reduce monomorphization: compiling for 3 different `EthSpec` types causes a heck of a lot of generic functions to be instantiated (monomorphized). Removing 2 of 3 cuts the LLVM+linking step from around 250 seconds to 180 seconds, a saving of 70 seconds (real time!). This applies only to `make` and not the CI build, because we test with the minimal spec on CI. * Update `web3` crate to v0.13. This is perhaps the most controversial change, because it requires axing some deposit contract tools from `lcli`. I suspect these tools weren't used much anyway, and could be maintained separately, but I'm also happy to revert this change. However, it does save us a lot of compile time. With #1839, we now have 3 versions of Tokio (and all of Tokio's deps). This change brings us down to 2 versions, but 1 should be achievable once web3 (and reqwest) move to Tokio 0.3. * Remove `lcli` from the Docker image. It's a dev tool and can be built from the repo if required.
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "eth1"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
[dev-dependencies]
|
|
eth1_test_rig = { path = "../../testing/eth1_test_rig" }
|
|
toml = "0.5.6"
|
|
web3 = "0.13.0"
|
|
sloggers = "1.0.1"
|
|
environment = { path = "../../lighthouse/environment" }
|
|
tokio-compat-02 = "0.1"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.10.8", features = ["native-tls-vendored"] }
|
|
futures = "0.3.7"
|
|
serde_json = "1.0.58"
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
hex = "0.4.2"
|
|
types = { path = "../../consensus/types"}
|
|
merkle_proof = { path = "../../consensus/merkle_proof"}
|
|
eth2_ssz = "0.1.2"
|
|
eth2_ssz_derive = "0.1.0"
|
|
tree_hash = "0.1.1"
|
|
eth2_hashing = "0.1.0"
|
|
parking_lot = "0.11.0"
|
|
slog = "2.5.2"
|
|
tokio = { version = "0.3.2", features = ["full"] }
|
|
state_processing = { path = "../../consensus/state_processing" }
|
|
libflate = "1.0.2"
|
|
lighthouse_metrics = { path = "../../common/lighthouse_metrics"}
|
|
lazy_static = "1.4.0"
|
|
task_executor = { path = "../../common/task_executor" }
|
|
eth2 = { path = "../../common/eth2" }
|
|
fallback = { path = "../../common/fallback" }
|