1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 13:29:24 +00:00
actix-web/src/lib.rs

97 lines
2 KiB
Rust
Raw Normal View History

2017-10-23 04:40:41 +00:00
//! Web framework for [Actix](https://github.com/actix/actix)
2017-10-07 04:48:14 +00:00
#[macro_use]
extern crate log;
extern crate time;
extern crate bytes;
2017-10-08 04:48:00 +00:00
extern crate sha1;
2017-10-17 02:21:24 +00:00
extern crate regex;
2017-10-07 04:48:14 +00:00
#[macro_use]
extern crate futures;
extern crate tokio_io;
2017-10-29 13:05:31 +00:00
extern crate tokio_core;
2017-10-08 21:56:51 +00:00
2017-11-16 06:06:28 +00:00
extern crate failure;
#[macro_use] extern crate failure_derive;
extern crate cookie;
2017-10-07 04:48:14 +00:00
extern crate http;
extern crate httparse;
extern crate http_range;
2017-10-19 06:43:50 +00:00
extern crate mime;
2017-10-16 08:19:23 +00:00
extern crate mime_guess;
extern crate url;
2017-11-10 21:26:12 +00:00
extern crate libc;
2017-11-16 06:06:28 +00:00
extern crate serde;
extern crate serde_json;
2017-11-06 09:24:49 +00:00
extern crate flate2;
extern crate brotli2;
extern crate percent_encoding;
2017-10-07 04:48:14 +00:00
extern crate actix;
extern crate h2 as http2;
2017-10-07 04:48:14 +00:00
2017-11-16 06:09:37 +00:00
// extern crate redis_async;
2017-11-16 06:06:28 +00:00
#[cfg(feature="tls")]
extern crate native_tls;
#[cfg(feature="tls")]
extern crate tokio_tls;
#[cfg(feature="openssl")]
extern crate openssl;
#[cfg(feature="openssl")]
extern crate tokio_openssl;
2017-10-07 04:48:14 +00:00
mod application;
2017-10-24 06:25:32 +00:00
mod body;
2017-10-07 04:48:14 +00:00
mod context;
mod date;
2017-11-07 00:23:58 +00:00
mod encoding;
mod httprequest;
2017-10-15 16:33:17 +00:00
mod httpresponse;
2017-10-09 03:16:48 +00:00
mod payload;
2017-10-07 04:48:14 +00:00
mod resource;
2017-10-17 02:21:24 +00:00
mod recognizer;
2017-10-07 04:48:14 +00:00
mod route;
2017-10-17 02:21:24 +00:00
mod task;
mod staticfiles;
2017-10-07 04:48:14 +00:00
mod server;
mod channel;
2017-10-08 04:48:00 +00:00
mod wsframe;
mod wsproto;
2017-11-02 19:54:09 +00:00
mod h1;
mod h2;
mod h1writer;
2017-11-04 16:07:44 +00:00
mod h2writer;
2017-10-08 04:48:00 +00:00
2017-10-10 06:07:32 +00:00
pub mod ws;
pub mod dev;
2017-11-16 06:06:28 +00:00
pub mod error;
2017-10-07 04:48:14 +00:00
pub mod httpcodes;
2017-10-19 06:43:50 +00:00
pub mod multipart;
2017-11-10 06:08:54 +00:00
pub mod middlewares;
2017-11-07 00:23:58 +00:00
pub use encoding::ContentEncoding;
2017-11-10 21:42:32 +00:00
pub use body::{Body, Binary};
2017-11-10 06:08:54 +00:00
pub use application::{Application, ApplicationBuilder};
pub use httprequest::{HttpRequest, UrlEncoded};
2017-10-24 06:25:32 +00:00
pub use httpresponse::{HttpResponse, HttpResponseBuilder};
2017-11-16 06:06:28 +00:00
pub use payload::{Payload, PayloadItem};
2017-11-03 20:35:34 +00:00
pub use route::{Frame, Route, RouteFactory, RouteHandler, RouteResult};
2017-11-18 16:50:07 +00:00
pub use resource::{Reply, Resource};
2017-10-17 02:21:24 +00:00
pub use recognizer::{Params, RouteRecognizer};
2017-10-07 04:48:14 +00:00
pub use server::HttpServer;
pub use context::HttpContext;
pub use channel::HttpChannel;
pub use staticfiles::StaticFiles;
2017-10-14 17:40:58 +00:00
// re-exports
pub use http::{Method, StatusCode, Version};
2017-10-14 17:40:58 +00:00
pub use cookie::{Cookie, CookieBuilder};
2017-11-16 06:06:28 +00:00
pub use http_range::HttpRange;
#[cfg(feature="tls")]
pub use native_tls::Pkcs12;
#[cfg(feature="openssl")]
pub use openssl::pkcs12::Pkcs12;