2014-10-27 17:21:04 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "nom"
|
2018-03-12 10:16:00 +00:00
|
|
|
version = "4.0.0-beta2"
|
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"]
|
2017-01-20 16:06:40 +00:00
|
|
|
categories = ["parsing"]
|
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]
|
2018-02-05 15:04:11 +00:00
|
|
|
alloc = []
|
|
|
|
std = ["alloc", "memchr/use_std"]
|
2017-12-03 15:37:34 +00:00
|
|
|
default = ["std"]
|
2015-09-07 21:08:14 +00:00
|
|
|
regexp = ["regex"]
|
2016-02-23 16:23:45 +00:00
|
|
|
regexp_macros = ["regexp", "lazy_static"]
|
2016-08-24 13:37:10 +00:00
|
|
|
verbose-errors = []
|
2015-09-07 21:08:14 +00:00
|
|
|
|
|
|
|
[dependencies.regex]
|
2017-01-27 11:25:58 +00:00
|
|
|
version = "^0.2"
|
2015-09-07 21:08:14 +00:00
|
|
|
optional = true
|
|
|
|
|
2016-02-23 16:23:45 +00:00
|
|
|
[dependencies.lazy_static]
|
2017-11-30 16:42:52 +00:00
|
|
|
version = "^1.0"
|
2015-09-07 21:08:14 +00:00
|
|
|
optional = true
|
|
|
|
|
2017-05-10 09:41:15 +00:00
|
|
|
[dependencies.memchr]
|
2017-11-25 12:21:33 +00:00
|
|
|
version = "^2.0"
|
2017-05-24 16:54:36 +00:00
|
|
|
default-features = false
|
2017-05-10 09:41:15 +00:00
|
|
|
|
2016-11-25 07:48:37 +00:00
|
|
|
#[dev-dependencies.bytes]
|
|
|
|
#git = "https://github.com/carllerche/bytes"
|
|
|
|
#rev = "a7d38e29"
|
2017-01-21 10:58:35 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "Geal/nom" }
|