//! tbz-core: Block format, TIBET envelope, and zstd frame handling
//!
//! This crate defines the TBZ wire format — per-block authenticated
//! compression built on zstd frames with TIBET provenance.
/// TBZ magic bytes: 0x54425A (ASCII "TBZ")
pub const MAGIC: = ;
/// Current TBZ format version
pub const VERSION: u8 = 1;
/// Block types
/// JIS authorization level for a block
pub type JisLevel = u8;
// Re-export ed25519 types for consumers
pub use ;