[package]
edition = "2021"
rust-version = "1.85"
name = "reliakit-json"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Strict, bounded, and deterministic JSON for reliability-sensitive Rust. no_std + alloc, zero-dependency."
homepage = "https://github.com/satyakwok/reliakit"
readme = "README.md"
keywords = [
"json",
"strict",
"no-std",
"deterministic",
"reliability",
]
categories = [
"parser-implementations",
"encoding",
"no-std",
]
license = "MIT"
repository = "https://github.com/satyakwok/reliakit"
[package.metadata.docs.rs]
all-features = true
[features]
canonical = []
default = ["std"]
std = []
[lib]
name = "reliakit_json"
path = "src/lib.rs"
[[example]]
name = "json_basic"
path = "examples/basic.rs"
[dependencies]
[lints.rust]
unsafe_code = "forbid"