command_vault/
version.rs

1
2
3
4
5
6
7
8
9
10
11
12
/// The current version of the application.
/// This should match the version in Cargo.toml
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

/// The name of the application
pub const APP_NAME: &str = env!("CARGO_PKG_NAME");

/// The authors of the application
pub const APP_AUTHORS: &str = env!("CARGO_PKG_AUTHORS");

/// The description of the application
pub const APP_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");