oxiquic 0.0.1

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

#![deny(unsafe_code)]

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