fix: unwrap error in readability_rust

This commit is contained in:
Moritz Böhme 2025-10-06 10:02:04 +02:00
parent cf62f03a70
commit 899d7dd901
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 2 additions and 3 deletions

3
Cargo.lock generated
View file

@ -1473,8 +1473,7 @@ dependencies = [
[[package]] [[package]]
name = "readability-rust" name = "readability-rust"
version = "0.1.0" version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/MoritzBoehme/readability-rust.git?branch=fix-unwrap#f499390e2a6e835817c464eb93a634983739fa1c"
checksum = "a1c18c133365854cd0b5f899503fc22e3533270481cc09285ec0ceff2c233fee"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",

View file

@ -6,7 +6,7 @@ edition = "2024"
[dependencies] [dependencies]
anyhow = "1.0.99" anyhow = "1.0.99"
itertools = "0.14.0" 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 } reqwest = { version = "0.12.23", features = ["blocking", "rustls-tls"], default-features = false }
rss = "2.0.12" rss = "2.0.12"
tokio = { version = "1.47.1", features = ["full"] } tokio = { version = "1.47.1", features = ["full"] }