# Bencoderus Rust library for encoding and decoding the Bencode coding. ## Usage Decode: ``` // decode transforms Bencoded bytes to objects. pub fn decode(src: Vec) -> Bencoding { ``` Encode: ``` // encode transforms objects to Bencoded bytes. pub fn encode(benc: Bencoding) -> Vec { ``` ## License BSD 3-Clause: [LICENSE.txt](LICENSE.txt) [LICENSE](LICENSE.txt)