diff --git a/LICENSE-MIT b/LICENSE-MIT index 44a057e4a..e57de3745 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,3 +1,4 @@ +Copyright (c) 2017 Nikolay Kim Copyright (c) 2017 svartalf and Actix team Permission is hereby granted, free of charge, to any diff --git a/README.md b/README.md index f73ae4a1a..7896acbb9 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ | [actix-identity] | [![crates.io](https://img.shields.io/crates/v/actix-identity)](https://crates.io/crates/actix-identity) [![Documentation](https://docs.rs/actix-identity/badge.svg)](https://docs.rs/actix-identity) | Identity service for actix-web framework. | | [actix-protobuf] | [![crates.io](https://img.shields.io/crates/v/actix-protobuf)](https://crates.io/crates/actix-protobuf) [![Documentation](https://docs.rs/actix-protobuf/badge.svg)](https://docs.rs/actix-protobuf) | Protobuf support for actix-web framework. | | [actix-redis] | [![crates.io](https://img.shields.io/crates/v/actix-redis)](https://crates.io/crates/actix-redis) [![Documentation](https://docs.rs/actix-redis/badge.svg)](https://docs.rs/actix-redis) | Redis integration for actix framework. | -| [actix-session] | [![crates.io](https://img.shields.io/crates/v/actix-session)](https://crates.io/crates/actix-session) [![Documentation](https://docs.rs/actix-session/badge.svg)](https://docs.rs/actix-session) | Session for actix web framework. | +| [actix-session] | [![crates.io](https://img.shields.io/crates/v/actix-session)](https://crates.io/crates/actix-session) [![Documentation](https://docs.rs/actix-session/badge.svg)](https://docs.rs/actix-session) | Session for actix-web framework. | | [actix-web-httpauth] | [![crates.io](https://img.shields.io/crates/v/actix-web-httpauth)](https://crates.io/crates/actix-web-httpauth) [![Documentation](https://docs.rs/actix-web-httpauth/badge.svg)](https://docs.rs/actix-web-httpauth) | HTTP authentication schemes for actix-web. | @@ -21,3 +21,9 @@ [actix]: https://github.com/actix/actix [actix-web]: https://github.com/actix/actix-web [actix-extras]: https://github.com/actix/actix-extras +[actix-cors]: actix-cors +[actix-identity]: actix-identity +[actix-protobuf]: actix-protobuf +[actix-redis]: actix-redis +[actix-session]: actix-session +[actix-web-httpauth]: actix-web-httpauth diff --git a/actix-cors/Cargo.toml b/actix-cors/Cargo.toml index 3fcd92f4f..3393f202d 100644 --- a/actix-cors/Cargo.toml +++ b/actix-cors/Cargo.toml @@ -2,7 +2,7 @@ name = "actix-cors" version = "0.2.0" authors = ["Nikolay Kim "] -description = "Cross-origin resource sharing (CORS) for Actix applications." +description = "Cross-origin resource sharing (CORS) for actix-web applications." readme = "README.md" keywords = ["web", "framework"] homepage = "https://actix.rs" diff --git a/actix-identity/Cargo.toml b/actix-identity/Cargo.toml index efeb24bda..71bb4e4b7 100644 --- a/actix-identity/Cargo.toml +++ b/actix-identity/Cargo.toml @@ -2,7 +2,7 @@ name = "actix-identity" version = "0.2.1" authors = ["Nikolay Kim "] -description = "Identity service for actix web framework." +description = "Identity service for actix-web framework." readme = "README.md" keywords = ["http", "web", "framework", "async", "futures"] homepage = "https://actix.rs" diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index ee876bc59..b944f1692 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -41,7 +41,7 @@ time = "0.1.42" tokio = "0.2.6" tokio-util = "0.2.0" -# actix web session +# actix-session actix-web = { version = "2.0.0", optional = true } actix-service = { version = "1.0.0", optional = true } actix-session = { version = "0.3.0", optional = true } diff --git a/actix-session/Cargo.toml b/actix-session/Cargo.toml index b279c9d89..d8b548a7f 100644 --- a/actix-session/Cargo.toml +++ b/actix-session/Cargo.toml @@ -2,7 +2,7 @@ name = "actix-session" version = "0.3.0" authors = ["Nikolay Kim "] -description = "Session for actix web framework." +description = "Session for actix-web framework." readme = "README.md" keywords = ["http", "web", "framework", "async", "futures"] homepage = "https://actix.rs" diff --git a/actix-session/README.md b/actix-session/README.md index 4f7ef9a15..a4d435795 100644 --- a/actix-session/README.md +++ b/actix-session/README.md @@ -8,7 +8,7 @@ ![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/actix-session) [![Join the chat at https://gitter.im/actix/actix](https://badges.gitter.im/actix/actix.svg)](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -> Session for actix web framework. +> Session for actix-web framework. ## Documentation & community resources