diff --git a/actix-service/Cargo.toml b/actix-service/Cargo.toml index d4b602fd..b9f14675 100644 --- a/actix-service/Cargo.toml +++ b/actix-service/Cargo.toml @@ -23,6 +23,6 @@ paste = "1" pin-project-lite = "0.2" [dev-dependencies] -actix-rt = "2.0.0" -actix-utils = "3.0.0" +actix-rt = "2" +actix-utils = "3" futures-util = { version = "0.3.7", default-features = false } diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index d6b2efe2..00dc5dac 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -44,11 +44,11 @@ uri = ["http"] [dependencies] actix-codec = { version = "0.5.0", optional = true } actix-rt = { version = "2.2.0", default-features = false } -actix-service = "2.0.0" -actix-utils = "3.0.0" +actix-service = "2" +actix-utils = "3" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } -impl-more = "0.1.0" +impl-more = "0.1" pin-project-lite = "0.2.7" tokio-util = "0.7" tracing = { version = "0.1.30", default-features = false, features = ["log"] } @@ -70,7 +70,7 @@ tokio-native-tls = { version = "0.3", optional = true } [dev-dependencies] actix-codec = "0.5.0" actix-rt = "2.2.0" -actix-server = "2.0.0" +actix-server = "2" bytes = "1" env_logger = "0.9" futures-util = { version = "0.3.7", default-features = false, features = ["sink"] } @@ -78,7 +78,7 @@ log = "0.4" rcgen = "0.8" rustls-pemfile = "0.2.1" tokio-rustls = { version = "0.23", features = ["dangerous_configuration"] } -trust-dns-resolver = "0.20.0" +trust-dns-resolver = "0.20" [[example]] name = "accept-rustls" diff --git a/actix-tracing/Cargo.toml b/actix-tracing/Cargo.toml index 50e15b76..279ffc28 100644 --- a/actix-tracing/Cargo.toml +++ b/actix-tracing/Cargo.toml @@ -16,12 +16,12 @@ name = "actix_tracing" path = "src/lib.rs" [dependencies] -actix-service = "2.0.0" -actix-utils = "3.0.0" +actix-service = "2" +actix-utils = "3" tracing = "0.1.35" tracing-futures = "0.2" [dev_dependencies] -actix-rt = "2.0.0" +actix-rt = "2" slab = "0.4" diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 0602b27d..76dace73 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2022-xx-xx + + +## 3.0.1 - 2022-10-21 - Minimum supported Rust version (MSRV) is now 1.57. diff --git a/actix-utils/Cargo.toml b/actix-utils/Cargo.toml index ed858378..bd3eb480 100644 --- a/actix-utils/Cargo.toml +++ b/actix-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-utils" -version = "3.0.0" +version = "3.0.1" authors = [ "Nikolay Kim ", "Rob Ede ",