/// Application configuration constants
///
/// This module provides centralized configuration for the application.
/// Values are loaded at compile-time from Cargo.toml and can be extended
/// to support runtime configuration files in the future.
/// Application version from Cargo.toml
pub const VERSION: &str = env!;
/// Application name from Cargo.toml
pub const APP_NAME: &str = env!;
/// Application authors from Cargo.toml
pub const AUTHORS: &str = env!;
/// Application repository URL from Cargo.toml
pub const REPOSITORY: &str = env!;
/// Application description from Cargo.toml
pub const DESCRIPTION: &str = env!;