euv-example 0.5.32

An example application demonstrating the euv UI framework with reactive signals, custom components, and WebAssembly.
Documentation
/// The name of the euv package.
pub(crate) const EUV_PACKAGE_NAME: &str = env!("EUV_PACKAGE_NAME");

/// The current version of the euv package.
pub(crate) const EUV_VERSION: &str = env!("EUV_VERSION");

/// The description of the euv package.
pub(crate) const EUV_DESCRIPTION: &str = env!("EUV_DESCRIPTION");

/// The repository URL of the euv package.
pub(crate) const EUV_REPOSITORY: &str = env!("EUV_REPOSITORY");

/// The repository organization and project name of the euv package.
pub(crate) const EUV_REPOSITORY_NAME: &str = env!("EUV_REPOSITORY_NAME");

/// The authors of the euv package.
pub(crate) const EUV_AUTHORS: &str = env!("EUV_AUTHORS");

/// The license of the euv package.
pub(crate) const EUV_LICENSE: &str = env!("EUV_LICENSE");

/// The Rust edition used by the euv package.
pub(crate) const EUV_EDITION: &str = env!("EUV_EDITION");

/// The build date of the euv package, formatted as YYYY-MM-DD.
pub(crate) const EUV_BUILD_DATE: &str = env!("EUV_BUILD_DATE");

/// The build clock time of the euv package, formatted as HH:MM:SS.
pub(crate) const EUV_BUILD_CLOCK: &str = env!("EUV_BUILD_CLOCK");

/// The build Unix microsecond timestamp of the euv package, as a pure numeric value.
pub(crate) const EUV_BUILD_TIMESTAMP: &str = env!("EUV_BUILD_TIMESTAMP");