-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (31 loc) · 1.04 KB
/
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
30
31
32
33
34
35
36
[workspace]
members = ["geojson_benchmarks"]
[package]
name = "actson"
version = "1.1.0"
authors = ["Michel Kraemer <michel@undercouch.de>"]
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"]
exclude = ["tests/json_test_suite", "!tests/json_test_suite/test_parsing"]
[features]
default = []
tokio = ["dep:tokio"]
serde_json = ["dep:serde_json"]
[dependencies]
btoi = "0.4.3"
num-traits = "0.2.19"
serde_json = { version = "1.0.120", features = ["float_roundtrip"], optional = true }
thiserror = "1.0.63"
tokio = { version = "1.39.1", features = ["io-util", "rt-multi-thread"], optional = true }
[dev-dependencies]
criterion = "0.5.1"
dtoa = "1.0.9"
serde_json = { version = "1.0.120", features = ["float_roundtrip"] }
tokio = { version = "1.39.1", features = ["fs", "macros", "rt-multi-thread"]}
[[bench]]
name = "bench"
harness = false