DataSourceConfig refactored to enum: External/Clock/StaticText. Clock generates formatted time via chrono, static text emits configured string. ESP32: connection status indicator (green/red dot bottom-right), per-widget clear before redraw, RenderEvent enum for local + server messages. Polling uses DataUpdate instead of ScreenUpdate to avoid wiping widget state. Empty mappings passthrough raw source data for internal sources.
24 lines
548 B
TOML
24 lines
548 B
TOML
[package]
|
|
name = "bootstrap"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
domain.workspace = true
|
|
application.workspace = true
|
|
config-sqlite.workspace = true
|
|
tcp-server.workspace = true
|
|
http-api.workspace = true
|
|
http-json.workspace = true
|
|
media-adapter.workspace = true
|
|
rss-adapter.workspace = true
|
|
kframe-auth.workspace = true
|
|
secret-store.workspace = true
|
|
tokio.workspace = true
|
|
anyhow.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
dotenvy.workspace = true
|
|
chrono.workspace = true
|
|
chrono-tz.workspace = true
|