-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
44 lines (38 loc) · 1.03 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
37
38
39
40
41
42
43
44
[package]
name = "ajson"
edition = "2018"
version = "0.3.1"
authors = ["importcjj <[email protected]>"]
license = "MIT"
description = "JSON Parser for Rust - Get JSON values quickly"
keywords = ["json", "json-parser", "gjson", "ajson"]
categories = ["encoding"]
readme = "README.md"
documentation = "https://docs.rs/ajson/latest/ajson/"
repository = "https://github.com/importcjj/rust-ajson"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-MIT"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
autobenches = false
[lib]
bench = false
[features]
default = []
wild = ["regex"]
[dependencies]
regex = { version = "1", optional = true }
smallvec = "1.9.0"
[dev-dependencies]
criterion = "0.2"
json = "0.11.13"
serde_json = "1.0"
serde = { version = "1.0.98", features = ["derive"] }
nom = "5"
gjson = "0.8.1"
[[bench]]
name = "ajson_benchmark"
path = "benches/ajson_benchmark.rs"
harness = false
[[bench]]
name = "traversing_benchmark"
path = "benches/traversing.rs"
harness = false