2018-02-27 12:49:11 -08:00
|
|
|
//! Actix web is a small, pragmatic, extremely fast, web framework for Rust.
|
2017-12-13 23:35:21 -08:00
|
|
|
//!
|
2018-01-09 10:08:06 -08:00
|
|
|
//! ```rust
|
2017-12-13 23:35:21 -08:00
|
|
|
//! use actix_web::*;
|
2018-01-09 10:08:06 -08:00
|
|
|
//! # use std::thread;
|
2017-12-13 23:35:21 -08:00
|
|
|
//!
|
|
|
|
//! fn index(req: HttpRequest) -> String {
|
|
|
|
//! format!("Hello {}!", &req.match_info()["name"])
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! fn main() {
|
2018-01-09 10:08:06 -08:00
|
|
|
//! # thread::spawn(|| {
|
2017-12-13 23:35:21 -08:00
|
|
|
//! HttpServer::new(
|
|
|
|
//! || Application::new()
|
|
|
|
//! .resource("/{name}", |r| r.f(index)))
|
2018-01-09 10:08:06 -08:00
|
|
|
//! .bind("127.0.0.1:8080").unwrap()
|
|
|
|
//! .run();
|
|
|
|
//! # });
|
2017-12-13 23:35:21 -08:00
|
|
|
//! }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! ## Documentation
|
|
|
|
//!
|
|
|
|
//! * [User Guide](http://actix.github.io/actix-web/guide/)
|
2018-01-11 18:49:30 -08:00
|
|
|
//! * [Chat on gitter](https://gitter.im/actix/actix)
|
2018-01-11 18:47:34 -08:00
|
|
|
//! * [GitHub repository](https://github.com/actix/actix-web)
|
2018-02-18 22:23:17 -08:00
|
|
|
//! * [Cargo package](https://crates.io/crates/actix-web)
|
|
|
|
//! * Supported Rust version: 1.21 or later
|
2017-12-13 23:35:21 -08:00
|
|
|
//!
|
|
|
|
//! ## Features
|
|
|
|
//!
|
|
|
|
//! * Supported *HTTP/1.x* and *HTTP/2.0* protocols
|
|
|
|
//! * Streaming and pipelining
|
|
|
|
//! * Keep-alive and slow requests handling
|
2018-02-26 14:33:56 -08:00
|
|
|
//! * `WebSockets` server/client
|
2017-12-13 23:35:21 -08:00
|
|
|
//! * Transparent content compression/decompression (br, gzip, deflate)
|
|
|
|
//! * Configurable request routing
|
2018-02-28 22:31:54 -08:00
|
|
|
//! * Graceful server shutdown
|
2017-12-13 23:35:21 -08:00
|
|
|
//! * Multipart streams
|
2018-02-28 22:31:54 -08:00
|
|
|
//! * SSL support with openssl or native-tls
|
2018-02-25 20:34:26 +03:00
|
|
|
//! * Middlewares (`Logger`, `Session`, `CORS`, `DefaultHeaders`)
|
2018-02-28 22:31:54 -08:00
|
|
|
//! * Built on top of [Actix actor framework](https://github.com/actix/actix).
|
2017-10-06 21:48:14 -07:00
|
|
|
|
2017-11-24 10:28:43 -08:00
|
|
|
#![cfg_attr(actix_nightly, feature(
|
2017-11-24 10:03:13 -08:00
|
|
|
specialization, // for impl ErrorResponse for std::error::Error
|
|
|
|
))]
|
2018-01-29 14:44:25 -08:00
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(
|
2018-02-26 13:58:23 -08:00
|
|
|
decimal_literal_representation,suspicious_arithmetic_impl,))]
|
2017-11-24 10:03:13 -08:00
|
|
|
|
2017-10-06 21:48:14 -07:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
extern crate time;
|
2018-01-27 22:03:03 -08:00
|
|
|
extern crate base64;
|
2017-10-06 21:48:14 -07:00
|
|
|
extern crate bytes;
|
2018-02-09 17:20:28 -08:00
|
|
|
extern crate byteorder;
|
2017-10-07 21:48:00 -07:00
|
|
|
extern crate sha1;
|
2017-10-16 19:21:24 -07:00
|
|
|
extern crate regex;
|
2017-10-06 21:48:14 -07:00
|
|
|
#[macro_use]
|
2017-12-07 21:52:46 -08:00
|
|
|
extern crate bitflags;
|
|
|
|
#[macro_use]
|
2017-12-29 01:01:31 -08:00
|
|
|
extern crate failure;
|
|
|
|
#[macro_use]
|
2017-10-06 21:48:14 -07:00
|
|
|
extern crate futures;
|
|
|
|
extern crate tokio_io;
|
2017-10-29 06:05:31 -07:00
|
|
|
extern crate tokio_core;
|
2017-12-27 11:22:27 -08:00
|
|
|
extern crate mio;
|
|
|
|
extern crate net2;
|
2017-10-14 22:52:38 -07:00
|
|
|
extern crate cookie;
|
2017-10-06 21:48:14 -07:00
|
|
|
extern crate http;
|
|
|
|
extern crate httparse;
|
2017-10-14 22:52:38 -07:00
|
|
|
extern crate http_range;
|
2017-10-18 23:43:50 -07:00
|
|
|
extern crate mime;
|
2017-10-16 01:19:23 -07:00
|
|
|
extern crate mime_guess;
|
2018-03-06 00:43:25 -08:00
|
|
|
extern crate language_tags;
|
2018-01-27 22:03:03 -08:00
|
|
|
extern crate rand;
|
2017-10-14 22:52:38 -07:00
|
|
|
extern crate url;
|
2017-11-10 13:26:12 -08:00
|
|
|
extern crate libc;
|
2017-11-15 20:06:28 -10:00
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
2017-11-06 01:24:49 -08:00
|
|
|
extern crate flate2;
|
|
|
|
extern crate brotli2;
|
2018-02-27 11:31:54 -08:00
|
|
|
extern crate encoding;
|
2017-10-27 22:19:00 -07:00
|
|
|
extern crate percent_encoding;
|
2017-12-07 16:22:26 -08:00
|
|
|
extern crate smallvec;
|
2017-12-12 17:21:00 -08:00
|
|
|
extern crate num_cpus;
|
2017-11-03 11:29:44 -07:00
|
|
|
extern crate h2 as http2;
|
2018-01-27 22:03:03 -08:00
|
|
|
extern crate trust_dns_resolver;
|
2017-12-27 12:58:32 -08:00
|
|
|
#[macro_use] extern crate actix;
|
2017-10-06 21:48:14 -07:00
|
|
|
|
2017-12-03 18:51:52 -08:00
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use] extern crate serde_derive;
|
2017-11-15 20:06:28 -10:00
|
|
|
|
2017-11-01 16:34:58 -07:00
|
|
|
#[cfg(feature="tls")]
|
|
|
|
extern crate native_tls;
|
|
|
|
#[cfg(feature="tls")]
|
|
|
|
extern crate tokio_tls;
|
|
|
|
|
2017-11-04 12:33:14 -07:00
|
|
|
#[cfg(feature="openssl")]
|
|
|
|
extern crate openssl;
|
|
|
|
#[cfg(feature="openssl")]
|
|
|
|
extern crate tokio_openssl;
|
|
|
|
|
2017-10-06 21:48:14 -07:00
|
|
|
mod application;
|
2017-10-23 23:25:32 -07:00
|
|
|
mod body;
|
2017-10-06 21:48:14 -07:00
|
|
|
mod context;
|
2018-02-26 15:26:27 -08:00
|
|
|
mod handler;
|
2017-12-13 22:54:52 -08:00
|
|
|
mod helpers;
|
2018-02-27 15:03:28 -08:00
|
|
|
mod httpmessage;
|
2017-10-14 22:52:38 -07:00
|
|
|
mod httprequest;
|
2017-10-15 09:33:17 -07:00
|
|
|
mod httpresponse;
|
2017-12-05 17:09:15 -08:00
|
|
|
mod info;
|
2017-12-20 17:51:28 -08:00
|
|
|
mod json;
|
2017-12-04 16:09:22 -08:00
|
|
|
mod route;
|
2017-12-06 16:26:27 -08:00
|
|
|
mod router;
|
2017-10-06 21:48:14 -07:00
|
|
|
mod resource;
|
2018-02-26 15:26:27 -08:00
|
|
|
mod param;
|
|
|
|
mod payload;
|
2017-11-24 22:15:52 -08:00
|
|
|
mod pipeline;
|
2017-10-07 21:48:00 -07:00
|
|
|
|
2018-01-29 11:39:26 -08:00
|
|
|
pub mod client;
|
2017-12-03 14:22:04 -08:00
|
|
|
pub mod fs;
|
2017-10-09 23:07:32 -07:00
|
|
|
pub mod ws;
|
2017-11-15 20:06:28 -10:00
|
|
|
pub mod error;
|
2018-03-05 16:45:54 -08:00
|
|
|
pub mod header;
|
2017-10-06 21:48:14 -07:00
|
|
|
pub mod httpcodes;
|
2017-10-18 23:43:50 -07:00
|
|
|
pub mod multipart;
|
2017-12-26 19:59:41 -08:00
|
|
|
pub mod middleware;
|
2017-12-04 13:32:05 -08:00
|
|
|
pub mod pred;
|
2017-12-26 16:35:00 -08:00
|
|
|
pub mod test;
|
2018-01-11 18:35:05 -08:00
|
|
|
pub mod server;
|
2017-12-08 15:25:37 -08:00
|
|
|
pub use error::{Error, Result, ResponseError};
|
2017-11-10 13:42:32 -08:00
|
|
|
pub use body::{Body, Binary};
|
2018-01-11 18:35:05 -08:00
|
|
|
pub use json::Json;
|
2017-11-26 22:53:28 -08:00
|
|
|
pub use application::Application;
|
2018-02-27 15:03:28 -08:00
|
|
|
pub use httpmessage::HttpMessage;
|
2017-12-07 16:40:29 -08:00
|
|
|
pub use httprequest::HttpRequest;
|
2017-11-26 22:53:28 -08:00
|
|
|
pub use httpresponse::HttpResponse;
|
2017-12-20 20:30:54 -08:00
|
|
|
pub use handler::{Reply, Responder, NormalizePath, AsyncResponder};
|
2017-12-04 16:09:22 -08:00
|
|
|
pub use route::Route;
|
|
|
|
pub use resource::Resource;
|
2017-10-06 21:48:14 -07:00
|
|
|
pub use context::HttpContext;
|
2018-01-11 18:35:05 -08:00
|
|
|
pub use server::HttpServer;
|
2017-10-14 10:40:58 -07:00
|
|
|
|
|
|
|
// re-exports
|
2017-10-29 14:51:30 -07:00
|
|
|
pub use http::{Method, StatusCode, Version};
|
2017-11-01 16:34:58 -07:00
|
|
|
|
2018-01-29 23:01:20 -08:00
|
|
|
#[cfg(feature="openssl")]
|
|
|
|
pub(crate) const HAS_OPENSSL: bool = true;
|
|
|
|
#[cfg(not(feature="openssl"))]
|
|
|
|
pub(crate) const HAS_OPENSSL: bool = false;
|
|
|
|
|
2018-03-06 17:34:46 -08:00
|
|
|
#[cfg(feature="tls")]
|
|
|
|
pub(crate) const HAS_TLS: bool = true;
|
|
|
|
#[cfg(not(feature="tls"))]
|
|
|
|
pub(crate) const HAS_TLS: bool = false;
|
2018-01-29 23:01:20 -08:00
|
|
|
|
2018-03-06 11:02:03 -08:00
|
|
|
#[doc(hidden)]
|
2018-03-05 16:45:54 -08:00
|
|
|
#[deprecated(since="0.4.4", note="please use `actix::header` module")]
|
2017-12-07 16:40:29 -08:00
|
|
|
pub mod headers {
|
|
|
|
//! Headers implementation
|
|
|
|
|
2017-12-13 21:38:47 -08:00
|
|
|
pub use httpresponse::ConnectionType;
|
2018-01-11 18:41:33 -08:00
|
|
|
pub use cookie::{Cookie, CookieBuilder};
|
2017-12-07 16:40:29 -08:00
|
|
|
pub use http_range::HttpRange;
|
2018-03-05 16:45:54 -08:00
|
|
|
pub use header::ContentEncoding;
|
2017-12-07 16:40:29 -08:00
|
|
|
}
|
|
|
|
|
2017-12-06 17:06:40 -08:00
|
|
|
pub mod dev {
|
|
|
|
//! The `actix-web` prelude for library developers
|
|
|
|
//!
|
|
|
|
//! The purpose of this module is to alleviate imports of many common actix traits
|
|
|
|
//! by adding a glob import to the top of actix heavy modules:
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! # #![allow(unused_imports)]
|
|
|
|
//! use actix_web::dev::*;
|
|
|
|
//! ```
|
|
|
|
|
2017-12-13 22:36:28 -08:00
|
|
|
pub use body::BodyStream;
|
2018-02-28 11:10:54 -08:00
|
|
|
pub use context::Drain;
|
2017-12-06 17:06:40 -08:00
|
|
|
pub use info::ConnectionInfo;
|
|
|
|
pub use handler::Handler;
|
2017-12-20 20:30:54 -08:00
|
|
|
pub use json::JsonBody;
|
2017-12-07 16:22:26 -08:00
|
|
|
pub use router::{Router, Pattern};
|
|
|
|
pub use param::{FromParam, Params};
|
2018-02-27 15:03:28 -08:00
|
|
|
pub use httpmessage::{UrlEncoded, MessageBody};
|
2017-12-06 17:06:40 -08:00
|
|
|
pub use httpresponse::HttpResponseBuilder;
|
|
|
|
}
|