diff --git a/actix-server/CHANGES.md b/actix-server/CHANGES.md index 93366661..17a3e4c8 100644 --- a/actix-server/CHANGES.md +++ b/actix-server/CHANGES.md @@ -3,6 +3,10 @@ ## Unreleased - 2021-xx-xx +## 2.0.0-rc.3 - 2021-12-31 +- No significant changes since `2.0.0-rc.2`. + + ## 2.0.0-rc.2 - 2021-12-27 - Simplify `TestServer`. [#431] diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 5d75da01..ca43a569 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-server" -version = "2.0.0-rc.2" +version = "2.0.0-rc.3" authors = [ "Nikolay Kim ", "fakeshadow <24548779@qq.com>", @@ -34,7 +34,7 @@ log = "0.4" mio = { version = "0.8", features = ["os-poll", "net"] } num_cpus = "1.13" socket2 = "0.4.2" -tokio = { version = "1.5.1", features = ["sync"] } +tokio = { version = "1.13.1", features = ["sync"] } # runtime for io-uring feature tokio-uring = { version = "0.1", optional = true } @@ -46,4 +46,4 @@ actix-rt = "2.4.0" bytes = "1" env_logger = "0.9" futures-util = { version = "0.3.7", default-features = false, features = ["sink", "async-await-macro"] } -tokio = { version = "1.5.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] } +tokio = { version = "1.13.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] } diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 2f1bcf00..614aeed9 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -69,7 +69,7 @@ tokio-native-tls = { version = "0.3", optional = true } [dev-dependencies] actix-rt = "2.2.0" -actix-server = "2.0.0-rc.2" +actix-server = "2.0.0-rc.3" bytes = "1" env_logger = "0.9" futures-util = { version = "0.3.7", default-features = false, features = ["sink"] }