jax-daemon 0.1.17

End-to-end encrypted storage buckets with peer-to-peer synchronization
Documentation
//! Daemon-specific build information.
//!
//! This module captures build-time information for the daemon crate,
//! ensuring CARGO_PKG_VERSION and BUILD_FEATURES come from daemon's
//! compile environment rather than common's.

use common::version::BuildInfo;

/// Create build info using daemon's compile-time environment.
pub fn build_info() -> BuildInfo {
    BuildInfo {
        version: env!("CARGO_PKG_VERSION").to_string(),
        git_hash: option_env!("REPO_VERSION").unwrap_or("unknown").to_string(),
        build_profile: option_env!("BUILD_PROFILE")
            .unwrap_or("unknown")
            .to_string(),
        build_features: option_env!("BUILD_FEATURES").unwrap_or("none").to_string(),
        build_timestamp: option_env!("BUILD_TIMESTAMP")
            .unwrap_or("unknown")
            .to_string(),
        rust_version: option_env!("RUST_VERSION").unwrap_or("unknown").to_string(),
        target: option_env!("BUILD_TARGET").unwrap_or("unknown").to_string(),
        host: option_env!("BUILD_HOST").unwrap_or("unknown").to_string(),
    }
}