redirectionio 2.5.2

Redirection IO Library to handle matching rule, redirect and filtering headers and body.
/*!
This crate provides a library for matching, handling and logging http requests with redirectionio
rule format.
*/

#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate libc;

pub mod action;
pub mod api;
pub mod filter;
pub mod html;
pub mod http;
pub mod regex_radix_tree;
pub mod router;

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

#[cfg(target_arch = "wasm32")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;