forked from michel-kraemer/actson-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (25 loc) · 898 Bytes
/
Cargo.toml
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
[package]
name = "actson"
version = "0.2.0"
authors = ["Michel Kraemer <[email protected]>"]
description = "A reactive (or non-blocking, or asynchronous) JSON parser"
edition = "2021"
license = "MIT"
repository = "https://github.com/michel-kraemer/actson-rs"
keywords = ["json", "parser", "parsing", "deserialization"]
categories = ["encoding", "parser-implementations"]
[features]
default = ["tokio"]
tokio = ["dep:tokio"]
serde_json = ["dep:serde_json"]
[dependencies]
lexical = "6.1.1"
serde_json = { version = "1.0.99", features = ["float_roundtrip"], optional = true }
tokio = { version = "1.29.0", features = ["io-util", "rt-multi-thread"], optional = true }
[dev-dependencies]
criterion = "0.5.1"
serde_json = { version = "1.0.99", features = ["float_roundtrip"] }
tokio = { version = "1.29.0", features = ["fs", "macros", "rt-multi-thread"]}
[[bench]]
name = "bench"
harness = false