babbel_bencode 0.1.1

Fast, binary-safe BitTorrent Bencode parser, serializer, and DOM in pure Rust
1
2
3
4
5
6
7
8
9
10
/// Module implementing the default recursive bencode parser.
/// Provides standard bencode parsing functionality using recursive descent approach.
pub mod default;

/// Zero-copy borrowed parser for embedded systems
pub mod borrowed;

/// Iterative (stack-based) parser for deeply nested structures
/// Avoids recursion to prevent stack overflow on embedded systems
pub mod iterative;