xbp 0.5.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
//! 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);
}