27 lines
743 B
TOML
27 lines
743 B
TOML
[package]
|
|
name = "rest_api"
|
|
version = "0.1.0"
|
|
authors = ["Luke Anderson <luke@lukeanderson.com.au>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[dependencies]
|
|
beacon_chain = { path = "../beacon_chain" }
|
|
store = { path = "../store" }
|
|
version = { path = "../version" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "^1.0"
|
|
slog = "^2.2.3"
|
|
slog-term = "^2.4.0"
|
|
slog-async = "^2.3.0"
|
|
state_processing = { path = "../../eth2/state_processing" }
|
|
types = { path = "../../eth2/types" }
|
|
clap = "2.32.0"
|
|
http = "^0.1.17"
|
|
prometheus = { version = "^0.6", features = ["process"] }
|
|
hyper = "0.12.32"
|
|
futures = "0.1"
|
|
exit-future = "0.1.3"
|
|
tokio = "0.1.17"
|
|
url = "2.0"
|