ez-bencoding 0.2.0

ez-bencoding is a bencoding library, which uses the bdecode algorithm from libtorrent 3rd edition
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![feature(string_from_utf8_lossy_owned)]
#![feature(ptr_as_ref_unchecked)]
#![feature(str_from_raw_parts)]

mod error;
mod decode;

pub use error::*;
pub use decode::*;

type BdecodeResult<T> = std::result::Result<T, BdecodeError>;