1#![doc = include_str!("../README.md")]
2#![allow(unknown_lints)]
3#![allow(clippy::result_large_err)]
4pub mod de;
7pub mod error;
8pub mod ser;
9
10#[cfg(fuzzing)]
12pub mod tokens;
13#[cfg(not(fuzzing))]
14mod tokens;
15
16pub use keyvalues_parser as parser;
17
18#[doc(inline)]
19pub use de::{
20 from_reader, from_reader_with_key, from_str, from_str_raw, from_str_raw_with_key,
21 from_str_with_key, from_vdf, from_vdf_with_key, Deserializer,
22};
23#[doc(inline)]
24pub use error::{Error, Result};
25#[doc(inline)]
26pub use ser::{to_string, to_string_with_key, to_writer, to_writer_with_key, Serializer};