//! `ben` is an efficient Bencode parser which parses the structure into
//! a flat stream of tokens rather than an actual tree and thus avoids
//! unneccessary allocations.
moddecode;modencode;modparse;pubusedecode::{Dict, List, Node};pubuseencode::Encoder;pubuseparse::Error;pubtypeResult<T>=std::result::Result<T, Error>;