From c9000608b0077b31d05339a569ea0ea1822895a7 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 8 Mar 2022 20:17:40 +0000 Subject: [PATCH] prepare actix-rt release 2.7.0 --- actix-rt/CHANGES.md | 3 +++ actix-rt/Cargo.toml | 2 +- actix-rt/README.md | 4 ++-- actix-server/Cargo.toml | 12 ++++++------ 4 files changed, 12 insertions(+), 9 deletions(-) diff --git a/actix-rt/CHANGES.md b/actix-rt/CHANGES.md index 9656528c..671b623a 100644 --- a/actix-rt/CHANGES.md +++ b/actix-rt/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2022-xx-xx + + +## 2.7.0 - 2022-03-08 - Update `tokio-uring` dependency to `0.3.0`. [#448] - Minimum supported Rust version (MSRV) is now 1.49. diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index c3f1424b..9df178d8 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-rt" -version = "2.6.0" +version = "2.7.0" authors = [ "Nikolay Kim ", "Rob Ede ", diff --git a/actix-rt/README.md b/actix-rt/README.md index 5e912032..e598f0b6 100644 --- a/actix-rt/README.md +++ b/actix-rt/README.md @@ -3,11 +3,11 @@ > Tokio-based single-threaded async runtime for the Actix ecosystem. [![crates.io](https://img.shields.io/crates/v/actix-rt?label=latest)](https://crates.io/crates/actix-rt) -[![Documentation](https://docs.rs/actix-rt/badge.svg?version=2.6.0)](https://docs.rs/actix-rt/2.6.0) +[![Documentation](https://docs.rs/actix-rt/badge.svg?version=2.7.0)](https://docs.rs/actix-rt/2.7.0) [![Version](https://img.shields.io/badge/rustc-1.46+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.46.html) ![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-rt.svg)
-[![dependency status](https://deps.rs/crate/actix-rt/2.6.0/status.svg)](https://deps.rs/crate/actix-rt/2.6.0) +[![dependency status](https://deps.rs/crate/actix-rt/2.7.0/status.svg)](https://deps.rs/crate/actix-rt/2.7.0) ![Download](https://img.shields.io/crates/d/actix-rt.svg) [![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/WghFtEH6Hb) diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 1d07df80..fbc2f55a 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -27,19 +27,19 @@ experimental-io-uring = ["tokio-uring", "actix-rt/io-uring"] io-uring = ["experimental-io-uring"] [dependencies] -actix-rt = { version = "2.6.0", default-features = false } -actix-service = "2.0.0" -actix-utils = "3.0.0" +actix-rt = { version = "2.7", default-features = false } +actix-service = "2" +actix-utils = "3" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] } -tracing = { version = "0.1.30", features = ["log"] } mio = { version = "0.8", features = ["os-poll", "net"] } num_cpus = "1.13" socket2 = "0.4.2" tokio = { version = "1.13.1", features = ["sync"] } +tracing = { version = "0.1.30", features = ["log"] } -# runtime for io-uring feature +# runtime for `experimental-io-uring` feature [target.'cfg(target_os = "linux")'.dependencies] tokio-uring = { version = "0.3", optional = true } @@ -48,6 +48,6 @@ actix-codec = "0.5.0" actix-rt = "2.6.0" bytes = "1" -tracing-subscriber = "0.3.8" futures-util = { version = "0.3.7", default-features = false, features = ["sink", "async-await-macro"] } tokio = { version = "1.13.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] } +tracing-subscriber = "0.3.8"