feedsignal/crates/feeds/Cargo.toml
Austin Schaefer 1a4a72fc27
Some checks failed
CI / check (push) Failing after 26s
Scaffold feedsignal: Rust workspace for LLM-filtered RSS reader
Rust workspace with core (topic-affinity learning engine + relevance
scoring), db (sqlite/sqlx schema + repo), feeds (RSS/Atom fetch), llm
(rig + local Ollama embeddings/completion), and web (axum + Dioxus
fullstack UI, no separate JS stack). Two-stage relevance filtering
(embedding shortlist -> LLM judgment) and an engagement/surprise-based
topic affinity engine with daily decay. All crates compile and core's
affinity engine has passing unit tests; server and wasm client targets
of feedsignal-web both check clean.
2026-08-20 17:04:14 +02:00

13 lines
328 B
TOML

[package]
name = "feedsignal-feeds"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
feedsignal-core.workspace = true
anyhow.workspace = true
chrono.workspace = true
uuid.workspace = true
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
feed-rs = "2"