[package]
edition = "2021"
name = "zjson"
version = "0.1.5"
authors = ["Tom Boddaert <zjson@tomboddaert.com>"]
description = "Parse JSON with zero allocation."
homepage = "https://github.com/tomboddaert/zjson/"
readme = "README.md"
keywords = [
"json",
"parser",
"no_std",
"no-std",
]
categories = [
"parser-implementations",
"no-std",
"encoding",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tomboddaert/zjson/"
[lib]
name = "zjson"
crate-type = ["lib"]
path = "lib/lib.rs"
edition = "2021"
[features]
alloc = []
default = ["std"]
std = ["alloc"]