abpl 0.1.1

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.
1
2
3
4
5
6
7
8
9
pub mod encoding;
#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "std")]
mod maybe_borrowed;
#[cfg(feature = "std")]
pub use maybe_borrowed::MaybeBorrowed;
#[cfg(feature = "std")]
pub mod hotswap_state;