1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-25 14:46:04 +02:00

port Extensions from http crate #315

This commit is contained in:
Nikolay Kim
2018-06-17 03:22:08 +06:00
parent 33050f55a3
commit 879b2b5bde
4 changed files with 96 additions and 1 deletions

View File

@@ -97,6 +97,7 @@ extern crate time;
extern crate bitflags;
#[macro_use]
extern crate failure;
extern crate fnv;
#[macro_use]
extern crate lazy_static;
#[macro_use]
@@ -155,6 +156,7 @@ mod application;
mod body;
mod context;
mod de;
mod extensions;
mod extractor;
mod handler;
mod header;
@@ -188,6 +190,7 @@ pub use application::App;
pub use body::{Binary, Body};
pub use context::HttpContext;
pub use error::{Error, ResponseError, Result};
pub use extensions::Extensions;
pub use extractor::{Form, Path, Query};
pub use handler::{
AsyncResponder, Either, FromRequest, FutureResponse, Responder, State,