abpl 0.1.0

A collection of Rust boilerplate: a reloadable-systemd-service lifecycle helper, a hot-reloading axum wrapper, a serializable/typed error derive macro, and small utility newtypes.
Documentation

ABPL: Aritz's BoilerPlate Library

A collection of junk that I only want to write once.

A Rust crate of infrastructure for small services: a reloadable-systemd-service lifecycle helper, a hot-reloading axum wrapper, a serializable/typed error derive macro, a tokio runtime bridge for mixing sync and async code, and various small newtypes.

Almost everything beyond std is opt-in behind Cargo features -- see the crate-level docs for the full list and what each one unlocks:

cargo doc --features test --open

Development

This project uses Nix for its dev environment:

nix-shell

which provides the Rust toolchain, rust-analyzer, clippy, and cargo-llvm-cov.

Run the test suite with:

cargo test --features test

and check coverage with:

cargo llvm-cov --features test --html

License

AGPL-3.0-or-later -- see LICENSE.