mirror of
https://github.com/linux-msm/sk8brd.git
synced 2026-02-25 13:13:15 -08:00
30 lines
787 B
TOML
30 lines
787 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.4", features = ["derive"] }
|
|
colored = "2.1.0"
|
|
crossterm = "0.27.0"
|
|
sk8brd-proto = { path = "../proto/", features = ["ssh"] }
|
|
os_pipe = "1.1.5"
|
|
serde = { version = "^1.0.198", features = ["derive"] }
|
|
ssh2 = "^0.9.4"
|
|
tokio = { version = "^1.37.0", features = ["full"] }
|