2014-10-27 17:21:04 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "nom"
|
2019-03-23 11:01:00 +00:00
|
|
|
version = "4.2.3"
|
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"
|
2018-04-08 09:57:13 +00:00
|
|
|
documentation = "https://docs.rs/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",
|
2019-03-06 17:20:02 +00:00
|
|
|
"src/*/*.rs",
|
2019-03-23 11:01:00 +00:00
|
|
|
"tests/*.rs",
|
|
|
|
"build.rs"
|
2015-11-06 14:37:04 +00:00
|
|
|
]
|
|
|
|
|
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"]
|
2015-09-07 21:08:14 +00:00
|
|
|
|
|
|
|
[dependencies.regex]
|
2018-05-02 12:45:32 +00:00
|
|
|
version = "^1.0"
|
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
|
|
|
|
2019-02-23 15:38:44 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.2"
|
2019-02-23 17:04:28 +00:00
|
|
|
jemallocator = "^0.1"
|
2019-02-23 15:38:44 +00:00
|
|
|
|
2018-10-12 14:27:42 +00:00
|
|
|
[build-dependencies]
|
|
|
|
version_check = "^0.1"
|
|
|
|
|
2018-08-14 09:09:27 +00:00
|
|
|
[package.metadata.docs.rs]
|
2019-04-10 14:30:48 +00:00
|
|
|
features = [ "alloc", "std", "regexp", "regexp_macros"]
|
2018-08-14 09:09:27 +00:00
|
|
|
all-features = true
|
|
|
|
|
2019-02-23 17:04:28 +00:00
|
|
|
[profile.bench]
|
|
|
|
debug = true
|
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
|
|
|
|
2018-04-08 19:33:24 +00:00
|
|
|
[[test]]
|
|
|
|
name = "arithmetic"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "arithmetic_ast"
|
|
|
|
required-features = ["alloc"]
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "blockbuf-arithmetic"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "complete_arithmetic"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "complete_float"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "css"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "custom_errors"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "float"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "inference"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "ini"
|
|
|
|
required-features = ["alloc"]
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "ini_str"
|
|
|
|
required-features = ["alloc"]
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "issues"
|
2018-04-23 12:08:30 +00:00
|
|
|
required-features = ["alloc", "regexp_macros"]
|
2018-04-08 19:33:24 +00:00
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "json"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "mp4"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "multiline"
|
|
|
|
required-features = ["alloc"]
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "named_args"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "overflow"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "reborrow_fold"
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "test1"
|
|
|
|
|
2019-02-23 15:38:44 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "arithmetic"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "http"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "ini"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "ini_complete"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "ini_str"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "json"
|
|
|
|
harness = false
|
|
|
|
|
2019-04-10 14:42:11 +00:00
|
|
|
[[example]]
|
|
|
|
name = "json"
|
|
|
|
required-features = ["alloc"]
|
|
|
|
|
2017-01-21 10:58:35 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "Geal/nom" }
|
2018-05-04 09:35:44 +00:00
|
|
|
coveralls = { repository = "Geal/nom", branch = "master", service = "github" }
|
|
|
|
maintenance = { status = "actively-developed" }
|