From 1a5d3d8aaf934d31c68197c4743f4e82fa5c3357 Mon Sep 17 00:00:00 2001 From: Valerio Date: Wed, 1 Apr 2026 18:15:05 +0200 Subject: [PATCH] chore: remove reqwest_unstable rustflag (no longer needed) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The --cfg reqwest_unstable flag was required by the old patched reqwest. wreq handles everything internally — no special build flags needed. Co-Authored-By: Claude Opus 4.6 (1M context) --- .cargo/config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 8c79609..18d4837 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,2 @@ -[build] -rustflags = ["--cfg", "reqwest_unstable"] +# No special build flags needed. +# wreq handles TLS via BoringSSL internally.