oxicrypto 0.0.1

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

#![deny(unsafe_code)]

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