2014-10-27 17:21:04 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "nom"
|
2016-07-20 09:47:38 +00:00
|
|
|
version = "1.2.4"
|
2014-10-27 17:21:04 +00:00
|
|
|
authors = [ "contact@geoffroycouprie.com" ]
|
2015-09-08 16:15:45 +00:00
|
|
|
description = "A byte-oriented, zero-copy, parser combinators library"
|
2015-01-17 17:40:40 +00:00
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/Geal/nom"
|
2015-03-24 07:22:12 +00:00
|
|
|
readme = "README.md"
|
|
|
|
documentation = "http://rust.unhandledexpression.com/nom/"
|
2015-08-03 17:12:47 +00:00
|
|
|
keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"]
|
2015-05-16 18:39:39 +00:00
|
|
|
|
2015-11-06 14:37:04 +00:00
|
|
|
include = [
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
".gitignore",
|
|
|
|
".travis.yml",
|
|
|
|
"Cargo.toml",
|
|
|
|
"src/*.rs",
|
|
|
|
"tests/*.rs"
|
|
|
|
]
|
|
|
|
|
2015-05-16 18:39:39 +00:00
|
|
|
[features]
|
|
|
|
core = []
|
2015-07-01 08:32:27 +00:00
|
|
|
nightly = []
|
2015-11-06 16:01:15 +00:00
|
|
|
default = ["stream"]
|
2015-09-07 21:08:14 +00:00
|
|
|
regexp = ["regex"]
|
2016-02-23 16:23:45 +00:00
|
|
|
regexp_macros = ["regexp", "lazy_static"]
|
2015-11-06 16:01:15 +00:00
|
|
|
stream = []
|
2015-09-07 21:08:14 +00:00
|
|
|
|
|
|
|
[dependencies.regex]
|
2016-03-14 11:45:01 +00:00
|
|
|
version = "^0.1.56"
|
2015-09-07 21:08:14 +00:00
|
|
|
optional = true
|
|
|
|
|
2016-02-23 16:23:45 +00:00
|
|
|
[dependencies.lazy_static]
|
2016-07-20 09:17:59 +00:00
|
|
|
version = "^0.2.1"
|
2015-09-07 21:08:14 +00:00
|
|
|
optional = true
|
|
|
|
|