xbp 0.9.1

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
10
11
12
13
//! Version helper (optional)
//!
//! clap already wires `--version`. Keep this for custom programmatic version
//! printing if needed.
use tracing::info;

/// Print program version from Cargo metadata.
pub async fn print_version() {
    let version = env!("CARGO_PKG_VERSION");
    info!("XBP Version: {}", version);
}