Rename serde_impl to serde.

This commit is contained in:
Stephen Chung
2021-02-19 15:17:14 +08:00
parent bd5ff457d2
commit b789c319e7
9 changed files with 19 additions and 22 deletions

14
src/serde/mod.rs Normal file
View File

@@ -0,0 +1,14 @@
//! _(SERDE)_ Serialization and deserialization support for [`serde`](https://crates.io/crates/serde).
//! Exported under the `serde` feature only.
mod de;
mod deserialize;
mod ser;
mod serialize;
mod str;
#[cfg(feature = "metadata")]
mod metadata;
pub use de::from_dynamic;
pub use ser::to_dynamic;