21 releases

0.6.1 Sep 11, 2024
0.5.2 Oct 21, 2022
0.5.1 Jul 30, 2021
0.5.0 Jan 5, 2021
0.1.0 Oct 13, 2016

#62 in Encoding

Download history 113158/week @ 2024-08-21 121231/week @ 2024-08-28 132053/week @ 2024-09-04 128254/week @ 2024-09-11 122335/week @ 2024-09-18 124650/week @ 2024-09-25 141255/week @ 2024-10-02 170521/week @ 2024-10-09 181000/week @ 2024-10-16 176429/week @ 2024-10-23 165541/week @ 2024-10-30 159951/week @ 2024-11-06 150624/week @ 2024-11-13 151783/week @ 2024-11-20 155792/week @ 2024-11-27 137995/week @ 2024-12-04

625,944 downloads per month
Used in 896 crates (120 directly)

MIT/Apache

37KB
911 lines

RLP

Recursive-length-prefix encoding, decoding, and compression in Rust.

License

Unlike most parts of Parity, which fall under the GPLv3, this package is dual-licensed under MIT/Apache2 at the user's choice. Find the associated license files in this directory as LICENSE-MIT and LICENSE-APACHE2 respectively.


lib.rs:

Recursive Length Prefix serialization crate.

Allows encoding, decoding, and view onto rlp-slice

What should you use when?

Use encode function when:

  • You want to encode something inline.
  • You do not work on big set of data.
  • You want to encode whole data structure at once.

Use decode function when:

  • You want to decode something inline.
  • You do not work on big set of data.
  • You want to decode whole rlp at once.

Use RlpStream when:

  • You want to encode something in portions.
  • You encode a big set of data.

Use Rlp when:

  • You need to handle data corruption errors.
  • You are working on input data.
  • You want to get view onto rlp-slice.
  • You don't want to decode whole rlp at once.

Dependencies

~150–290KB