fixed-json 0.4.0

No-std, no-allocation JSON parsing into caller-owned fixed storage
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 = "2024"
rust-version = "1.85"
name = "fixed-json"
version = "0.4.0"
authors = ["Yehor Smoliakov <egorsmkv@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "No-std, no-allocation JSON parsing into caller-owned fixed storage"
documentation = "https://docs.rs/fixed-json"
readme = "README.md"
keywords = [
    "json",
    "no-std",
    "no-alloc",
    "parser",
    "embedded",
]
categories = [
    "no-std",
    "embedded",
    "parser-implementations",
]
license = "BSD-2-Clause"
repository = "https://github.com/RustedBytes/fixed-json"

[features]
default = []
std = []

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

[[example]]
name = "example1"
path = "examples/example1.rs"

[[example]]
name = "example2"
path = "examples/example2.rs"

[[example]]
name = "example3"
path = "examples/example3.rs"

[[example]]
name = "example4"
path = "examples/example4.rs"

[[example]]
name = "serialize_basic"
path = "examples/serialize_basic.rs"

[[example]]
name = "serialize_nested"
path = "examples/serialize_nested.rs"

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

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

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

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

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

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

[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false

[dev-dependencies.criterion]
version = "0.7"

[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = 0
debug-assertions = false
overflow-checks = false