File: Cargo.toml

package info (click to toggle)
rust-json-event-parser 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 256 kB
  • sloc: python: 14; makefile: 2; sh: 1
file content (30 lines) | stat: -rw-r--r-- 759 bytes parent folder | download
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"]