2020-09-29 03:46:54 +00:00
|
|
|
[package]
|
|
|
|
name = "warp_utils"
|
|
|
|
version = "0.1.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]
|
2021-02-18 22:33:12 +00:00
|
|
|
warp = { git = "https://github.com/paulhauner/warp ", branch = "cors-wildcard" }
|
2020-09-29 03:46:54 +00:00
|
|
|
eth2 = { path = "../eth2" }
|
|
|
|
types = { path = "../../consensus/types" }
|
|
|
|
beacon_chain = { path = "../../beacon_node/beacon_chain" }
|
|
|
|
state_processing = { path = "../../consensus/state_processing" }
|
|
|
|
safe_arith = { path = "../../consensus/safe_arith" }
|
2020-10-05 08:22:19 +00:00
|
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
2021-02-10 23:29:49 +00:00
|
|
|
tokio = { version = "1.1.0", features = ["sync"] }
|
2020-10-22 04:47:27 +00:00
|
|
|
headers = "0.3.2"
|
2020-11-26 01:10:51 +00:00
|
|
|
lighthouse_metrics = { path = "../lighthouse_metrics" }
|
|
|
|
lazy_static = "1.4.0"
|