nanojson 0.5.0

A #![no_std], allocation-free, zero-dependency JSON serializer and pull-parser.
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 = "nanojson"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A #![no_std], allocation-free, zero-dependency JSON serializer and pull-parser."
readme = "README.md"
keywords = [
    "json",
    "no_std",
    "embedded",
    "serialization",
    "parser",
]
categories = [
    "encoding",
    "embedded",
    "no-std",
    "parsing",
]
license = "MIT"
repository = "https://github.com/Gronis/nanojson"

[features]
alloc = []
arrayvec = ["dep:arrayvec"]
default = [
    "std",
    "derive",
]
derive = ["nanojson-derive"]
std = ["alloc"]

[lib]
name = "nanojson"
path = "src/lib.rs"

[[example]]
name = "big"
path = "examples/big.rs"
required-features = [
    "derive",
    "std",
]

[[example]]
name = "derive"
path = "examples/derive.rs"
required-features = [
    "derive",
    "std",
]

[[example]]
name = "manual"
path = "examples/manual.rs"
required-features = ["std"]

[[example]]
name = "medium"
path = "examples/medium.rs"
required-features = [
    "derive",
    "std",
]

[[example]]
name = "nostd"
path = "examples/nostd.rs"
required-features = ["derive"]

[[example]]
name = "recursive"
path = "examples/recursive.rs"
required-features = ["std"]

[[example]]
name = "sensor_log"
path = "examples/sensor_log.rs"
required-features = ["std"]

[[example]]
name = "simple"
path = "examples/simple.rs"
required-features = [
    "derive",
    "std",
]

[[test]]
name = "derive_roundtrip"
path = "tests/derive_roundtrip.rs"
required-features = [
    "derive",
    "std",
]

[[test]]
name = "non_derive"
path = "tests/non_derive.rs"

[[test]]
name = "readme"
path = "tests/readme.rs"
required-features = [
    "derive",
    "std",
]

[[test]]
name = "string_escaping"
path = "tests/string_escaping.rs"

[dependencies.arrayvec]
version = "0.7"
optional = true
default-features = false

[dependencies.nanojson-derive]
version = "0.5.0"
optional = true