/// The name of the euv package.
pub const EUV_PACKAGE_NAME: &str = env!;
/// The current version of the euv package.
pub const EUV_VERSION: &str = env!;
/// The description of the euv package.
pub const EUV_DESCRIPTION: &str = env!;
/// The repository URL of the euv package.
pub const EUV_REPOSITORY: &str = env!;
/// The repository organization and project name of the euv package.
pub const EUV_REPOSITORY_NAME: &str = env!;
/// The authors of the euv package.
pub const EUV_AUTHORS: &str = env!;
/// The license of the euv package.
pub const EUV_LICENSE: &str = env!;
/// The Rust edition used by the euv package.
pub const EUV_EDITION: &str = env!;
/// The build date of the euv package, formatted as YYYY-MM-DD.
pub const EUV_BUILD_DATE: &str = env!;
/// The build clock time of the euv package, formatted as HH:MM:SS.
pub const EUV_BUILD_CLOCK: &str = env!;
/// The build Unix microsecond timestamp of the euv package, as a pure numeric value.
pub const EUV_BUILD_TIMESTAMP: &str = env!;