-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 951 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 951 Bytes
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
[package]
name = "cfproxy"
version = "0.1.2"
edition = "2021"
description = "Expose localhost services via Cloudflare tunnel with a rich TUI"
license = "MIT"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["full"] }
ratatui = "0.30"
crossterm = "0.28"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
hyper = { version = "1", features = ["http1", "server"] }
hyper-util = { version = "0.1", features = ["tokio", "http1"] }
http-body-util = "0.1"
thiserror = "2"
dirs = "6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
chrono = { version = "0.4", features = ["serde"] }
base64 = "0.22"
flate2 = "1"
tar = "0.4"
qrcode = "0.14"
tokio-tungstenite = "0.26"
futures-util = "0.3"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"