From b5e1a8e4c5477054495a85d95cd35b445f1de2f6 Mon Sep 17 00:00:00 2001 From: 0x676e67 Date: Thu, 4 Jun 2026 20:29:45 +0800 Subject: [PATCH] build(deps): update wreq dependency version to latest --- Cargo.lock | 10 ++++++---- Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ed14e7..6445dd8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1480,8 +1480,9 @@ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" [[package]] name = "wreq" -version = "6.0.0-rc.28" -source = "git+https://github.com/0x676e67/wreq#28b29c018b1b2f26cdd09c9d4158110186b6f7f9" +version = "6.0.0-rc.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f0eba5f5814a94e5f1a99156f187133464e525b66bdbc69a9627d46530af2e1" dependencies = [ "btls", "btls-sys", @@ -1573,8 +1574,9 @@ dependencies = [ [[package]] name = "wreq-util" -version = "3.0.0-rc.10" -source = "git+https://github.com/0x676e67/wreq-util#2453a53d99e079f38be942fb6cd570c3cd6fdc9d" +version = "3.0.0-rc.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baa5d2ab72139256916ca352a3d05c53d74e1dd360052eb5ba7691033c417c65" dependencies = [ "brotli", "flate2", diff --git a/Cargo.toml b/Cargo.toml index 4dcfac9..d3b7c59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ name = "wreq_ruby" magnus = { version = "0.8.2", features = ["bytes"] } rb-sys = { version = "0.9.128", default-features = false } tokio = { version = "1.52.3", features = ["full"] } -wreq = { git = "https://github.com/0x676e67/wreq", features = [ +wreq = { version = "6.0.0-rc", features = [ "query", "form", "json", @@ -31,7 +31,7 @@ wreq = { git = "https://github.com/0x676e67/wreq", features = [ "zstd", "system-proxy", ] } -wreq-util = { git = "https://github.com/0x676e67/wreq-util", features = ["emulation-compression"] } +wreq-util = { version = "3.0.0-rc", features = ["emulation-compression"] } serde = { version = "1.0.228", features = ["derive"] } serde_magnus = "0.11.0" indexmap = { version = "2.14.0", features = ["serde"] }