From 899d7dd901a2517e5b21c5c76e5e6afded4ad7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Mon, 6 Oct 2025 10:02:04 +0200 Subject: [PATCH] fix: unwrap error in readability_rust --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d8b8309..e29bfdc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1473,8 +1473,7 @@ dependencies = [ [[package]] name = "readability-rust" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1c18c133365854cd0b5f899503fc22e3533270481cc09285ec0ceff2c233fee" +source = "git+https://github.com/MoritzBoehme/readability-rust.git?branch=fix-unwrap#f499390e2a6e835817c464eb93a634983739fa1c" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 3c7e319..ab0181d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] anyhow = "1.0.99" itertools = "0.14.0" -readability-rust = "0.1.0" +readability-rust = { git = "https://github.com/MoritzBoehme/readability-rust.git", branch="fix-unwrap" } reqwest = { version = "0.12.23", features = ["blocking", "rustls-tls"], default-features = false } rss = "2.0.12" tokio = { version = "1.47.1", features = ["full"] }