1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 00:50:20 +02:00

initial implementation

This commit is contained in:
Nikolay Kim
2017-10-06 21:48:14 -07:00
parent b361d68e0b
commit 0b5f0c4f22
17 changed files with 2451 additions and 2 deletions

View File

@@ -1 +1,39 @@
//! Actix http framework
#[macro_use]
extern crate log;
extern crate time;
extern crate bytes;
#[macro_use]
extern crate futures;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_proto;
extern crate hyper;
extern crate http;
extern crate httparse;
extern crate route_recognizer;
extern crate actix;
mod application;
mod context;
mod error;
mod date;
mod decode;
mod httpmessage;
mod resource;
mod route;
mod router;
mod task;
mod reader;
mod server;
pub mod httpcodes;
pub use application::HttpApplication;
pub use route::{Route, RouteFactory, Payload, PayloadItem, Frame};
pub use resource::{HttpResource, HttpResponse};
pub use server::HttpServer;
pub use context::HttpContext;
pub use router::RoutingMap;
pub use route_recognizer::Params;
pub use httpmessage::{HttpRequest, HttpMessage, IntoHttpMessage};