//! JIT support for postcard format.
//!
//! This module provides Tier-2 format JIT for postcard deserialization,
//! enabling direct byte parsing without going through the event abstraction.
//!
//! Postcard is a binary format with NO trivia (whitespace/comments), which
//! makes it an excellent test case for the format-agnostic Tier-2 design.
/// Debug print macro for JIT - uses tracing::debug! in all builds.
pub use jit_debug;
pub use PostcardJitFormat;
pub use ;