fixed-json 0.1.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.1.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"

[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"

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

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

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