[package]
edition = "2021"
name = "serde_json_bytes"
version = "0.2.6"
authors = ["Geoffroy Couprie <geoffroy@apollographql.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a JSON Value object with strings backed by Bytes, parsed by serde_json"
readme = "README.md"
keywords = [
"json",
"parser",
"bytes",
]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apollographql/serde_json_bytes"
[features]
alloc = ["serde/alloc"]
arbitrary_precision = ["serde_json/arbitrary_precision"]
default = ["std"]
preserve_order = ["indexmap"]
std = ["serde/std"]
[lib]
name = "serde_json_bytes"
path = "src/lib.rs"
[dependencies.ahash]
version = "0.8.11"
[dependencies.bytes]
version = "1.1.0"
[dependencies.indexmap]
version = "2.1"
optional = true
[dependencies.jsonpath-rust]
version = "0.3.5"
[dependencies.regex]
version = "1.11.1"
[dependencies.serde]
version = "1.0.100"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1.0.73"
[lints.clippy]
needless_doctest_main = "allow"
result_large_err = "allow"