-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 856 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "sshm"
version = "1.5.0"
edition = "2021"
description = "Fast SSH + Docker + Incus + Kubernetes manager for the terminal"
authors = ["Sn0wAlice"]
license = "Apache-2.0"
repository = "https://github.com/Sn0wAlice/sshm"
homepage = "https://github.com/Sn0wAlice/sshm"
readme = "README.md"
[dependencies]
serde = { version = "1.0.219", features = ["derive"] }
dirs = "6.0.0"
serde_json = "1.0.140"
inquire = { version = "0.7.5", default-features = true }
prettytable = "0.10.0"
ssh_config = "0.1.0"
ratatui = "0.30.0"
crossterm = "0.29.0"
regex = "1.11.1"
fuzzy-matcher = "0.3"
shellexpand = "3"
toml = "0.9.10"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
openssl = { version = "0.10", features = ["vendored"], optional = true }
anyhow = "1.0"
libc = "0.2"
[features]
vendored-openssl = ["openssl"]