Koucha/koucha/Cargo.toml
Julia Lange fcb03ead1f
fetch, create fetch mod and AdapterClient
Creates a fetch mod for fetching remote rss content.

This implementation is barebones and not great since it doesn't pass any
compression or timestamp information.
2026-02-06 15:01:21 -08:00

11 lines
252 B
TOML

[package]
name = "koucha"
version = "0.1.0"
edition = "2024"
[dependencies]
reqwest = "0.13.1"
rss = "2.0.12"
tokio = { version = "1.49.0", features = ["full"] }
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "sqlite" ] }
chrono = "0.4.43"