feedsignal/crates/web/Cargo.toml
Austin Schaefer 3dcf404b26
All checks were successful
CI / check (pull_request) Successful in 15m54s
CI / test (pull_request) Successful in 10m5s
CI / audit (pull_request) Successful in 27s
Extract vendored dioxus-primitives components into their own crate
crates/web/src/components/ was a byte-for-byte copy of the
DioxusLabs/components "preview" registry (a shadcn-style copy-into-
your-project source, not something published as a dependency). Move it
wholesale into a new feedsignal-dioxus-components crate so it reads as
vendored code we depend on rather than application source, and future
app-specific styling should layer on via the class/attributes props
each component already accepts instead of editing the vendored files.

No component logic changed — this is a pure move plus import-path
updates in the four app files that consumed it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-15 11:31:27 +02:00

45 lines
1.5 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 }
uuid = { workspace = true, optional = true }
chrono = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
tokio-cron-scheduler = { version = "0.13", optional = true }
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", version = "0.0.1", default-features = false }
feedsignal-dioxus-components.workspace = 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:uuid",
"dep:chrono",
"dep:serde_json",
"dep:tokio-cron-scheduler",
]