[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-json"
version = "0.3.4"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/README.zh_CN.md",
"/doc/**/user_guide*.md",
"/examples/**",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lenient JSON decoder for non-fully-trusted JSON text inputs"
homepage = "https://github.com/qubit-ltd/rs-json"
documentation = "https://docs.rs/qubit-json"
readme = "README.md"
keywords = [
"json",
"decoder",
"serde",
"lenient",
"qubit",
]
categories = [
"encoding",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-json"
[lib]
name = "qubit_json"
path = "src/lib.rs"
doctest = true
[[test]]
name = "tests"
path = "tests/mod.rs"
[dependencies.serde]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[profile.bench]
opt-level = 3
lto = true
codegen-units = 1
[profile.release]
opt-level = 3
lto = true
codegen-units = 1