From 4aaf9f08f877326e1098922cc9a257eb2941ddbc Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Wed, 28 Feb 2018 22:31:54 -0800 Subject: [PATCH] update readme --- Cargo.toml | 2 +- README.md | 6 +++++- src/lib.rs | 7 ++++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 08587830..cf050ed6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "actix-web" version = "0.4.0" authors = ["Nikolay Kim "] -description = "Actix web framework" +description = "Actix web is a small, pragmatic, extremely fast, web framework for Rust." readme = "README.md" keywords = ["http", "web", "framework", "async", "futures"] homepage = "https://github.com/actix/actix-web" diff --git a/README.md b/README.md index afd70ae7..7c8ac4e0 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,10 @@ Actix web is a small, pragmatic, extremely fast, web framework for Rust. * SSL support with openssl or native-tls * Middlewares ([Logger](https://actix.github.io/actix-web/guide/qs_10.html#logging), [Session](https://actix.github.io/actix-web/guide/qs_10.html#user-sessions), + [Redis sessions](https://github.com/actix/actix-redis), [DefaultHeaders](https://actix.github.io/actix-web/guide/qs_10.html#default-headers), [CORS](https://actix.github.io/actix-web/actix_web/middleware/cors/index.html)) -* Built on top of [Actix](https://github.com/actix/actix). +* Built on top of [Actix actor framework](https://github.com/actix/actix). ## Documentation @@ -58,6 +59,9 @@ fn main() { * [SockJS Server](https://github.com/actix/actix-sockjs) * [Json](https://github.com/actix/actix-web/tree/master/examples/json/) +You may consider checking out +[this directory](https://github.com/actix/actix-web/tree/master/examples) for more examples. + ## Benchmarks * [TechEmpower Framework Benchmark](https://www.techempower.com/benchmarks/#section=data-r15&hw=ph&test=plaintext) diff --git a/src/lib.rs b/src/lib.rs index e85ce748..f3decb14 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -35,10 +35,11 @@ //! * `WebSockets` server/client //! * Transparent content compression/decompression (br, gzip, deflate) //! * Configurable request routing -//! * Multipart streams -//! * Middlewares (`Logger`, `Session`, `CORS`, `DefaultHeaders`) //! * Graceful server shutdown -//! * Built on top of [Actix](https://github.com/actix/actix). +//! * Multipart streams +//! * SSL support with openssl or native-tls +//! * Middlewares (`Logger`, `Session`, `CORS`, `DefaultHeaders`) +//! * Built on top of [Actix actor framework](https://github.com/actix/actix). #![cfg_attr(actix_nightly, feature( specialization, // for impl ErrorResponse for std::error::Error