proxy_protocol_codec/lib.rs
1//! PROXY Protocol codec.
2//!
3//! See [HAProxy](https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt) for the protocol specification.
4
5#![no_std]
6#![cfg_attr(feature = "feat-nightly", feature(cold_path))]
7
8#[cfg(feature = "feat-codec-v1")]
9pub mod v1;
10#[cfg(feature = "feat-codec-v2")]
11pub mod v2;
12
13#[cfg(any(test, feature = "feat-alloc"))]
14extern crate alloc;
15
16#[cfg(any(test, feature = "feat-std"))]
17extern crate std;