bmux_control_catalog_plugin_api 0.0.1-alpha.1

Typed public API of the bmux control-catalog plugin (BPDL-generated bindings)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Typed public API of the bmux control-catalog plugin.
//!
//! Aggregates session, context, and client state into a cross-cutting
//! catalog snapshot with a monotonic revision counter. Other plugins
//! and attach-side callers depend on this crate for typed catalog
//! queries and events.
//!
//! The [`control_catalog_state`] and [`control_catalog_events`] modules
//! are generated from `bpdl/control-catalog-plugin.bpdl` at compile
//! time via the [`bmux_plugin_schema_macros::schema!`] macro.

#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
#![warn(clippy::all, clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]

bmux_plugin_schema_macros::schema! {
    source: "bpdl/control-catalog-plugin.bpdl",
}