-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 743 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 743 Bytes
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
[package]
name = "json-typings"
version = "0.1.1"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
ijson = "0.1.3"
json = "0.12.4"
serde_json = "1.0.68"
serde-aux = "3.0.1"
itertools = "0.10.1"
ordered-float = "2.8.0"
unicode-segmentation = "1.8.0"
clap = "2.33.3"
config = "0.11.0"
lazy_static = "1.4.0"
fancy-regex = "0.7.1"
convert_case = "0.4.0"
parking_lot = "0.11.2"
if_chain = "1.0.2"
petgraph = "0.6.0"
[dev-dependencies]
criterion = "0.3.5"
pretty_assertions = "1.0.0"
[profile.release]
debug = 1
[[bench]]
name = "typing"
harness = false
[[bin]]
name = "jsontypings"
path = "src/bin/main.rs"