mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2024-12-22 11:41:28 +00:00
5e1f8a8480
## Proposed Changes Lots of lint updates related to `flat_map`, `unwrap_or_else` and string patterns. I did a little more creative refactoring in the op pool, but otherwise followed Clippy's suggestions. ## Additional Info We need this PR to unblock CI.
24 lines
815 B
TOML
24 lines
815 B
TOML
[package]
|
|
name = "environment"
|
|
version = "0.1.2"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.14.0", features = ["macros", "rt", "rt-multi-thread", "signal" ] }
|
|
slog = { version = "2.5.2", features = ["max_level_trace"] }
|
|
sloggers = { version = "2.1.1", features = ["json"] }
|
|
types = { path = "../../consensus/types" }
|
|
eth2_config = { path = "../../common/eth2_config" }
|
|
task_executor = { path = "../../common/task_executor" }
|
|
eth2_network_config = { path = "../../common/eth2_network_config" }
|
|
logging = { path = "../../common/logging" }
|
|
slog-term = "2.6.0"
|
|
slog-async = "2.5.0"
|
|
futures = "0.3.7"
|
|
slog-json = "2.3.0"
|
|
exit-future = "0.2.0"
|
|
|
|
[target.'cfg(not(target_family = "unix"))'.dependencies]
|
|
ctrlc = { version = "3.1.6", features = ["termination"] }
|