aion-server 0.9.0

Aion workflow server library: HTTP, gRPC, WebSocket, and worker endpoints. Run it with the `aion` binary from the aion-cli crate.
Documentation
//! Namespace authorization and routing support.

/// Namespace guard rules for workflow operations and subscriptions.
pub mod guard;
/// Transport-agnostic minted-on-use namespace hook (Control-Plane Phase 1).
pub mod minter;
/// Caller identity resolution and scoped-engine selection.
pub mod resolver;
/// Durable schedule→namespace ownership sources.
pub mod schedule_source;

pub use guard::{
    NamespaceGuard, NamespaceOperation, ScheduleTarget, SubscriptionScope, WorkflowTarget,
};
pub use minter::NamespaceMinter;
pub use resolver::{
    CallerIdentity, NAMESPACE_ATTRIBUTE, NamespaceResolver, ScopedEngine, StaticWorkflowNamespaces,
    TASK_QUEUE_ATTRIBUTE, WorkflowAttribution, WorkflowNamespaceSource,
};
pub use schedule_source::{ScheduleNamespaceSource, StaticScheduleNamespaces};