feat: add basic ssh manager application

This commit is contained in:
2025-07-06 20:05:22 +02:00
commit 0b098b25ba
11 changed files with 2033 additions and 0 deletions

12
Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "nossh"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5.40", features = ["derive", "env"] }
skim = "0.20.2"
tokio = { version = "1.46.1", features = ["full"] }
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }