From a798f0252f657439f33b73def20f0e47bf80bbc9 Mon Sep 17 00:00:00 2001 From: Aleksey Vasilenko Date: Thu, 18 Apr 2024 05:02:25 +0300 Subject: [PATCH] Update to reqwest 0.12 and async-tungstenite 0.25 (#211) --- Cargo.toml | 4 ++-- chromiumoxide_fetcher/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d390dd2a..1e48d975 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["chrome", "chromedriver", "puppeteer", "automation"] categories = ["web-programming", "api-bindings", "development-tools::testing"] [dependencies] -async-tungstenite = "0.23" +async-tungstenite = "0.25" serde = { version = "1", features = ["derive"] } async-std = { version = "1.5", features = [ "attributes", @@ -43,7 +43,7 @@ tracing = "0.1" pin-project-lite = "0.2" dunce = "1" bytes = { version = "1.4.0", features = ["serde"], optional = true } -reqwest = { version = "0.11.20", default-features = false } +reqwest = { version = "0.12", default-features = false } [target.'cfg(windows)'.dependencies] winreg = "0.52" diff --git a/chromiumoxide_fetcher/Cargo.toml b/chromiumoxide_fetcher/Cargo.toml index b81fe71c..43e9eca8 100644 --- a/chromiumoxide_fetcher/Cargo.toml +++ b/chromiumoxide_fetcher/Cargo.toml @@ -19,7 +19,7 @@ os_info = { version = "3", default-features = false } zip = { version = "0.6", default-features = false, features = ["deflate"] } async-std = { version = "1.5", features = ["unstable"], optional = true } tokio = { version = "1", features = ["fs"], optional = true } -reqwest = { version = "0.11", default-features = false, optional = true } +reqwest = { version = "0.12", default-features = false, optional = true } surf = { version = "2.3", default-features = false, optional = true } [features]