serde_hooks 0.1.1

Runtime hooks for serde
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(missing_docs)]
#![doc = include_str!("../README.md")]
#![doc = include_str!("../docs/lib.md")]

/// Serialization with runtime hooks.
pub mod ser;

mod case;
mod path;
mod value;

pub use case::Case;
pub use path::{Path, PathMapKey, PathSegment};
pub use value::{StaticValue, Value};