1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
[package]
name = "json-event-parser"
version = "0.2.2"
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.70"
autobenches = false
[features]
async-tokio = ["dep:tokio"]
[dependencies]
tokio = { version = "1.29", optional = true, features = ["io-util"] }
[dev-dependencies]
tokio = { version = "1.29", features = ["rt", "macros"] }
clap = "4"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
|