[badges.coveralls]
branch = "main"
repository = "Geal/nom"
service = "github"
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
repository = "Geal/nom"
[dependencies.memchr]
default-features = false
version = "2.3"
[dev-dependencies.doc-comment]
version = "0.3"
[dev-dependencies.proptest]
version = "=1.0.0"
[features]
alloc = []
default = ["std"]
docsrs = []
std = ["alloc", "memchr/std"]
[lib]
name = "nom"
path = "src/lib.rs"
[package]
authors = ["contact@geoffroycouprie.com"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["parsing"]
description = "A byte-oriented, zero-copy, parser combinators library"
documentation = "https://docs.rs/nom"
edition = "2021"
include = ["CHANGELOG.md", "LICENSE", "README.md", ".gitignore", "Cargo.toml", "src/*.rs", "src/*/*.rs", "tests/*.rs", "doc/nom_recipes.md"]
keywords = ["parser", "parser-combinators", "parsing", "streaming", "bit"]
license = "MIT"
name = "nom"
readme = "README.md"
repository = "https://github.com/rust-bakery/nom"
rust-version = "1.65.0"
version = "8.0.0"
[package.metadata.docs.rs]
all-features = true
features = ["alloc", "std", "docsrs"]
rustdoc-args = ["--generate-link-to-definition"]
[profile.bench]
codegen-units = 1
debug = 2
lto = true
[[test]]
name = "arithmetic"
path = "tests/arithmetic.rs"
[[test]]
name = "arithmetic_ast"
path = "tests/arithmetic_ast.rs"
required-features = ["alloc"]
[[test]]
name = "css"
path = "tests/css.rs"
[[test]]
name = "custom_errors"
path = "tests/custom_errors.rs"
[[test]]
name = "escaped"
path = "tests/escaped.rs"
[[test]]
name = "expression_ast"
path = "tests/expression_ast.rs"
required-features = ["alloc"]
[[test]]
name = "float"
path = "tests/float.rs"
[[test]]
name = "fnmut"
path = "tests/fnmut.rs"
required-features = ["alloc"]
[[test]]
name = "ini"
path = "tests/ini.rs"
required-features = ["alloc"]
[[test]]
name = "ini_str"
path = "tests/ini_str.rs"
required-features = ["alloc"]
[[test]]
name = "issues"
path = "tests/issues.rs"
required-features = ["alloc"]
[[test]]
name = "json"
path = "tests/json.rs"
[[test]]
name = "mp4"
path = "tests/mp4.rs"
required-features = ["alloc"]
[[test]]
name = "multiline"
path = "tests/multiline.rs"
required-features = ["alloc"]
[[test]]
name = "overflow"
path = "tests/overflow.rs"
[[test]]
name = "reborrow_fold"
path = "tests/reborrow_fold.rs"