2024-05-22 00:55:14 +02:00
|
|
|
[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"]
|
2025-09-03 10:43:37 +02:00
|
|
|
publish = false # TODO
|
2024-05-22 00:55:14 +02:00
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "sk8brd-cli"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = "1.0"
|
2025-09-03 10:43:37 +02:00
|
|
|
clap = { version = "4.5.31", features = ["derive"] }
|
|
|
|
|
colored = "3.0.0"
|
|
|
|
|
crossterm = "0.28.1"
|
2024-05-22 00:55:14 +02:00
|
|
|
sk8brd-proto = { path = "../proto/", features = ["ssh"] }
|
2025-09-03 10:43:37 +02:00
|
|
|
os_pipe = "1.2.1"
|
|
|
|
|
russh = "0.50.4"
|
|
|
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
|
|
|
tokio = { version = "1.43.0", features = ["full"] }
|