#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
#![doc = include_str!("../README.md")]
extern crate alloc;
pub mod codec;
#[cfg(any(feature = "langs", test))]
pub mod langs;
#[cfg(any(feature = "parse", test))]
pub mod parse;
pub mod stream;
pub mod types;