- keep BEDS resident after IPL and coordinate clean shutdown - propagate AMQP shutdown command across dispatcher pool - add structured IPL milestone/event-chain logging with root GUID context - add optional trace_on config for verbose method-entry diagnostics - add dev purge-on-IPL controls for admin/logger collections - add log level showcase events after IPL node-green - add Mongo logger store helpers for chain/root lookup and purge - add/modernize BEDS Observatory log_dumper utility UI and root record view - refresh source headers and wiki docs for current architecture/runtime - add architecture visual brief for leadership/image-generation workflows
21 lines
565 B
TOML
21 lines
565 B
TOML
[package]
|
|
name = "rustybeds"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"]}
|
|
serde_json = "1"
|
|
toml = "0.8"
|
|
config = "0.14"
|
|
thiserror = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
|
|
tracing-journald = "0.3"
|
|
mongodb = { version = "3", features = ["sync"] }
|
|
futures-lite = "2"
|
|
lapin = "2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = "0.8"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
|
|
uuid = { version = "1", features = ["v4"] } |