keyvalues3 1.0.0

A Rust library and CLI tool for parsing, formatting, and converting Valve's KeyValues3 (KV3) text format.
Documentation
mod from_str;
mod header;
mod metadata;
mod object_key;
mod to_string;
mod value;

#[cfg(feature = "json")]
mod to_json;

pub use from_str::*;
pub use header::*;
pub use metadata::*;
pub use object_key::*;
pub use to_string::*;
pub use value::*;

#[cfg(feature = "json")]
pub use to_json::*;