s2n-quic-dc 0.87.0

Internal crate used by s2n-quic
Documentation
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

pub mod allocator;
pub mod clock;
pub mod congestion;
pub mod connection_close;
pub mod control;
pub mod credentials;
pub mod crypto;
pub mod datagram;
pub mod either;
pub mod event;
pub mod msg;
pub mod packet;
pub mod path;
pub mod pool;
pub mod psk;
pub mod random;
pub mod recovery;
pub mod socket;
pub mod stream;
pub mod sync;
pub mod task;
pub mod uds;

#[cfg(any(test, feature = "testing"))]
#[allow(
    clippy::unwrap_used,
    clippy::unwrap_in_result,
    clippy::panic,
    clippy::panic_in_result_fn,
    reason = "test-support helpers may panic to surface setup failures"
)]
pub mod testing;

pub use s2n_quic_core::dc::{Version, SUPPORTED_VERSIONS};