mirror of
https://gitee.com/openharmony/third_party_rust_nom
synced 2024-11-23 07:29:54 +00:00
caa9d4e628
bitflags 1.3 (released yesterday) introduces some const fn usage incompatible with Rust 1.41.1
173 lines
2.7 KiB
TOML
173 lines
2.7 KiB
TOML
[package]
|
|
|
|
name = "nom"
|
|
version = "7.0.0-alpha2"
|
|
authors = [ "contact@geoffroycouprie.com" ]
|
|
description = "A byte-oriented, zero-copy, parser combinators library"
|
|
license = "MIT"
|
|
repository = "https://github.com/Geal/nom"
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/nom"
|
|
keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"]
|
|
categories = ["parsing"]
|
|
edition = "2018"
|
|
autoexamples = false
|
|
|
|
include = [
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md",
|
|
".gitignore",
|
|
".travis.yml",
|
|
"Cargo.toml",
|
|
"src/*.rs",
|
|
"src/*/*.rs",
|
|
"tests/*.rs",
|
|
"doc/nom_recipes.md",
|
|
"build.rs"
|
|
]
|
|
|
|
[features]
|
|
alloc = []
|
|
std = ["alloc", "memchr/use_std"]
|
|
default = ["std", "lexical"]
|
|
lexical = ["lexical-core", "bitflags"]
|
|
docsrs = []
|
|
|
|
[dependencies.memchr]
|
|
version = "2.0"
|
|
default-features = false
|
|
|
|
[dependencies.lexical-core]
|
|
version = "^0.7.5"
|
|
optional = true
|
|
|
|
[dependencies.bitflags]
|
|
version = "=1.2"
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
jemallocator = "^0.3"
|
|
doc-comment = "0.3"
|
|
|
|
[build-dependencies]
|
|
version_check = "0.9"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = [ "alloc", "std", "lexical", "docsrs"]
|
|
all-features = true
|
|
|
|
[profile.bench]
|
|
debug = true
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[[test]]
|
|
name = "arithmetic"
|
|
|
|
[[test]]
|
|
name = "arithmetic_ast"
|
|
required-features = ["alloc"]
|
|
|
|
[[test]]
|
|
name = "blockbuf-arithmetic"
|
|
|
|
[[test]]
|
|
name = "css"
|
|
|
|
[[test]]
|
|
name = "custom_errors"
|
|
|
|
[[test]]
|
|
name = "float"
|
|
|
|
[[test]]
|
|
name = "ini"
|
|
required-features = ["alloc"]
|
|
|
|
[[test]]
|
|
name = "ini_str"
|
|
required-features = ["alloc"]
|
|
|
|
[[test]]
|
|
name = "issues"
|
|
required-features = ["alloc"]
|
|
|
|
[[test]]
|
|
name = "json"
|
|
|
|
[[test]]
|
|
name = "mp4"
|
|
required-features = ["alloc"]
|
|
|
|
[[test]]
|
|
name = "multiline"
|
|
required-features = ["alloc"]
|
|
|
|
[[test]]
|
|
name = "overflow"
|
|
|
|
[[test]]
|
|
name = "reborrow_fold"
|
|
|
|
[[test]]
|
|
name = "fnmut"
|
|
required-features = ["alloc"]
|
|
|
|
[[bench]]
|
|
name = "arithmetic"
|
|
path = "benches/arithmetic.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "number"
|
|
path = "benches/number.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "http"
|
|
path = "benches/http.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "ini"
|
|
path = "benches/ini.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "ini_str"
|
|
path = "benches/ini_str.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "json"
|
|
path = "benches/json.rs"
|
|
harness = false
|
|
|
|
[[example]]
|
|
name = "json"
|
|
required-features = ["alloc"]
|
|
path = "examples/json.rs"
|
|
|
|
#[[example]]
|
|
#name = "iterator"
|
|
|
|
[[example]]
|
|
name = "s_expression"
|
|
path = "examples/s_expression.rs"
|
|
required-features = ["alloc"]
|
|
|
|
[[example]]
|
|
name = "string"
|
|
required-features = ["alloc"]
|
|
path = "examples/string.rs"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "Geal/nom" }
|
|
coveralls = { repository = "Geal/nom", branch = "master", service = "github" }
|
|
maintenance = { status = "actively-developed" }
|