#![doc = include_str!("../README.md")]
#![allow(unknown_lints)]
#![allow(clippy::result_large_err)]
pub mod de;
pub mod error;
pub mod ser;
#[cfg(fuzzing)]
pub mod tokens;
#[cfg(not(fuzzing))]
mod tokens;
pub use keyvalues_parser as parser;
#[doc(inline)]
pub use de::{
from_reader, from_reader_with_key, from_str, from_str_with_key, from_vdf, from_vdf_with_key,
Deserializer,
};
#[doc(inline)]
pub use error::{Error, Result};
#[doc(inline)]
pub use ser::{to_string, to_string_with_key, to_writer, to_writer_with_key, Serializer};