picotoml 0.1.0

A `no_std` TOML deserializer build for embedded systems. Can be used without an allocator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A `no_std` TOML deserializer build for embedded systems. Can be used without an allocator.

#![no_std]

extern crate alloc;

#[cfg(test)]
extern crate std;

mod de;
mod error;
mod lexer;
mod peeking;

pub use de::{from_str, Deserializer};
pub use error::{Error, ErrorKind, Expected};