Rename serde_impl to serde.
This commit is contained in:
14
src/serde/mod.rs
Normal file
14
src/serde/mod.rs
Normal 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;
|
Reference in New Issue
Block a user