[package]
edition = "2024"
rust-version = "1.85"
name = "rusty_rtos_json"
version = "0.2.0"
authors = ["Remade With Rust"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "coreJSON remade in Rust: the strict ECMA-404 validator and the query-by-path search, both diffed against the C -- 318/318 JSONTestSuite files and 2,124 queries. Zero allocation, no_std, forbid(unsafe), with a no-panic gate over both."
homepage = "https://www.mata.network/"
documentation = "https://docs.rs/rusty_rtos_json"
readme = "README.md"
keywords = [
"rtos",
"freertos",
"embedded",
"no-std",
"remade-with-rust",
]
categories = [
"embedded",
"no-std",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Remade-With-Rust/rusty_rtos_json"
[features]
alloc = ["rusty_rtos_json-core/alloc"]
default = ["std"]
std = ["rusty_rtos_json-core/std"]
[lib]
name = "rusty_rtos_json"
path = "src/lib.rs"
[dependencies.rusty_rtos_json-core]
version = "0.2.0"
default-features = false
[lints.clippy]
arithmetic_side_effects = "warn"
expect_used = "deny"
indexing_slicing = "warn"
panic = "deny"
todo = "deny"
undocumented_unsafe_blocks = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"