20 releases

0.7.3 Dec 20, 2023
0.7.2 Oct 27, 2023
0.7.0 Jul 3, 2023
0.6.3 Feb 15, 2023
0.3.0 Feb 1, 2021

#548 in Encoding

Download history 72/week @ 2023-12-23 26/week @ 2023-12-30 35/week @ 2024-01-06 34/week @ 2024-01-13 43/week @ 2024-01-20 44/week @ 2024-01-27 36/week @ 2024-02-03 37/week @ 2024-02-10 97/week @ 2024-02-17 104/week @ 2024-02-24 62/week @ 2024-03-02 77/week @ 2024-03-09 151/week @ 2024-03-16 284/week @ 2024-03-23 255/week @ 2024-03-30 51/week @ 2024-04-06

747 downloads per month
Used in 26 crates (25 directly)

Apache-2.0

79KB
1.5K SLoC

destream

Rust library for asynchronous stream (de)serialization


lib.rs:

Provides traits FromStream, Decoder, ToStream and Encoder, which are streaming/async analogues of serde's Deserialize, Deserializer, Serialize, and Serializer.

The structure and contents of this crate are based on serde but not compatible with it (primarily because serde doesn't support async). Most of the code which makes up destream is copied directly from serde with minimal modifications.

serde is dual-licensed under the MIT and Apache-2.0 licenses, which are available at https://github.com/serde-rs/serde/blob/master/LICENSE-MIT and https://github.com/serde-rs/serde/blob/master/LICENSE-APACHE respectively.

Important differences between destream and serde:

  • destream supports decoding from and encoding to a futures::Stream (obviously).
  • destream does not (yet) support the derive macro, so you can't derive FromStream or ToStream, and there is no built-in functionality for decoding/encoding a given struct.
  • Decoder assumes the static lifetime and only supports owned types, but Encoder uses a specific lifetime 'en. This is the opposite of serde.

destream itself does not implement support for any specific serialization format. destream_json provides support for streaming JSON.

Dependencies

~1.5–2.3MB
~45K SLoC