asupersync 0.3.4

Spec-first, cancel-correct, capability-secure async runtime for Rust.
Documentation
//! ATP QUIC Handshake Implementation
//!
//! Complete QUIC v1 handshake implementation including:
//! - Version negotiation
//! - Retry packet handling
//! - Initial/Handshake packet flow
//! - Transport parameter validation
//! - Key derivation and update lifecycle
//! - Deterministic trace generation for replay

pub mod key_schedule;
pub mod retry;
pub mod state_machine;
pub mod traces;
pub mod transport_params;
pub mod version_negotiation;

pub use key_schedule::*;
pub use retry::*;
pub use state_machine::*;
pub use traces::*;
pub use transport_params::*;
pub use version_negotiation::*;