babbel_bencode 0.1.1

Fast, binary-safe BitTorrent Bencode parser, serializer, and DOM in pure Rust
/// Module implementing bencode data structure types and operations.
///
/// This module provides the core functionality for working with bencode format:
/// * Parsing raw bencode data into structured representations
/// * Manipulating bencode data structures in memory
/// * Serializing bencode structures back to their encoded form
///
/// Supports all bencode data types:
/// * Byte strings (length-prefixed)
/// * Integers
/// * Lists (ordered sequences)
/// * Dictionaries (key-value pairs)
pub mod node;

/// Zero-copy borrowed node implementation for embedded systems
pub mod borrowed;

/// Fixed-capacity node implementation using const generics
pub mod fixed;

/// Schema validation and field querying extension trait
pub mod query;