mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2024-12-25 13:07:18 +00:00
647034b637
* Start adding optimization * Add temp fix for protobuf issue * Fix compile errors * Fix protobuf import
24 lines
681 B
TOML
24 lines
681 B
TOML
[package]
|
|
name = "lighthouse"
|
|
version = "0.1.0"
|
|
authors = ["Sigma Prime <contact@sigmaprime.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
beacon_node = { "path" = "../beacon_node" }
|
|
tokio = "0.1.22"
|
|
slog = { version = "^2.2.3" , features = ["max_level_trace"] }
|
|
sloggers = "0.3.4"
|
|
types = { "path" = "../eth2/types" }
|
|
clap = "2.32.0"
|
|
env_logger = "0.6.1"
|
|
logging = { path = "../eth2/utils/logging" }
|
|
slog-term = "^2.4.0"
|
|
slog-async = "^2.3.0"
|
|
environment = { path = "./environment" }
|
|
futures = "0.1.25"
|
|
validator_client = { "path" = "../validator_client" }
|
|
account_manager = { "path" = "../account_manager" }
|
|
# TODO: remove this once @agemanning adds a permanent fix.
|
|
protobuf = "=2.8.1"
|