From 17f7cd2aae1cf6cd5b21e3225ab3b3b95b128885 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 18 Dec 2022 01:31:06 +0000 Subject: [PATCH] bump zstd to 0.12 --- actix-http/Cargo.toml | 2 +- actix-web/Cargo.toml | 7 ++----- awc/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index 313764d35..3ee285c81 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -96,7 +96,7 @@ actix-tls = { version = "3", default-features = false, optional = true } # compress-* brotli = { version = "3.3.3", optional = true } flate2 = { version = "1.0.13", optional = true } -zstd = { version = "0.11", optional = true } +zstd = { version = "0.12", optional = true } [dev-dependencies] actix-http-test = { version = "3", features = ["openssl"] } diff --git a/actix-web/Cargo.toml b/actix-web/Cargo.toml index f60a35978..9ace68811 100644 --- a/actix-web/Cargo.toml +++ b/actix-web/Cargo.toml @@ -38,10 +38,7 @@ compress-gzip = ["actix-http/compress-gzip", "__compress"] compress-zstd = ["actix-http/compress-zstd", "__compress"] # Routing and runtime proc macros -macros = [ - "actix-macros", - "actix-web-codegen", -] +macros = ["actix-macros", "actix-web-codegen"] # Cookies support cookies = ["cookie"] @@ -119,7 +116,7 @@ static_assertions = "1" tls-openssl = { package = "openssl", version = "0.10.9" } tls-rustls = { package = "rustls", version = "0.20.0" } tokio = { version = "1.13.1", features = ["rt-multi-thread", "macros"] } -zstd = "0.11" +zstd = "0.12" [[test]] name = "test_server" diff --git a/awc/Cargo.toml b/awc/Cargo.toml index e7ac43d22..b40becfec 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -87,7 +87,7 @@ cookie = { version = "0.16", features = ["percent-encode"], optional = true } tls-openssl = { package = "openssl", version = "0.10.9", optional = true } tls-rustls = { package = "rustls", version = "0.20.0", optional = true, features = ["dangerous_configuration"] } -trust-dns-resolver = { version = "0.21", optional = true } +trust-dns-resolver = { version = "0.22", optional = true } [dev-dependencies] actix-http = { version = "3", features = ["openssl"] } @@ -107,7 +107,7 @@ static_assertions = "1.1" rcgen = "0.9" rustls-pemfile = "1" tokio = { version = "1.13.1", features = ["rt-multi-thread", "macros"] } -zstd = "0.11" +zstd = "0.12" [[example]] name = "client"