manas_http 0.1.1

This crate provides extended functionality for handling http semantics, that integrates into [`hyper`](https://docs.rs/hyper/latest/hyper/index.html) ecosystem.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! I define few implementations of [`HttpService`](super::HttpService).
//!

// TODO implement layers.

mod normal_validate_target_uri;
mod overriding;
mod reconstruct_target_uri;
mod route_by_method;

pub use normal_validate_target_uri::NormalValidateTargetUri;
pub use overriding::OverridingHttpService;
pub use reconstruct_target_uri::ReconstructTargetUri;
pub use route_by_method::RouteByMethod;