-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (48 loc) · 1.27 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (48 loc) · 1.27 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
[package]
name = "termote"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Web framework
axum = { version = "0.7", features = ["ws"] }
# PTY management
portable-pty = "0.8"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# UUID for pane IDs
uuid = { version = "1.0", features = ["v4"] }
# Environment variables
dotenvy = "0.15"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing-appender = "0.2"
# HTTP utilities (CORS)
tower-http = { version = "0.5", features = ["cors", "fs"] }
# URL encoding
urlencoding = "2.1"
# Open URLs in browser
open = "5.2"
# Futures utilities (for StreamExt)
futures-util = { version = "0.3", default-features = false, features = ["std"] }
# Native file/folder dialogs
rfd = "0.14"
# Platform directories
dirs = "5"
# Base64 encoding/decoding for file transfers
base64 = "0.22"
# HTTP client for proxy requests
reqwest = { version = "0.12", features = ["json"] }
# System info for process filtering
sysinfo = "0.31"
# Regex for rewriting relative URLs in proxy responses
regex = "1"
# URL parsing for proxy validation
url = "2"
[profile.release]
opt-level = 3
lto = true