We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2306740 commit e6122acCopy full SHA for e6122ac
1 file changed
Cargo.toml
@@ -2,6 +2,19 @@
2
name = "tap-proxy"
3
version = "0.1.0"
4
edition = "2024"
5
+description = """tap-proxy is a lightweight TCP debugging proxy written in Rust.
6
+It forwards TCP traffic (including HTTP and HTTPS) from a local
7
+port to a specified upstream server and prints the request and
8
+response data in real time in the terminal,making it convenient
9
+for debugging API calls during development.
10
+
11
+Your Application ------> tap-proxy ------> Remote Server
12
+ ╱ ╲
13
+ Dump: Request + Response
14
15
+Site: https://github.com/oh-rust/tap-proxy/
16
+"""
17
+authors =["hidu"]
18
19
[dependencies]
20
anyhow = "1.0.102"
0 commit comments