oxitext 0.0.1

Pure Rust text processing library (name reservation)
Documentation
//! OxiText - Pure Rust text processing library
//!
//! This is a name reservation crate. Full implementation coming soon.
//!
//! Copyright (c) 2026 COOLJAPAN OU (Team Kitasan)

#![deny(unsafe_code)]

/// OxiText 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");
    }
}