[package]
name = "mobilecli"
version = "0.2.1"
description = "Stream your terminal CLIs to your phone - shell hook edition"
authors = ["MobileCLI"]
edition = "2021"
rust-version = "1.70"
license = "MIT"
readme = "README.md"
repository = "https://github.com/MobileCLI/mobilecli"
keywords = ["terminal", "mobile", "cli", "streaming", "pty"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "mobilecli"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
portable-pty = "0.8"
tokio-tungstenite = "0.24"
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
qrcode = "0.14"
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
local-ip-address = "0.6"
base64 = "0.22"
rand = "0.8"
sha2 = "0.10"
hmac = "0.12"
subtle = "2.6"
strip-ansi-escapes = "0.2"
walkdir = "2.5"
ignore = "0.4"
notify = "6.1"
notify-debouncer-mini = "0.4"
path_jail = "0.3"
infer = "0.15"
memmap2 = "0.9"
dashmap = "5.5"
rayon = "1.10"
md5 = "0.7"
glob-match = "0.2"
glob = "0.3"
colored = "2"
ctrlc = "3"
which = "6"
dirs-next = "2.0"
term_size = "0.3"
urlencoding = "2"
hostname = "0.4"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", features = ["term", "signal", "process"] }
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["consoleapi", "processenv", "libloaderapi", "handleapi"] }
[profile.release]
lto = true
codegen-units = 1
strip = true
[dev-dependencies]
tempfile = "3"