[package]
edition = "2024"
name = "json-extractor"
version = "0.1.0"
build = false
exclude = [".github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance two-stage JSON fragment scanner with SIMD acceleration"
documentation = "https://docs.rs/json-extractor"
readme = "README.md"
keywords = [
"json",
"parser",
"simd",
"scanner",
"extraction",
]
categories = [
"parsing",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mexus/json-extractor"
[lib]
name = "json_extractor"
path = "src/lib.rs"
[[test]]
name = "deep_nesting"
path = "tests/deep_nesting.rs"
[[test]]
name = "large_file_streaming"
path = "tests/large_file_streaming.rs"
[[test]]
name = "real_world_scenarios"
path = "tests/real_world_scenarios.rs"
[[bench]]
name = "scanner_bench"
path = "benches/scanner_bench.rs"
harness = false
[dependencies.smallvec]
version = "1.11"
features = ["const_generics"]
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.serde_json]
version = "1.0"
[profile.bench]
debug = 2
[profile.release]
lto = true