[package]
edition = "2021"
rust-version = "1.74"
name = "json-event-parser"
version = "0.2.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
build = false
exclude = ["JSONTestSuite"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
A JSON event parser and serializer
"""
homepage = "https://github.com/oxigraph/json-event-parser"
documentation = "https://docs.rs/json-event-parser"
readme = "README.md"
keywords = ["JSON"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oxigraph/json-event-parser"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
async-tokio = ["dep:tokio"]
[lib]
name = "json_event_parser"
path = "src/lib.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "test_suite"
path = "tests/test_suite.rs"
[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false
[dependencies.tokio]
version = "1.29"
features = ["io-util"]
optional = true
[dev-dependencies.clap]
version = "4"
[dev-dependencies.codspeed-criterion-compat]
version = "4"
[dev-dependencies.tokio]
version = "1.29"
features = [
"rt",
"macros",
]