ktav 0.2.0

Ktav — a plain configuration format. Three rules, zero indentation, zero quoting. Serde-native.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Dynamic representation of a Ktav document.

pub mod object_map;
pub mod value;

pub use object_map::ObjectMap;
pub use value::{Scalar, Value};

#[cfg(test)]
mod tests;