[package]
edition = "2024"
rust-version = "1.88"
name = "nojson"
version = "0.3.11"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible Rust JSON library with no dependencies, no macros, no unsafe and optional no_std support"
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"
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
[[example]]
name = "jsonc_pretty"
path = "examples/jsonc_pretty.rs"
[[example]]
name = "parse_error"
path = "examples/parse_error.rs"
[[test]]
name = "test_examples"
path = "tests/test_examples.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"