[package]
edition = "2021"
rust-version = "1.78"
name = "blazingly-json"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A focused, Tokio-free JSON engine for small protocol and API payloads"
documentation = "https://docs.rs/blazingly-json"
readme = "README.md"
keywords = [
"json",
"serde",
"mcp",
"json-rpc",
"performance",
]
categories = [
"encoding",
"parser-implementations",
"web-programming",
]
license = "MIT"
repository = "https://github.com/sergii-ziborov/blazingly-json"
[lib]
name = "blazingly_json"
path = "src/lib.rs"
[[example]]
name = "size_blazingly"
path = "examples/size_blazingly.rs"
[[example]]
name = "size_serde_json"
path = "examples/size_serde_json.rs"
[[test]]
name = "canonical"
path = "tests/canonical.rs"
[[test]]
name = "cursor"
path = "tests/cursor.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "property"
path = "tests/property.rs"
[[test]]
name = "raw"
path = "tests/raw.rs"
[[test]]
name = "raw_value"
path = "tests/raw_value.rs"
[[bench]]
name = "allocation_comparison"
path = "benches/allocation_comparison.rs"
harness = false
[[bench]]
name = "large_payload"
path = "benches/large_payload.rs"
harness = false
[[bench]]
name = "mcp_allocations"
path = "benches/mcp_allocations.rs"
harness = false
[[bench]]
name = "mcp_fast_path"
path = "benches/mcp_fast_path.rs"
harness = false
[[bench]]
name = "mcport_end_to_end"
path = "benches/mcport_end_to_end.rs"
harness = false
[[bench]]
name = "paired_comparison"
path = "benches/paired_comparison.rs"
harness = false
[[bench]]
name = "raw_value_allocations"
path = "benches/raw_value_allocations.rs"
harness = false
[[bench]]
name = "raw_value_comparison"
path = "benches/raw_value_comparison.rs"
harness = false
[[bench]]
name = "serde_json_comparison"
path = "benches/serde_json_comparison.rs"
harness = false
[dependencies.itoa]
version = "1.0.18"
[dependencies.lexical-core]
version = "1.0.6"
features = [
"format",
"parse-floats",
]
default-features = false
[dependencies.memchr]
version = "2.8.3"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.zmij]
version = "1.0.23"
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.serde_json]
version = "1.0.151"
features = ["raw_value"]
[dev-dependencies.stats_alloc]
version = "0.1.10"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"