alma 0.1.1

A Bevy-native modal text editor with Vim-style navigation.
Documentation
//! Redacted plugin runtime trace vocabulary.

/// Shared redacted display adapters.
mod display;
/// Drained effect and status trace payloads.
mod effect;
/// Trace event envelope and class vocabulary.
mod event;
/// Proposal receipt trace payloads.
mod proposal;
/// Workspace I/O and observe-task trace payloads.
mod workspace;

#[cfg(test)]
mod tests;

pub use effect::{PluginRuntimeTraceEffect, PluginRuntimeTraceStatus};
pub use event::{
    PluginRuntimeTraceEvent, PluginRuntimeTraceEventClass, PluginRuntimeTraceEventKind,
};
pub use proposal::{
    PluginRuntimeTraceProposalOutcome, PluginRuntimeTraceProposalOwner,
    PluginRuntimeTraceProposalReceipt, PluginRuntimeTraceProposalRejection,
    PluginRuntimeTraceTarget,
};
pub use workspace::{
    PluginRuntimeTraceWorkspaceIoCompletion, PluginRuntimeTraceWorkspaceObserveTaskOutcome,
    PluginRuntimeTraceWorkspaceReadOutcome, PluginRuntimeTraceWorkspaceWriteOutcome,
};