mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
prepare release
This commit is contained in:
parent
b9d870645f
commit
d6787e6c56
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "actix-web"
|
name = "actix-web"
|
||||||
version = "0.6.4"
|
version = "0.6.5"
|
||||||
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
|
||||||
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -18,8 +18,8 @@ Actix web is a simple, pragmatic and extremely fast web framework for Rust.
|
|||||||
[DefaultHeaders](https://actix.rs/book/actix-web/sec-9-middlewares.html#default-headers),
|
[DefaultHeaders](https://actix.rs/book/actix-web/sec-9-middlewares.html#default-headers),
|
||||||
[CORS](https://actix.rs/actix-web/actix_web/middleware/cors/index.html),
|
[CORS](https://actix.rs/actix-web/actix_web/middleware/cors/index.html),
|
||||||
[CSRF](https://actix.rs/actix-web/actix_web/middleware/csrf/index.html))
|
[CSRF](https://actix.rs/actix-web/actix_web/middleware/csrf/index.html))
|
||||||
* Built on top of [Actix actor framework](https://github.com/actix/actix)
|
|
||||||
* Includes an asynchronous [HTTP client](https://github.com/actix/actix-web/blob/master/src/client/mod.rs)
|
* Includes an asynchronous [HTTP client](https://github.com/actix/actix-web/blob/master/src/client/mod.rs)
|
||||||
|
* Built on top of [Actix actor framework](https://github.com/actix/actix)
|
||||||
|
|
||||||
## Documentation & community resources
|
## Documentation & community resources
|
||||||
|
|
||||||
|
20
src/lib.rs
20
src/lib.rs
@ -60,7 +60,21 @@
|
|||||||
//! * Middlewares (`Logger`, `Session`, `CORS`, `CSRF`, `DefaultHeaders`)
|
//! * Middlewares (`Logger`, `Session`, `CORS`, `CSRF`, `DefaultHeaders`)
|
||||||
//! * Built on top of [Actix actor framework](https://github.com/actix/actix)
|
//! * Built on top of [Actix actor framework](https://github.com/actix/actix)
|
||||||
//! * Supported Rust version: 1.24 or later
|
//! * Supported Rust version: 1.24 or later
|
||||||
|
//!
|
||||||
|
//! ## Package feature
|
||||||
|
//!
|
||||||
|
//! * `tls` - enables ssl support via `native-tls` crate
|
||||||
|
//! * `alpn` - enables ssl support via `openssl` crate, require for `http/2`
|
||||||
|
//! support
|
||||||
|
//! * `session` - enables session support, includes `ring` crate as
|
||||||
|
//! dependency
|
||||||
|
//! * `brotli` - enables `brotli` compression support, requires `c`
|
||||||
|
//! compiler
|
||||||
|
//! * `flate-c` - enables `gzip`, `deflate` compression support, requires
|
||||||
|
//! `c` compiler
|
||||||
|
//! * `flate-rust` - experimental rust based implementation for
|
||||||
|
//! `gzip`, `deflate` compression.
|
||||||
|
//!
|
||||||
#![cfg_attr(actix_nightly, feature(
|
#![cfg_attr(actix_nightly, feature(
|
||||||
specialization, // for impl ErrorResponse for std::error::Error
|
specialization, // for impl ErrorResponse for std::error::Error
|
||||||
))]
|
))]
|
||||||
@ -169,7 +183,9 @@ pub use body::{Binary, Body};
|
|||||||
pub use context::HttpContext;
|
pub use context::HttpContext;
|
||||||
pub use error::{Error, ResponseError, Result};
|
pub use error::{Error, ResponseError, Result};
|
||||||
pub use extractor::{Form, Path, Query};
|
pub use extractor::{Form, Path, Query};
|
||||||
pub use handler::{AsyncResponder, Either, FromRequest, FutureResponse, Responder, State};
|
pub use handler::{
|
||||||
|
AsyncResponder, Either, FromRequest, FutureResponse, Responder, State,
|
||||||
|
};
|
||||||
pub use httpmessage::HttpMessage;
|
pub use httpmessage::HttpMessage;
|
||||||
pub use httprequest::HttpRequest;
|
pub use httprequest::HttpRequest;
|
||||||
pub use httpresponse::HttpResponse;
|
pub use httpresponse::HttpResponse;
|
||||||
|
Loading…
Reference in New Issue
Block a user