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>
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/core",
|
|
"crates/db",
|
|
"crates/dioxus-components",
|
|
"crates/feeds",
|
|
"crates/llm",
|
|
"crates/web",
|
|
]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
version = "0.1.0"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[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"] }
|
|
diesel = { version = "2.3", features = ["sqlite", "chrono"] }
|
|
diesel-async = { version = "0.9", features = ["sqlite", "bb8"] }
|
|
diesel_migrations = { version = "2.3", features = ["sqlite"] }
|
|
bb8 = "0.9"
|
|
libsqlite3-sys = { version = "0.30", features = ["bundled"] }
|
|
|
|
feedsignal-core = { path = "crates/core" }
|
|
feedsignal-db = { path = "crates/db" }
|
|
feedsignal-dioxus-components = { path = "crates/dioxus-components" }
|
|
feedsignal-feeds = { path = "crates/feeds" }
|
|
feedsignal-llm = { path = "crates/llm" }
|