-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (43 loc) · 1.15 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
45
46
47
48
49
50
51
52
[package]
name = "json-five"
version = "0.2.2"
edition = "2024"
license = "MIT"
description = "JSON5 parser with round-trip capabilities and compatible with the serde data model"
repository = "https://github.com/spyoungtech/json-five-rs"
readme = "README.md"
keywords = ["serde", "json5", "json", "round-trip", "parser"]
categories = ["parsing", "parser-implementations"]
include = ["src/**/*.rs", "Cargo.toml", "LICENSE"]
[dependencies]
serde = { version = "1.0", optional = true }
unicode-general-category = { version = "1.0" }
[features]
default = ["serde"]
serde = ["dep:serde"]
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]
criterion = { version="0.5" }
serde_json = "1.0"
json5 = "0.4.1"
regex = "1"
[[bench]]
name = "bench_compare"
harness = false
[[bench]]
name = "bench_deserialize"
harness = false
[[example]]
crate-type = ["bin"]
path = "examples/json5-doublequote-fixer/src/main.rs"
name = "json5-doublequote-fixer"
test = true
[[example]]
crate-type = ["bin"]
path = "examples/json5-trailing-comma-formatter/src/main.rs"
name = "json5-trailing-comma-formatter"
test = true
[package.metadata.docs.rs]
all-features = true