parser-combinators 0.2.3

Parser combinators based on the Haskell library parsec
docs.rs failed to build parser-combinators-0.2.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: parser-combinators-0.7.1

parser-combinators

An implementation of (LL(1)) parser combinators for Rust, inspired by the Haskell library Parsec.

A parser combinators is, broadly speaking, a function which takes several parsers as arguments and returns a new parser, created by combining those parsers. For instance, the many parser takes one parser, p, as input and returns a new parser which applies p zero or more times.

The library is still unstable but if you end up trying it I welcome any feedback from your experience with it.

Build Status

Documentation and examples

crates.io