ktav 0.3.1

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::{CompoundKind, ConflictKind, Error, ErrorKind, Span};
pub use result::Result;

#[cfg(test)]
mod tests;