mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-02 16:21:42 +00:00
Update `reqwest` to 0.12 so we only depend on a single version. This should slightly improve compile times and reduce binary bloat. Co-Authored-By: Michael Sproul <michael@sigmaprime.io>
11 lines
273 B
Rust
11 lines
273 B
Rust
//! This crate contains functions that are common across multiple `warp` HTTP servers in the
|
|
//! Lighthouse project. E.g., the `http_api` and `http_metrics` crates.
|
|
|
|
pub mod cors;
|
|
pub mod json;
|
|
pub mod query;
|
|
pub mod reject;
|
|
pub mod status_code;
|
|
pub mod task;
|
|
pub mod uor;
|