diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 0a395797..6d763d79 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -24,7 +24,7 @@ default = [] [dependencies] actix-codec = "0.4.0-beta.1" actix-rt = { version = "2.0.0", default-features = false } -actix-service = "2.0.0-beta.4" +actix-service = "2.0.0-beta.5" actix-utils = "3.0.0-beta.2" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } diff --git a/actix-service/CHANGES.md b/actix-service/CHANGES.md index ac340bb6..51749ecd 100644 --- a/actix-service/CHANGES.md +++ b/actix-service/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 2.0.0-beta.5 - 2021-03-15 * Add default `Service` trait impl for `Rc` and `&S: Service`. [#288] * Add `boxed::rc_service` function for constructing `boxed::RcService` type [#290] diff --git a/actix-service/Cargo.toml b/actix-service/Cargo.toml index eecf4669..84a0c172 100644 --- a/actix-service/Cargo.toml +++ b/actix-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-service" -version = "2.0.0-beta.4" +version = "2.0.0-beta.5" authors = [ "Nikolay Kim ", "Rob Ede ", diff --git a/actix-service/README.md b/actix-service/README.md index 28c38295..54171274 100644 --- a/actix-service/README.md +++ b/actix-service/README.md @@ -3,11 +3,11 @@ > Service trait and combinators for representing asynchronous request/response operations. [![crates.io](https://img.shields.io/crates/v/actix-service?label=latest)](https://crates.io/crates/actix-service) -[![Documentation](https://docs.rs/actix-service/badge.svg?version=2.0.0-beta.4)](https://docs.rs/actix-service/2.0.0-beta.4) +[![Documentation](https://docs.rs/actix-service/badge.svg?version=2.0.0-beta.5)](https://docs.rs/actix-service/2.0.0-beta.5) [![Version](https://img.shields.io/badge/rustc-1.46+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.46.html) ![License](https://img.shields.io/crates/l/actix-service.svg) -[![Dependency Status](https://deps.rs/crate/actix-service/2.0.0-beta.4/status.svg)](https://deps.rs/crate/actix-service/2.0.0-beta.4) -[![Download](https://img.shields.io/crates/d/actix-service.svg)](https://crates.io/crates/actix-service) +[![Dependency Status](https://deps.rs/crate/actix-service/2.0.0-beta.5/status.svg)](https://deps.rs/crate/actix-service/2.0.0-beta.5) +![Download](https://img.shields.io/crates/d/actix-service.svg) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x) See documentation for detailed explanations of these components: https://docs.rs/actix-service. diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index b3a0e30c..354bb428 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -42,7 +42,7 @@ uri = ["http"] [dependencies] actix-codec = "0.4.0-beta.1" actix-rt = { version = "2.1.0", default-features = false } -actix-service = "2.0.0-beta.4" +actix-service = "2.0.0-beta.5" actix-utils = "3.0.0-beta.2" derive_more = "0.99.5" diff --git a/actix-tracing/Cargo.toml b/actix-tracing/Cargo.toml index 60ad1454..7f043f4b 100644 --- a/actix-tracing/Cargo.toml +++ b/actix-tracing/Cargo.toml @@ -16,7 +16,7 @@ name = "actix_tracing" path = "src/lib.rs" [dependencies] -actix-service = "2.0.0-beta.4" +actix-service = "2.0.0-beta.5" futures-util = { version = "0.3.4", default-features = false } tracing = "0.1" diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index da46256e..9c21dd1b 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] actix-codec = "0.4.0-beta.1" actix-rt = { version = "2.0.0", default-features = false } -actix-service = "2.0.0-beta.4" +actix-service = "2.0.0-beta.5" futures-core = { version = "0.3.7", default-features = false } futures-sink = { version = "0.3.7", default-features = false }