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

45 lines
1.4 KiB
TOML

[package]
name = "feedsignal-web"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
feedsignal-core.workspace = true
serde.workspace = true
dioxus = { version = "0.7", features = ["router", "fullstack"] }
# Server-only dependencies: feed polling, the DB/LLM pipeline, and the
# scheduler only need to exist in the native server binary, never in the
# WASM bundle shipped to the browser.
feedsignal-db = { workspace = true, optional = true }
feedsignal-feeds = { workspace = true, optional = true }
feedsignal-llm = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
tracing = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, optional = true }
anyhow = { workspace = true, optional = true }
sqlx = { workspace = true, optional = true }
uuid = { workspace = true, optional = true }
chrono = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
tokio-cron-scheduler = { version = "0.13", optional = true }
[features]
default = ["web"]
web = ["dioxus/web"]
server = [
"dioxus/server",
"dep:feedsignal-db",
"dep:feedsignal-feeds",
"dep:feedsignal-llm",
"dep:tokio",
"dep:tracing",
"dep:tracing-subscriber",
"dep:anyhow",
"dep:sqlx",
"dep:uuid",
"dep:chrono",
"dep:serde_json",
"dep:tokio-cron-scheduler",
]