[package]
edition = "2024"
name = "bakbon"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "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."
homepage = "https://github.com/Xnil0/backlab"
documentation = "https://docs.rs/bakbon"
readme = "README.md"
keywords = [
"microkernel",
"infrastructure",
"distributed-systems",
"routing",
"queue",
]
categories = [
"network-programming",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/Xnil0/backlab.git"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "bakbon"
path = "src/lib.rs"
[[test]]
name = "integration_gateway"
path = "tests/integration_gateway.rs"
[[test]]
name = "integration_queue"
path = "tests/integration_queue.rs"
[[test]]
name = "integration_router"
path = "tests/integration_router.rs"
[dependencies.bytes]
version = "1.11.0"