parse_that 0.3.1

Zero-copy parser combinator library for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "parse_that"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-copy parser combinator library for Rust"
readme = false
license = "MIT"
repository = "https://github.com/mkbabb/parse-that"
resolver = "2"

[features]
default = []
diagnostics = ["dep:colored"]

[lib]
name = "parse_that"
path = "src/lib.rs"

[[test]]
name = "combinator_test"
path = "tests/combinator_test.rs"

[[test]]
name = "css_parse_test"
path = "tests/css_parse_test.rs"

[[test]]
name = "css_recovery_test"
path = "tests/css_recovery_test.rs"

[[test]]
name = "csv_test"
path = "tests/csv_test.rs"

[[test]]
name = "debug_test"
path = "tests/debug_test.rs"

[[test]]
name = "json_test"
path = "tests/json_test.rs"

[[bench]]
name = "bbnf_css"
path = "benches/bbnf_css.rs"
harness = false

[[bench]]
name = "bbnf_json"
path = "benches/bbnf_json.rs"
harness = false

[[bench]]
name = "cssparser_bench"
path = "benches/cssparser_bench.rs"
harness = false

[[bench]]
name = "jiter"
path = "benches/jiter.rs"
harness = false

[[bench]]
name = "lightningcss_bench"
path = "benches/lightningcss_bench.rs"
harness = false

[[bench]]
name = "micro_parse_that"
path = "benches/micro_parse_that.rs"
harness = false

[[bench]]
name = "nom"
path = "benches/nom.rs"
harness = false

[[bench]]
name = "parse_that_combinator"
path = "benches/parse_that_combinator.rs"
harness = false

[[bench]]
name = "parse_that_css"
path = "benches/parse_that_css.rs"
harness = false

[[bench]]
name = "pest"
path = "benches/pest.rs"
harness = false

[[bench]]
name = "serde"
path = "benches/serde.rs"
harness = false

[[bench]]
name = "serde_json_borrow"
path = "benches/serde_json_borrow.rs"
harness = false

[[bench]]
name = "simd_json"
path = "benches/simd_json.rs"
harness = false

[[bench]]
name = "sonic_rs"
path = "benches/sonic_rs.rs"
harness = false

[[bench]]
name = "winnow"
path = "benches/winnow.rs"
harness = false

[dependencies.aho-corasick]
version = "1.1"

[dependencies.colored]
version = "3"
optional = true

[dependencies.fast-float2]
version = "0.2"

[dependencies.memchr]
version = "2.5.0"

[dependencies.pprint]
version = "0.3"

[dependencies.regex]
version = "1.11"
features = ["perf"]

[dependencies.smallvec]
version = "1.13"

[dev-dependencies.bbnf]
version = "0.2"

[dev-dependencies.bbnf_derive]
version = "0.2"

[dev-dependencies.bencher]
version = "0.1.5"

[dev-dependencies.cssparser]
version = "0.34"

[dev-dependencies.jiter]
version = "0.8"

[dev-dependencies.lightningcss]
version = "1.0.0-alpha.70"

[dev-dependencies.nom]
version = "7.1.3"

[dev-dependencies.pest]
version = "2.5.6"

[dev-dependencies.pest_grammars]
version = "2.5.6"

[dev-dependencies.serde]
version = "1.0.156"

[dev-dependencies.serde_json]
version = "1.0.94"

[dev-dependencies.serde_json_borrow]
version = "0.9"

[dev-dependencies.simd-json]
version = "0.14"

[dev-dependencies.sonic-rs]
version = "0.5"

[dev-dependencies.winnow]
version = "0.7"