A bencode parser written in Rust.
Bencode is the encoding used by the Bittorrent specification to store loosely-structed metadata.
It supports the following data types:
- Integers:
i<int32>e
- Strings:
<size>:<string>
- Lists:
l<elements>e
- Dictionaries:
d<elements>e>
whereelements
is structured askey:value