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

#61 in Encoding

Download history 129388/week @ 2024-08-11 112483/week @ 2024-08-18 120006/week @ 2024-08-25 127990/week @ 2024-09-01 128463/week @ 2024-09-08 121727/week @ 2024-09-15 126321/week @ 2024-09-22 130774/week @ 2024-09-29 163579/week @ 2024-10-06 171338/week @ 2024-10-13 185727/week @ 2024-10-20 159228/week @ 2024-10-27 172434/week @ 2024-11-03 147647/week @ 2024-11-10 153035/week @ 2024-11-17 153711/week @ 2024-11-24

633,453 downloads per month
Used in 883 crates (119 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

~145–290KB