[package]
edition = "2021"
name = "nextjson"
version = "0.1.1"
authors = ["blueokanna"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A dependency-free, no_std JSON and CBOR library with a schema-driven, visitor-free design."
documentation = "https://docs.rs/nextjson"
readme = "README.md"
keywords = [
"json",
"cbor",
"serialization",
"deserialization",
"parser",
]
categories = [
"encoding",
"parser-implementations",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/blueokanna/NextJson"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = [
"std",
"derive",
]
derive = ["dep:nextjson-derive"]
std = []
[lib]
name = "nextjson"
path = "src/lib.rs"
[[test]]
name = "cross_format"
path = "tests/cross_format.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "enums"
path = "tests/enums.rs"
[[test]]
name = "formats"
path = "tests/formats.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[test]]
name = "value"
path = "tests/value.rs"
[[bench]]
name = "format_comparison"
path = "benches/format_comparison.rs"
harness = false
[dependencies.nextjson-derive]
version = "0.1.0"
optional = true