ktav 0.1.4

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

pub mod error;
pub mod result;

pub use error::Error;
pub use result::Result;

#[cfg(test)]
mod tests;