Bende

A rust bencode encoding/decoding implementation backed by serde.

About

This is one of a few bencode implementations available for rust. Though there are alternatives (see below), implementing bencode is both fun and a good learning experience. It also never hurts to have one more alternative.

Alternatives

There are more, but some are no longer maintained.

Usage

Add the library as a dependency to Cargo.toml

toml [dependencies] bende = "0.3.0"

Example

```rust use serde::{Deserialize, Serialize};

[derive(Debug, PartialEq, Serialize, Deserialize)]

struct Person { name: String, age: u8, is_employed: bool, }

let jerry = Person { name: "Jerry Smith".tostring(), age: 50, isemployed: false, };

let bytes = bende::encode(&jerry).unwrap(); assert_eq!(bende::decode::(&bytes).unwrap(), jerry); ```

Unsupported Types

The types that are currently not supported are:

Floats will never be supported, but char and enum support will probably be added in the future.

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Notes