Files
k-frame/crates/adapters/rss/Cargo.toml
Gabriel Kaszewski af47e3939c extract api-types crate, adopt thiserror for all errors
api-types: standalone crate with DTOs (widget, data source, layout, preset)
extracted from http-api. Shared between http-api and future SPA.

thiserror: replaced all manual Display impls with derive macros across
8 crates (config-sqlite, config-memory, tcp-server, tcp-client,
http-json, rss, media, application).
2026-06-18 23:01:31 +02:00

16 lines
305 B
TOML

[package]
name = "rss-adapter"
version = "0.1.0"
edition = "2024"
[dependencies]
domain.workspace = true
reqwest.workspace = true
quick-xml = { version = "0.37", features = ["serialize"] }
serde.workspace = true
thiserror.workspace = true
[dev-dependencies]
tokio.workspace = true
axum.workspace = true