#serde #shim

std_serde_shims

Community Driven Serde Shims

2 releases

Uses old Rust 2015

0.2.1 Nov 22, 2018
0.2.0 Nov 22, 2018

#1746 in Encoding

Download history 44/week @ 2023-10-17 72/week @ 2023-10-24 29/week @ 2023-10-31 87/week @ 2023-11-07 42/week @ 2023-11-14 74/week @ 2023-11-21 74/week @ 2023-11-28 104/week @ 2023-12-05 57/week @ 2023-12-12 41/week @ 2023-12-19 16/week @ 2023-12-26 52/week @ 2024-01-02 95/week @ 2024-01-09 79/week @ 2024-01-16 33/week @ 2024-01-23 26/week @ 2024-01-30

248 downloads per month
Used in serde_shims

MIT license

4KB

serde_shims Build Status

Community Driven Serde Shims

Documentation

Many crates prefer to avoid natively providing Serde integration on the basis it could be unstable in the future, be annoying to maintain, or stifles innovation if there is ever a Serde competitor in the Rust serialization world.

However, keeping track of dozens or hundreds of lines of custom shim functions in my own projects has proven to be as much or more frustrating than if I were to add that functionality to those crates directly. The innability to share code between binaries or libraries is especially painful.

So, as a compromise, I present this crate as a way to provide serialize_with/deserialize_with functions or implementation macros for crates without native Serde implementations.

To enable these shims, simply add the crate to your Cargo.toml:

[dependencies]
bitflags_serde_shim = "0.2"
enum_primitive_serde_shim = "0.2"
mime_serde_shim = "0.2"
std_serde_shims = "0.2"

or as a legacy feature-based import with the meta crate:

[dependencies]
serde_shims = { version = "0.2", features = ["std", "mime"] }

If there is a crate you'd like to have a Serde shim for, or would like to contribute your own, feel free to open an issue or pull request!

Dependencies

~110–355KB