redirectionio 2.5.2

Redirection IO Library to handle matching rule, redirect and filtering headers and body.
1
2
3
4
5
6
7
8
9
10
11
12
13
mod header;
mod query;
mod request;
mod trusted_proxies;

#[cfg(not(target_arch = "wasm32"))]
pub mod ffi;

pub use header::Header;
pub use query::sanitize_url;
pub use query::PathAndQueryWithSkipped;
pub use request::Request;
pub use trusted_proxies::TrustedProxies;