1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! [`Value`] and friends: types representing valid configuration values. //! mod value; mod ser; mod de; mod tag; mod parse; mod escape; pub mod magic; pub(crate) use {self::ser::*, self::de::*}; pub use tag::Tag; pub use value::{Value, Map, Num, Dict, Empty}; pub use uncased::{Uncased, UncasedStr};