mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-10 04:01:51 +00:00
* Fix lcli * Port timer to stable futures * Fix timer * Port websocket_server to stable futures * Port notifier to stable futures * Add TODOS * Port remote_beacon_node to stable futures
18 lines
429 B
TOML
18 lines
429 B
TOML
[package]
|
|
name = "websocket_server"
|
|
version = "0.2.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3"
|
|
serde = "1.0.102"
|
|
serde_derive = "1.0.102"
|
|
serde_json = "1.0.41"
|
|
slog = "2.5.2"
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
types = { path = "../../eth2/types" }
|
|
ws = "0.9.1"
|