[package]
edition = "2024"
rust-version = "1.88"
name = "nojson"
version = "0.3.10"
authors = ["Takeru Ohta <phjgt308@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible JSON library with no dependencies and no macros"
homepage = "https://github.com/sile/nojson"
readme = "README.md"
categories = [
"encoding",
"no-std",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/sile/nojson"
[features]
default = ["std"]
std = []
[lib]
name = "nojson"
path = "src/lib.rs"
[[test]]
name = "test_format"
path = "tests/test_format.rs"
[[test]]
name = "test_jsonc"
path = "tests/test_jsonc.rs"
[[test]]
name = "test_parse"
path = "tests/test_parse.rs"
[[bench]]
name = "format"
path = "benches/format.rs"
harness = false
[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false
[dev-dependencies.criterion]
version = "0.8"
default-features = false