xbp 10.15.4

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
Documentation
pub mod api;
#[cfg(feature = "docker")]
pub mod docker;
#[cfg(feature = "kubernetes")]
pub mod kubernetes;
#[cfg(feature = "monitoring")]
pub mod monitoring;
#[cfg(feature = "nordvpn")]
pub mod nordvpn;
pub mod pm2;
pub mod project;
#[cfg(feature = "secrets")]
pub mod secrets;

pub use api::*;
#[cfg(feature = "docker")]
pub use docker::*;
#[cfg(feature = "kubernetes")]
pub use kubernetes::*;
#[cfg(feature = "monitoring")]
pub use monitoring::*;
#[cfg(feature = "nordvpn")]
pub use nordvpn::*;
pub use pm2::*;
pub use project::*;
#[cfg(feature = "secrets")]
pub use secrets::*;