[go: up one dir, main page]

figment 0.10.3

A configuration library so con-free, it's unreal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! [`Value`] and friends: types representing valid configuration values.
//!
mod value;
mod ser;
#[cfg(feature = "parse-value")]
mod parse;
mod de;
mod tag;

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};