20 releases

0.5.2 Oct 21, 2022
0.5.1 Jul 30, 2021
0.5.0 Jan 5, 2021
0.4.6 Sep 29, 2020
0.1.0 Oct 13, 2016

#51 in Encoding

Download history 75606/week @ 2024-01-03 87579/week @ 2024-01-10 96623/week @ 2024-01-17 98959/week @ 2024-01-24 102214/week @ 2024-01-31 94413/week @ 2024-02-07 99398/week @ 2024-02-14 99727/week @ 2024-02-21 92215/week @ 2024-02-28 93205/week @ 2024-03-06 97559/week @ 2024-03-13 98415/week @ 2024-03-20 95787/week @ 2024-03-27 111684/week @ 2024-04-03 107259/week @ 2024-04-10 86177/week @ 2024-04-17

418,493 downloads per month
Used in 557 crates (105 directly)

MIT/Apache

36KB
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–385KB