init small ssh-cli to accept commands over SSH and operate local locks
All checks were successful
Build Container / Build Container (push) Successful in 1m42s

This commit is contained in:
lilly 2026-07-18 21:10:32 +02:00
commit 504d64ea57
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g
5 changed files with 2062 additions and 0 deletions

12
ssh-cli/Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[package]
name = "ssh-cli"
version = "0.1.0"
edition = "2024"
[dependencies]
color-eyre = "0.6.5"
eyre = "0.6.12"
reqwest = { version = "0.13.4", features = ["blocking", "json"] }
serde = { version = "1.0.228", features = ["derive"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.23"