[package]
edition = "2021"
name = "secure-json-parse"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "prototype-poisoning-safe JSON parsing of untrusted input"
readme = "README.md"
keywords = [
"json",
"security",
"serde",
"parsing",
"sanitize",
]
categories = [
"parsing",
"parser-implementations",
"web-programming",
]
license = "MIT"
repository = "https://github.com/hey-jj/secure-json-parse"
[lib]
name = "secure_json_parse"
path = "src/lib.rs"
[[test]]
name = "bom"
path = "tests/bom.rs"
[[test]]
name = "combined"
path = "tests/combined.rs"
[[test]]
name = "constructor_action"
path = "tests/constructor_action.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "proto_action"
path = "tests/proto_action.rs"
[[test]]
name = "safe_option"
path = "tests/safe_option.rs"
[[test]]
name = "safe_parse"
path = "tests/safe_parse.rs"
[[test]]
name = "scan"
path = "tests/scan.rs"
[dependencies.serde_json]
version = "1"