-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (71 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
92 lines (71 loc) · 1.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "rustguac"
version = "1.6.7"
edition = "2021"
description = "Lightweight Rust replacement for Apache Guacamole client"
[dependencies]
# Web framework
axum = { version = "0.8", features = ["ws"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["fs", "cors", "trace"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Streaming
futures-util = "0.3"
# Config
toml = "1"
# Crypto/random
rand = "0.10"
hex = "0.4"
sha2 = "0.11"
subtle = "2"
aes = "0.9"
cbc = "0.2"
pbkdf2 = { version = "0.13", default-features = false }
hmac = "0.13"
sha1 = "0.11"
# Database
rusqlite = { version = "0.39", features = ["bundled"] }
# CLI
clap = { version = "4", features = ["derive"] }
# IP matching
ipnetwork = "0.21"
# TLS
axum-server = { version = "0.8", features = ["tls-rustls"] }
rcgen = "0.14"
tokio-rustls = "0.26"
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rustls-pemfile = "2"
# OIDC
openidconnect = "4"
url = "2"
tower-cookies = "0.11"
# SSH key generation
ssh-key = { version = "0.6", features = ["ed25519"] }
# Rate limiting
tower_governor = "0.8"
# Base64 decoding (JWT payload for OIDC groups)
base64 = "0.22"
# HTTP client (Vault API)
reqwest = { version = "0.12", features = ["json", "rustls-tls-native-roots"], default-features = false }
webpki-roots = "1"
# SSH tunneling (jump host / bastion)
russh = "0.60"
# Docker (VDI container management)
bollard = "0.20"
# LUKS drive management (uid/gid for chown)
libc = "0.2"
# URL encoding/decoding (quick-connect redirect)
urlencoding = "2"
serde_urlencoded = "0.7"
[build-dependencies]
pulldown-cmark = "0.13"