-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (61 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (61 loc) · 1.7 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 = "devtrace"
version = "0.3.0"
edition = "2021"
description = "Developer CLI for environment diagnostics and HTTP capture/replay"
license = "MIT"
repository = "https://github.com/Rikkarrr/devtrace"
readme = "README.md"
keywords = ["cli", "debugging", "http", "proxy", "developer-tools"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
# CLI & runtime
clap = { version = "4.5", features = ["derive", "env", "cargo", "wrap_help"] }
tokio = { version = "1.40", features = ["full"] }
# HTTP: reqwest for replay and outbound proxy forwards; hyper stack for local proxy server
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
"stream",
] }
hyper = { version = "1.5", features = ["full", "server"] }
hyper-util = { version = "0.1", features = ["full", "tokio", "server-auto"] }
http-body-util = "0.1"
http = "1.1"
bytes = "1.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
owo-colors = "4.1"
dotenvy = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "5.0"
chrono = { version = "0.4", features = ["serde"] }
toml = "0.8"
similar = "2.6"
url = "2.5"
uuid = { version = "1.11", features = ["v4", "serde"] }
futures-util = "0.3"
indicatif = "0.17"
rcgen = "0.14.7"
tokio-rustls = "0.26.4"
rustls-pemfile = "2.2.0"
rustls = "0.23.37"
time = "0.3.47"
ratatui = "0.30.0"
crossterm = "0.29.0"
tokio-tungstenite = { version = "0.29.0", features = ["native-tls"] }
hex = "0.4.3"
[dev-dependencies]
axum = "0.7"
[lib]
name = "devtrace"
path = "src/lib.rs"
[[bin]]
name = "devtrace"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true