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