From 3a57696b4637db858915c93bbc918f3af640eddc Mon Sep 17 00:00:00 2001 From: Kayos Date: Tue, 26 May 2026 10:46:26 -0700 Subject: [PATCH] vc=56 fixup: actually add reqwest+quick-xml+futures to Cargo.toml Earlier Edit's old_string didn't match the file shape so the dep additions never landed. Re-adding properly after android_logger. --- rust/strawcore/Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rust/strawcore/Cargo.toml b/rust/strawcore/Cargo.toml index 1cd5ce697..630ef94ef 100644 --- a/rust/strawcore/Cargo.toml +++ b/rust/strawcore/Cargo.toml @@ -37,6 +37,13 @@ thiserror = "1" # Android log integration — `log::info!()` ends up in `adb logcat -s strawcore`. log = "0.4" android_logger = { version = "0.14", default-features = false } +# vc=56 — subscription RSS feed fan-out. reqwest dedupes against +# strawcore-core's already-pulled reqwest; quick-xml is small (~200KB); +# futures for buffer_unordered. rustls-tls avoids the NDK openssl headers +# headache. +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "gzip"] } +quick-xml = "0.36" +futures = "0.3" [build-dependencies] uniffi = { version = "0.28", features = ["build"] }