-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
90 lines (80 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "dts"
version = "0.6.7"
authors = ["Martin Ohmann <[email protected]>"]
license = "MIT"
description = "A tool to deserialize, transform and serialize data between different encodings"
repository = "https://github.com/martinohmann/dts"
documentation = "https://docs.rs/dts/"
keywords = ["hcl", "json", "yaml", "jq"]
categories = ["encoding"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
exclude = [
".github/",
]
[features]
default = ["color", "jaq"]
color = ["bat", "bat/paging", "clap/color"]
jaq = ["jaq-core", "jaq-interpret", "jaq-parse", "jaq-std"]
[dependencies]
anyhow = "1.0.86"
crossbeam-utils = "0.8.16"
csv = "1.2.2"
glob = "0.3.1"
clap_complete = "4.5.1"
grep-cli = "0.1.8"
hcl-rs = { version = "0.18.0", features = ["perf"] }
jaq-core = { version = "1.4.0", optional = true }
jaq-interpret = { version = "1.5.0", optional = true }
jaq-parse = { version = "1.0.2", optional = true }
jaq-std = { version = "1.4.0", optional = true }
json5 = "0.4.1"
once_cell = "1.19.0"
pathdiff = "0.2.1"
pest = "2.7.7"
pest_derive = "2.7.7"
rayon = "1.7.0"
regex = "1.7.3"
serde-xml-rs = "0.6.0"
serde_qs = "0.13.0"
serde_yaml = "0.9.34"
shell-words = "1.1.0"
termcolor = "1.4.1"
thiserror = "1.0.59"
toml = "0.8.12"
unescape = "0.1.0"
ureq = "3.0.0"
url = "2.5.4"
[dependencies.bat]
optional = true
default-features = false
features = ["regex-onig"]
version = "0.25.0"
[dependencies.clap]
default-features = false
features = ["std", "derive", "env", "help", "suggestions"]
version = "4.5.13"
[dependencies.serde]
features = ["derive"]
version = "1.0.203"
[dependencies.serde_json]
features = ["preserve_order"]
version = "1.0.137"
[dev-dependencies]
assert_cmd = "2.0.14"
criterion = "0.5"
pretty_assertions = "1.4.0"
predicates = "3.0.3"
temp-env = "0.3.1"
[[bench]]
name = "benchmark"
harness = false
[[test]]
name = "integration"
path = "tests/integration_tests.rs"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"