Files
k-frame/crates/bootstrap/Cargo.toml
Gabriel Kaszewski 455d5da901 webhook through event system, extract data-generators adapter
webhook route now emits WebhookDataReceived event instead of directly
mutating DataProjection and broadcasting. event_handler applies data
and pushes incremental DataUpdate.

clock/static_text generators extracted to data-generators crate behind
DataSourcePort. chrono removed from bootstrap. polling adapters grouped
into Adapters struct.
2026-06-19 12:33:42 +02:00

23 lines
530 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
data-generators.workspace = true