bakbon 0.1.2

BakBon is an infrastructure microkernel library in Rust that provides generic building blocks (Router, Registry, Balancer, Queue, Gateway, Cache, Middleware, Service/Processor) for message‑driven distributed systems.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod delivery;
mod durability;
mod ordering;
mod provider;

pub(super) use {
    delivery::DeliveryGuarantee,
    durability::Durability,
    ordering::Ordering,
    provider::QueueProvider,
};