serde_bencode 0.2.2

A Serde backed Bencode encoding/decoding library for Rust.
Documentation
1
2
3
4
5
6
7
8
pub mod error;
pub mod ser;
pub mod de;
pub mod value;

pub use error::{Error, Result};
pub use ser::{to_bytes, to_string, Serializer};
pub use de::{from_str, from_bytes, Deserializer};