rama_http_backend/lib.rs
1//! Default rama http backend, permanently forked from Hyper et-al.
2//!
3//! Crate used by the end-user `rama` crate.
4//!
5//! Learn more about `rama`:
6//!
7//! - Github: <https://github.com/plabayo/rama>
8//! - Book: <https://ramaproxy.org/book/>
9
10#![doc(
11 html_favicon_url = "https://raw.githubusercontent.com/plabayo/rama/main/docs/img/rama_logo.svg"
12)]
13#![doc(
14 html_logo_url = "https://raw.githubusercontent.com/plabayo/rama/main/docs/img/rama_logo.svg"
15)]
16#![cfg_attr(docsrs, feature(doc_cfg))]
17#![cfg_attr(test, allow(clippy::float_cmp))]
18
19pub mod client;
20pub mod proxy;
21pub mod server;
22
23#[cfg(test)]
24mod tests;