mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2024-12-22 03:30:38 +00:00
65c4ff0775
* remove exit-future usage, as it is non maintained, and replace with async-channel which is already in the repo. * Merge branch 'unstable' of https://github.com/sigp/lighthouse into remove-exit-future * Merge branch 'unstable' of https://github.com/sigp/lighthouse into remove-exit-future
25 lines
708 B
TOML
25 lines
708 B
TOML
[package]
|
|
name = "environment"
|
|
version = "0.1.2"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
async-channel = { workspace = true }
|
|
tokio = { workspace = true }
|
|
slog = { workspace = true }
|
|
sloggers = { workspace = true }
|
|
types = { workspace = true }
|
|
eth2_config = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
eth2_network_config = { workspace = true }
|
|
logging = { workspace = true }
|
|
slog-term = { workspace = true }
|
|
slog-async = { workspace = true }
|
|
futures = { workspace = true }
|
|
slog-json = "2.3.0"
|
|
serde = { workspace = true }
|
|
|
|
[target.'cfg(not(target_family = "unix"))'.dependencies]
|
|
ctrlc = { version = "3.1.6", features = ["termination"] }
|