Add db support to store articles

This commit is contained in:
dolphinau 2025-07-28 18:47:16 +02:00
parent 06dafb24fc
commit 9c45142083
No known key found for this signature in database
6 changed files with 75 additions and 23 deletions

6
Cargo.toml Normal file → Executable file
View file

@ -4,12 +4,12 @@ version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1.46.0", default-features = false, features = [
"rt-multi-thread",
] }
tokio = { version = "1.46.0", features = ["full"] }
futures = "0.3.31"
reqwest = "0.12.22"
scraper = "0.23.1"
regex = "1.11.1"
chrono = "0.4.41"
rss = "2.0.12"
mini-redis = "0.4.1"
tokio-postgres = "0.7.13"