cerk 0.2.11

CERK is an open source CloudEvents Router written in Rust with a MicroKernel architecture.
//! Implementation of the core components of CERK

mod bootstrap;
mod broker_event;
mod cloud_event_routing_args;
mod config;
mod delivery_guarantees;
mod kernel_start;
mod outgoing_processing_result;
mod start_options;

pub use self::bootstrap::{bootstrap, KernelFn};
pub use self::broker_event::{
    BrokerEvent, CloudEventMessageRoutingId, HealthCheckRequest, HealthCheckResponse,
    HealthCheckStatus, IncomingCloudEvent, OutgoingCloudEvent, OutgoingCloudEventProcessed,
    RoutingResult, ScheduleInternalServer, ScheduleInternalServerStatic,
};
pub use self::cloud_event_routing_args::CloudEventRoutingArgs;
pub use self::config::{Config, ConfigHelpers};
pub use self::delivery_guarantees::DeliveryGuarantee;
pub use self::outgoing_processing_result::ProcessingResult;
pub use self::start_options::StartOptions;