Files
rustguac/Cargo.toml
T
Dave Kempe f8744603f8 Update dependencies: russh 0.57, toml 1.0, clap 4.5.58, libc 0.2.182
- russh 0.54 → 0.57: Marvin attack mitigation (RSA), server-side ping,
  ML-KEM post-quantum key exchange, extension algo kex fix
- toml 0.9 → 1.0: stable release
- clap 4.5.57 → 4.5.58: patch update
- libc 0.2.180 → 0.2.182: patch update
- rand stays at 0.9: rand 0.10 requires stable rand_core 0.10.0 which
  conflicts with russh 0.57's rand_core 0.10.0-rc-3 pin

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 10:47:10 +11:00

84 lines
1.7 KiB
TOML

[package]
name = "rustguac"
version = "0.4.0"
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.9"
hex = "0.4"
sha2 = "0.10"
subtle = "2"
# Database
rusqlite = { version = "0.38", 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-webpki-roots"], default-features = false }
# SSH tunneling (jump host / bastion)
russh = "0.57"
# 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"