add http-json, rss, and media data source adapters

http-json: generic HTTP+JSON polling adapter, converts serde_json to domain Value. 4 tests.
rss: XML RSS feed parser, extracts items into Value array. 1 test.
media: Navidrome/Subsonic getNowPlaying adapter. 2 tests with fake server.
This commit is contained in:
2026-06-18 22:52:28 +02:00
parent e398c240a0
commit 366d98a1ae
9 changed files with 1076 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
[package]
name = "http-json"
version = "0.1.0"
edition = "2024"
[dependencies]
domain.workspace = true
reqwest.workspace = true
serde_json.workspace = true
[dev-dependencies]
tokio.workspace = true
axum.workspace = true