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
12
13
14
15
16
17
18
//! Core types for BakBon addressing and errors.
//!
//! - [`Protocol`] models the transport scheme (e.g. "tcp", "http"...).
//! - [`Address`] is a URI-like endpoint built on top of or [`Protocol`].
//! - [`Error`] and [`Result`] are used for BakBon error handling.

mod address;
mod error;
mod protocol;

pub use {
    address::Address,
    error::{
        Error,
        Result,
    },
    protocol::Protocol,
};