xbp 10.7.0

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
Documentation
1
2
3
4
5
6
7
8
9
//! Version helper (optional)
//!
//! clap already wires `--version`. Keep this for custom programmatic version
//! printing if needed.
/// Print program version from Cargo metadata.
pub async fn print_version() {
    let version = env!("CARGO_PKG_VERSION");
    println!("XBP Version: {}", version);
}