-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (53 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
68 lines (53 loc) · 1.28 KB
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
[package]
name = "karate-cli"
version = "0.1.0"
edition = "2021"
description = "Karate command-line"
license = "MIT"
repository = "https://github.com/karatelabs/karate-cli"
keywords = ["karate", "testing", "api", "cli"]
categories = ["command-line-utilities", "development-tools::testing"]
[[bin]]
name = "karate"
path = "src/main.rs"
[dependencies]
# CLI parsing
clap = { version = "4", features = ["derive", "env", "string"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client (rustls for cross-compilation, avoids OpenSSL)
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls"] }
# JSON/Config
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
anyhow = "1"
thiserror = "1"
# File system
dirs = "5"
# Checksums
sha2 = "0.10"
hex = "0.4"
# Progress bars and terminal UI
indicatif = "0.17"
console = "0.15"
# Compression (for JRE archives)
flate2 = "1"
tar = "0.4"
zip = "2"
# Async utilities
futures-util = "0.3"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Platform detection
cfg-if = "1"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"
[profile.release]
lto = true
strip = true
codegen-units = 1
panic = "abort"