bendy 0.6.1

A rust library for encoding and decoding bencode with enforced canonicalization rules.
Documentation
1
2
3
4
5
6
7
8
//! State tracking for decoding and encoding

mod state;
mod structure_error;
mod token;

pub use self::token::Token;
pub(crate) use self::{state::StateTracker, structure_error::StructureError};