nextjson 0.1.1

A dependency-free, no_std JSON and CBOR library with a schema-driven, visitor-free design.
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 = "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