2020-09-29 03:46:54 +00:00
|
|
|
[package]
|
|
|
|
name = "warp_utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
2023-09-22 04:30:56 +00:00
|
|
|
edition = { workspace = true }
|
2020-09-29 03:46:54 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-22 04:30:56 +00:00
|
|
|
warp = { workspace = true }
|
|
|
|
eth2 = { workspace = true }
|
|
|
|
types = { workspace = true }
|
|
|
|
beacon_chain = { workspace = true }
|
|
|
|
state_processing = { workspace = true }
|
|
|
|
safe_arith = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
2024-01-31 01:11:54 +00:00
|
|
|
serde_json = { workspace = true }
|
2023-09-22 04:30:56 +00:00
|
|
|
tokio = { workspace = true }
|
2020-10-22 04:47:27 +00:00
|
|
|
headers = "0.3.2"
|
2023-09-22 04:30:56 +00:00
|
|
|
lighthouse_metrics = { workspace = true }
|
|
|
|
lazy_static = { workspace = true }
|
2022-01-20 09:14:19 +00:00
|
|
|
serde_array_query = "0.1.0"
|
2024-01-31 01:11:54 +00:00
|
|
|
bytes = { workspace = true }
|