wireframe 0.3.0

Simplify building servers and clients for custom binary protocols.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared helpers for applying transport-level fragmentation to packets.
//!
//! **Deprecated:** This module re-exports [`fragment_packet`] from its
//! canonical location in [`crate::fragment`]. New code should import directly
//! from [`crate::fragment::fragment_packet`] instead.

// Re-export from canonical location for backward compatibility.
#[deprecated(
    since = "0.3.0",
    note = "use `crate::fragment::fragment_packet` instead"
)]
pub use crate::fragment::fragment_packet;