json-extractor 0.1.0

High-performance two-stage JSON fragment scanner with SIMD acceleration
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 = "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