feedsignal/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

31 lines
832 B
TOML

[workspace]
resolver = "2"
members = [
"crates/core",
"crates/db",
"crates/feeds",
"crates/llm",
"crates/web",
]
[workspace.package]
edition = "2021"
version = "0.1.0"
license = "MIT"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4", "serde", "js"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "chrono", "uuid", "migrate"] }
feedsignal-core = { path = "crates/core" }
feedsignal-db = { path = "crates/db" }
feedsignal-feeds = { path = "crates/feeds" }
feedsignal-llm = { path = "crates/llm" }