[package]
edition = "2021"
name = "jscan"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance zero-allocation JSON iterator and validator. Port of github.com/romshark/jscan/v2."
readme = "README.md"
keywords = [
"json",
"parser",
"validator",
"scanner",
"no-std",
]
categories = [
"parser-implementations",
"no-std",
"encoding",
]
license = "MIT"
repository = "https://github.com/mrzor/jscan-rs"
[features]
default = ["std"]
std = []
[lib]
name = "jscan"
path = "src/lib.rs"
[[test]]
name = "jsontestsuite"
path = "tests/jsontestsuite.rs"
[[test]]
name = "scan_tests"
path = "tests/scan_tests.rs"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.flate2]
version = "1"