about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/sshs/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/tools/sshs/Cargo.toml')
-rw-r--r--nixpkgs/pkgs/development/tools/sshs/Cargo.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/tools/sshs/Cargo.toml b/nixpkgs/pkgs/development/tools/sshs/Cargo.toml
new file mode 100644
index 000000000000..1bab1b60c9f9
--- /dev/null
+++ b/nixpkgs/pkgs/development/tools/sshs/Cargo.toml
@@ -0,0 +1,31 @@
+[package]
+name = "sshs"
+version = "4.2.1"
+edition = "2021"
+
+[[bin]]
+name = "sshs"
+path = "src/main.rs"
+
+[profile.release]
+strip = true
+lto = true
+codegen-units = 1
+
+[dependencies]
+anyhow = "1.0.80"
+clap = { version = "4.5.0", features = ["derive"] }
+crossterm = "0.27.0"
+fuzzy-matcher = "0.3.7"
+glob = "0.3.1"
+handlebars = "5.1.0"
+itertools = "0.12.1"
+ratatui = "0.26.1"
+regex = { version = "1.10.3", default-features = false, features = ["std"] }
+serde = { version = "1.0.197", features = ["derive"] }
+shellexpand = "3.1.0"
+shlex = "1.3.0"
+strum = "0.26.1"
+strum_macros = "0.26.1"
+tui-input = "0.8.0"
+unicode-width = "0.1.11"