picotoml/lib.rs
1//! A `no_std` TOML deserializer build for embedded systems. Can be used without an allocator.
2
3#![no_std]
4
5extern crate alloc;
6
7#[cfg(test)]
8extern crate std;
9
10mod de;
11mod error;
12mod lexer;
13mod peeking;
14
15pub use de::{from_str, Deserializer};
16pub use error::{Error, ErrorKind, Expected};