[package]
name = "nom"
version = "3.2.1"
authors = ["contact@geoffroycouprie.com"]
include = ["CHANGELOG.md", "LICENSE", ".gitignore", ".travis.yml", "Cargo.toml", "src/*.rs", "tests/*.rs"]
description = "A byte-oriented, zero-copy, parser combinators library"
documentation = "http://rust.unhandledexpression.com/nom/"
readme = "README.md"
keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"]
categories = ["parsing"]
license = "MIT"
repository = "https://github.com/Geal/nom"
[dependencies.memchr]
version = "^1.0.1"
default-features = false
[dependencies.compiler_error]
version = "0.1.1"
optional = true
[dependencies.regex]
version = "^0.2"
optional = true
[dependencies.lazy_static]
version = "^0.2.2"
optional = true
[features]
default = ["std", "stream"]
regexp = ["regex"]
verbose-errors = []
stream = []
nightly = ["compiler_error"]
regexp_macros = ["regexp", "lazy_static"]
std = ["memchr/use_std"]
[badges.travis-ci]
repository = "Geal/nom"