- Value↔JSON: From impls on domain Value behind `json` feature, delete 4 duplicate converters - ConfigRepository split into ConfigRepository (12), UserRepository (3), WidgetStateCache (2) - polling orchestration moved from bootstrap to application::polling_service - WidgetRenderer in client-domain owns scroll/cache, both clients use it - network loop consolidated into client-application::run_connection_loop - protocol crate drops domain dep, Wire↔Domain conversions move to adapters
23 lines
492 B
TOML
23 lines
492 B
TOML
[package]
|
|
name = "http-api"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
domain = { workspace = true, features = ["json"] }
|
|
application.workspace = true
|
|
api-types.workspace = true
|
|
axum.workspace = true
|
|
tower-http.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio.workspace = true
|
|
tower.workspace = true
|
|
serde_json.workspace = true
|
|
config-memory.workspace = true
|
|
tcp-server.workspace = true
|
|
application.workspace = true
|