1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! ## Community Driven Serde Shims
//!
//! 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 for crates without
//! native Serde implementations.
//!
//! To enable these shims, simply add the crate to your `Cargo.toml`
//! with the desired crate shims as the crate features:
//!
//! ```toml
//! [dependencies]
//! serde_shims = { version = "*", features = ["std", "mime"] }
//! ```
//!

#[doc(hidden)]
pub extern crate serde;

#[cfg(feature = "enum_primitive")]
#[doc(hidden)]
pub extern crate enum_primitive as enum_primitive_internal;

#[cfg(feature = "enum_primitive")]
pub mod enum_primitive;

#[cfg(feature = "bitflags")]
#[doc(hidden)]
pub extern crate bitflags as bitflags_internal;

#[cfg(feature = "bitflags")]
pub mod bitflags;

#[cfg(feature = "std")]
pub mod std_shims;

#[cfg(feature = "mime")]
pub mod mime;

#[cfg(feature = "chrono")]
pub mod chrono;