yam-core 0.1.0

Pure Rust YAML reader and writer (to be added)
Documentation
1
2
3
4
5
6
7
8
9
10
#![no_std]
extern crate core;
extern crate alloc;

pub use tokenizer::Lexer;

pub mod error;
pub mod escaper;
pub mod tokenizer;
pub mod treebuild;