From d29add51617efc0c2c75dc8713d72fcfcc6c3c3b Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Mon, 21 Mar 2022 15:14:17 -0400 Subject: [PATCH 1/3] Bump cookie to 0.16; tokio-util to 0.7; trust-dns-resolver to 0.21 which now worksnow that cookie_store has been upgraded from 0.15.1 to 0.15.2. Also, trust-dns-resolver 0.21 gets rid of chrono dependency with its outsanding security advisory --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dfe14bf5d..062297558 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -121,19 +121,19 @@ rustls-native-certs = { version = "0.6", optional = true } rustls-pemfile = { version = "0.3", optional = true } ## cookies -cookie_crate = { version = "0.15", package = "cookie", optional = true } +cookie_crate = { version = "0.16", package = "cookie", optional = true } cookie_store = { version = "0.15", optional = true } proc-macro-hack = { version = "0.5.19", optional = true } ## compression async-compression = { version = "0.3.7", default-features = false, features = ["tokio"], optional = true } -tokio-util = { version = "0.6.0", default-features = false, features = ["codec", "io"], optional = true } +tokio-util = { version = "0.7.0", default-features = false, features = ["codec", "io"], optional = true } ## socks tokio-socks = { version = "0.5.1", optional = true } ## trust-dns -trust-dns-resolver = { version = "0.20", optional = true } +trust-dns-resolver = { version = "0.21", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] env_logger = "0.8" From 6d4aad17fc7b18b0be2d2bd86c397e848ae66adc Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Mon, 21 Mar 2022 18:16:00 -0400 Subject: [PATCH 2/3] bump cookie_store to 0.16.0 now that 0.15.2 was yanked, this now compiles and tests properly --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 062297558..0090fcf12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -122,7 +122,7 @@ rustls-pemfile = { version = "0.3", optional = true } ## cookies cookie_crate = { version = "0.16", package = "cookie", optional = true } -cookie_store = { version = "0.15", optional = true } +cookie_store = { version = "0.16", optional = true } proc-macro-hack = { version = "0.5.19", optional = true } ## compression From 903199747874123bbb4fb035cb0649a559218548 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Thu, 31 Mar 2022 08:54:04 -0400 Subject: [PATCH 3/3] bump tokio-util to 0.7.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0090fcf12..6e3d9e205 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -127,7 +127,7 @@ proc-macro-hack = { version = "0.5.19", optional = true } ## compression async-compression = { version = "0.3.7", default-features = false, features = ["tokio"], optional = true } -tokio-util = { version = "0.7.0", default-features = false, features = ["codec", "io"], optional = true } +tokio-util = { version = "0.7.1", default-features = false, features = ["codec", "io"], optional = true } ## socks tokio-socks = { version = "0.5.1", optional = true }