bufjson 0.6.1

No frills, low-alloc, low-copy JSON lexer/parser for fast stream-oriented parsing
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 = "bufjson"
version = "0.6.1"
authors = ["Victor Schappert <victor.schappert@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "No frills, low-alloc, low-copy JSON lexer/parser for fast stream-oriented parsing"
readme = "README.md"
keywords = [
    "json",
    "parser",
    "low-allocation",
    "zero-copy",
    "performance",
]
categories = [
    "parsing",
    "encoding",
    "network-programming",
    "web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vcschapp/bufjson"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
ignore_case = ["dep:caseless"]
pipe = [
    "dep:bytes",
    "read",
]
pointer = ["dep:smallvec"]
read = []

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

[[bench]]
name = "generator"
path = "benches/generator.rs"

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

[dependencies.bitvec]
version = "^1.0.1"
features = ["alloc"]
default-features = false

[dependencies.bytes]
version = "^1.11.1"
optional = true

[dependencies.caseless]
version = "^0.2.2"
optional = true

[dependencies.smallvec]
version = "^1.15.1"
optional = true

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.doc-comment]
version = "^0.3.3"

[dev-dependencies.rand]
version = "^0.10.0"

[dev-dependencies.rand_distr]
version = "^0.6.0"

[dev-dependencies.rstest]
version = "^0.26.1"

[dev-dependencies.serde_json]
version = "^1.0.49"

[dev-dependencies.smallvec]
version = "^1.15.1"

[dev-dependencies.tempfile]
version = "^3.25.0"

[profile.profiling]
debug = 2
inherits = "release"