shellphone 0.2.0

Pipe CLI commands to a secure mobile web terminal
[package]
name = "shellphone"
version = "0.2.0"
edition = "2024"
description = "Pipe CLI commands to a secure mobile web terminal"
license = "MIT"
repository = "https://github.com/laleshii/shellphone"
keywords = ["terminal", "mobile", "tunnel", "pty", "websocket"]
categories = ["command-line-utilities"]

[[bin]]
name = "shellphone"
path = "src/main.rs"

[dependencies]
anyhow = "1"
axum = { version = "0.8", features = ["ws"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
futures-util = "0.3"
mime_guess = "2"
portable-pty = "0.8"
qrcode = "0.14"
rand = "0.9"
rcgen = "0.13"
rust-embed = "8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
subtle = "2"
tokio = { version = "1", features = ["full"] }
tokio-rustls = "0.26"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }