snacks 0.1.11

more nom parser-combinators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This crate includes more parser combinators to use with [`nom`].

pub use {
    anyhow::ParseAnyhow,
    find::{find_all, find_all_into, find_first},
    recognize_separated::{recognize_separated0, recognize_separated1},
    simple::{alphanumdot0, alphanumdot1},
    take_all::{take_all, take_all_into},
    weblink::{link_char, weblink},
};

mod anyhow;
mod find;
mod recognize_separated;
mod simple;
mod take_all;
mod weblink;