[package]
edition = "2021"
name = "oni-comb-parser"
version = "2.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rebooted parser combinator library"
readme = "README.md"
license = "MIT OR Apache-2.0"
[features]
default = []
regex = ["dep:regex-automata"]
[lib]
name = "oni_comb_parser"
path = "src/lib.rs"
[[test]]
name = "arithmetic"
path = "tests/arithmetic.rs"
[[test]]
name = "bench_correctness"
path = "tests/bench_correctness.rs"
[[test]]
name = "byte_input_basic"
path = "tests/byte_input_basic.rs"
[[test]]
name = "byte_input_combinator"
path = "tests/byte_input_combinator.rs"
[[test]]
name = "byte_input_recursive"
path = "tests/byte_input_recursive.rs"
[[test]]
name = "chain"
path = "tests/chain.rs"
[[test]]
name = "choice"
path = "tests/choice.rs"
[[test]]
name = "error_reporting"
path = "tests/error_reporting.rs"
[[test]]
name = "escaped"
path = "tests/escaped.rs"
[[test]]
name = "flat_map"
path = "tests/flat_map.rs"
[[test]]
name = "fold"
path = "tests/fold.rs"
[[test]]
name = "into"
path = "tests/into.rs"
[[test]]
name = "json_subset"
path = "tests/json_subset.rs"
[[test]]
name = "lexeme"
path = "tests/lexeme.rs"
[[test]]
name = "many1"
path = "tests/many1.rs"
[[test]]
name = "prelude"
path = "tests/prelude.rs"
[[test]]
name = "primitives"
path = "tests/primitives.rs"
[[test]]
name = "quoted_string"
path = "tests/quoted_string.rs"
[[test]]
name = "recursive"
path = "tests/recursive.rs"
[[test]]
name = "repeat"
path = "tests/repeat.rs"
[[test]]
name = "satisfy"
path = "tests/satisfy.rs"
[[test]]
name = "sep_by"
path = "tests/sep_by.rs"
[[test]]
name = "sequence"
path = "tests/sequence.rs"
[[test]]
name = "str_input"
path = "tests/str_input.rs"
[[test]]
name = "take_while"
path = "tests/take_while.rs"
[[test]]
name = "text_parsers"
path = "tests/text_parsers.rs"
[[test]]
name = "uri_tokenizer"
path = "tests/uri_tokenizer.rs"
[[test]]
name = "zip_left_right"
path = "tests/zip_left_right.rs"
[[bench]]
name = "alloc_count"
path = "benches/alloc_count.rs"
harness = false
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false
[[bench]]
name = "json_full"
path = "benches/json_full.rs"
harness = false
[dependencies.regex-automata]
version = "0.4"
features = [
"alloc",
"meta",
"syntax",
]
optional = true
default-features = false
[dev-dependencies.chumsky]
version = "0.12"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.dhat]
version = "0.3"
[dev-dependencies.nom]
version = "8"
[dev-dependencies.pom]
version = "3"
[dev-dependencies.winnow]
version = "0.7"