[package]
edition = "2024"
name = "parse_that"
version = "0.1.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_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 = "jiter"
path = "benches/jiter.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 = "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.1"
[dependencies.regex]
version = "1.11"
features = ["perf"]
[dev-dependencies.bencher]
version = "0.1.5"
[dev-dependencies.jiter]
version = "0.8"
[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"