[package]
edition = "2024"
name = "bufjson"
version = "0.5.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]
read = []
[lib]
name = "bufjson"
path = "src/lib.rs"
[dependencies.bitvec]
version = "^1.0.1"
features = ["alloc"]
default-features = false
[dev-dependencies.doc-comment]
version = "^0.3.3"
[dev-dependencies.rstest]
version = "^0.26.1"
[dev-dependencies.tempfile]
version = "^3.25.0"