xbp 0.7.0

XBP is a build pack and deployment management tool to deploy, rust, nextjs etc and manage the NGINX configs below it
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);
}