90cef1db86
## Proposed Changes Two tiny updates to satisfy Clippy 1.68 Plus refactoring of the `http_api` into less complex types so the compiler can chew and digest them more easily. Co-authored-by: Michael Sproul <michael@sigmaprime.io>
10 lines
255 B
Rust
10 lines
255 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 metrics;
|
|
pub mod query;
|
|
pub mod reject;
|
|
pub mod task;
|
|
pub mod uor;
|