rama_haproxy/
lib.rs

1//! rama HaProxy support
2//!
3//! <https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt>
4//!
5//! Crate used by the end-user `rama` crate and `rama` crate authors alike.
6//!
7//! Learn more about `rama`:
8//!
9//! - Github: <https://github.com/plabayo/rama>
10//! - Book: <https://ramaproxy.org/book/>
11
12#![doc(
13    html_favicon_url = "https://raw.githubusercontent.com/plabayo/rama/main/docs/img/old_logo.png"
14)]
15#![doc(html_logo_url = "https://raw.githubusercontent.com/plabayo/rama/main/docs/img/old_logo.png")]
16#![cfg_attr(docsrs, feature(doc_cfg))]
17#![cfg_attr(test, allow(clippy::float_cmp))]
18#![cfg_attr(
19    not(test),
20    warn(clippy::print_stdout, clippy::dbg_macro),
21    deny(clippy::unwrap_used, clippy::expect_used)
22)]
23
24pub mod client;
25pub mod protocol;
26pub mod server;