xparse 0.1.10

A parser combinator that is fully statically dispatched and supports both sync & async parsing.
Documentation
#![cfg_attr(not(test), no_std)]
extern crate alloc;

pub mod parse;
pub mod source;
pub use parse::Parse;
#[cfg(feature = "async")]
pub use source::AsyncSource;
pub use source::{Source, SourceBase};
mod error;
pub use error::*;
pub mod ops;
mod tuple;
#[cfg(feature = "macros")]
pub use parse::parser;
pub use tuple::Concat;

extern crate self as xparse;

#[cfg(test)]
mod json;