oxiui 0.0.1

Pure Rust UI framework (name reservation)
Documentation
//! OxiUI - Pure Rust UI framework
//!
//! This is a name reservation crate. Full implementation coming soon.
//!
//! Copyright (c) 2026 COOLJAPAN OU (Team Kitasan)

#![deny(unsafe_code)]

/// OxiUI version
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_version() {
        assert_eq!(VERSION, "0.0.1");
    }
}