Skip to main content

keyvalues_serde/
lib.rs

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