obzenflow_core 0.2.1

Core domain layer for ObzenFlow - pure abstractions with minimal dependencies
Documentation
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors
// https://obzenflow.dev

//! Event context and metadata

pub mod causality_context;
pub mod composite_activation_context;
pub mod flow_context;
pub mod intent_context;
pub mod middleware_execution_scope;
pub mod observability_context;
pub mod processing_context;
pub mod replay_context;
pub mod runtime_context;
pub mod stage_type;

pub use composite_activation_context::CompositeActivationContext;
pub use flow_context::FlowContext;
pub use intent_context::IntentContext;
pub use middleware_execution_scope::MiddlewareExecutionScope;
pub use processing_context::ProcessingContext;
pub use replay_context::ReplayContext;
pub use runtime_context::{
    EffectCircuitBreakerContext, EffectRateLimiterContext, EventTypeCountContext, RuntimeContext,
    UpstreamEventTypeCountContext,
};
pub use stage_type::{SimpleStageType, StageType};