-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1.3 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
[package]
name = "hitman"
version = "0.2.0"
edition = "2021"
authors = ["Omdanii <mahmmoud.hassanein@gmail.com>"]
description = "A lightweight HTTP testing tool that reads .hit files and executes HTTP requests with support for variables, comments, and parallel execution"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Mahmoud-Emad/hitman-cli"
homepage = "https://github.com/Mahmoud-Emad/hitman-cli"
documentation = "https://github.com/Mahmoud-Emad/hitman-cli/blob/development/README.md"
readme = "README.md"
keywords = ["http", "client", "api", "testing", "cli"]
categories = ["command-line-utilities", "web-programming::http-client"]
exclude = ["tests/fixtures/*", "target/*"]
[[bin]]
name = "hitman"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive"] }
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1.0", features = ["full"] }
url = "2.4"
colored = "2.0"
atty = "0.2"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.dev]
debug = true
[target.'cfg(windows)'.dependencies]
# Windows-specific dependencies if needed
[target.'cfg(unix)'.dependencies]
# Unix-specific dependencies if needed