ockam_command 0.150.0

End-to-end encryption and mutual authentication for distributed applications.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod command;
pub mod compile_env_vars;

pub use compile_env_vars::{load_compile_time_vars, BrandingCompileEnvVars};
use ockam_api::command::Commands;
use ockam_api::output::OutputBranding;
use once_cell::sync::Lazy;

pub(crate) static OUTPUT_BRANDING: Lazy<OutputBranding> = Lazy::new(|| {
    OutputBranding::new(
        BrandingCompileEnvVars::brand_name().to_string(),
        BrandingCompileEnvVars::bin_name().to_string(),
        Commands::new(BrandingCompileEnvVars::commands()),
    )
});