mirror of
https://github.com/linux-msm/sk8brd.git
synced 2026-02-25 13:13:15 -08:00
russh doesn't have the libsodium compilation issues on Windows that ssh2 - migrate to it. Signed-off-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
30 lines
849 B
TOML
30 lines
849 B
TOML
[package]
|
|
name = "sk8brd-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Konrad Dybcio <konradybcio@kernel.org>"]
|
|
license = "BSD-3-Clause"
|
|
description = "Simple remote devboard control software (non-interactive CLI)"
|
|
readme = "README.md"
|
|
repository = "https://github.com/linux-msm/sk8brd"
|
|
categories = ["command-line-utilities"]
|
|
publish = false # TODO
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[[bin]]
|
|
name = "sk8brd-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "4.5.31", features = ["derive"] }
|
|
colored = "3.0.0"
|
|
crossterm = "0.28.1"
|
|
sk8brd-proto = { path = "../proto/", features = ["ssh"] }
|
|
os_pipe = "1.2.1"
|
|
russh = "0.50.4"
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
tokio = { version = "1.43.0", features = ["full"] }
|