-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (57 loc) · 1.97 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (57 loc) · 1.97 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
[workspace]
members = [
"crates/rustunnel-protocol",
"crates/rustunnel-server",
"crates/rustunnel-client",
"crates/rustunnel-mcp",
"tests",
]
resolver = "2"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
thiserror = "1"
tokio = { version = "1", features = ["full"] }
dashmap = "6"
parking_lot = "0.12"
toml = "0.8"
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-native-roots"] }
tokio-rustls = "0.26"
rustls = { version = "0.23", features = ["ring"] }
rustls-pemfile = "2"
yamux = "0.13"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
futures-util = "0.3"
tokio-util = { version = "0.7", features = ["compat"] }
hyper = { version = "1", features = ["http1", "http2", "server", "client"] }
hyper-util = { version = "0.1", features = ["tokio", "http1", "http2", "server", "client"] }
http-body-util = "0.1"
bytes = "1"
tower = { version = "0.4", features = ["timeout", "util"] }
axum = { version = "0.7", features = ["macros"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "postgres", "uuid", "chrono", "migrate"] }
tower-http = { version = "0.5", features = ["cors", "fs", "set-header"] }
sha2 = "0.10"
hex = "0.4"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
serde_yaml = "0.9"
console = "0.15"
indicatif = "0.17"
ratatui = "0.29"
httparse = "1"
rand = "0.8"
dirs = "5"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
instant-acme = "0.7"
rcgen = "0.13"
arc-swap = "1"
x509-parser = "0.16"
tempfile = "3"
socket2 = { version = "0.5", features = ["all"] }
quinn = "0.11"
sentry = { version = "0.47", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls", "tracing", "logs"] }
sentry-tracing = "0.47"
rustunnel-protocol = { path = "crates/rustunnel-protocol", version = "0.8.1" }