mirror of
https://github.com/sigp/lighthouse.git
synced 2026-06-30 19:34:37 +00:00
- Bump `warp` to 0.4. This unifies `warp` and `axum` onto the same `http`, `hyper`, `h2`, `rustls`, etc versions. - Create `axum_utils` which contain common functions and types - Begins migration of all HTTP API servers from warp to axum Co-Authored-By: Mac L <mjladson@pm.me>
20 lines
555 B
TOML
20 lines
555 B
TOML
[package]
|
|
name = "warp_utils"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = { workspace = true }
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = { workspace = true }
|
|
eth2 = { workspace = true }
|
|
headers = "0.4"
|
|
reqwest = { workspace = true }
|
|
safe_arith = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_array_query = "0.1.0"
|
|
serde_json = { workspace = true }
|
|
tokio = { workspace = true }
|
|
types = { workspace = true }
|
|
warp = { workspace = true }
|