json-extractor 0.1.0

High-performance two-stage JSON fragment scanner with SIMD acceleration
Documentation
[package]
name = "json-extractor"
version = "0.1.0"
edition = "2024"
description = "High-performance two-stage JSON fragment scanner with SIMD acceleration"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mexus/json-extractor"
documentation = "https://docs.rs/json-extractor"
keywords = ["json", "parser", "simd", "scanner", "extraction"]
categories = ["parsing", "text-processing"]
exclude = [".github/"]

[dependencies]
smallvec = { version = "1.11", features = ["const_generics"] }

[dev-dependencies]
criterion = "0.7"
proptest = "1.4"
serde_json = "1.0"

[[bench]]
name = "scanner_bench"
harness = false

[profile.release]
lto = true

[profile.bench]
debug = true