axol 0.2.0

Axol Web Framework
mod form;
pub use form::*;

mod json;
pub use json::*;

#[cfg(feature = "grpc")]
pub mod grpc;

#[cfg(feature = "multipart")]
mod multipart;
#[cfg(feature = "multipart")]
pub use multipart::*;

mod typed;
pub use typed::*;

mod extension;
pub use extension::*;

#[cfg(feature = "cookie")]
mod cookie_jar;
#[cfg(feature = "cookie")]
pub use cookie_jar::*;