22 lines
600 B
TOML
22 lines
600 B
TOML
[package]
|
|
name = "sshmngrs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "A fast and simple SSH connection manager"
|
|
authors = ["kirbylife <hola@kirbylife.dev>"]
|
|
license = "WTFPL"
|
|
readme = "README.md"
|
|
repository = "https://git.kirbylife.dev/kirbylife/sshmngrs"
|
|
homepage = "https://git.kirbylife.dev/kirbylife/sshmngrs"
|
|
keywords = ["ssh", "tui", "ratatui", "terminal", "manager"]
|
|
categories = ["command-line-utilities"]
|
|
|
|
[dependencies]
|
|
ratatui = "0.30.2"
|
|
serde = { version = "1.0.229", features = ["derive"] }
|
|
toml = "1.1.3"
|
|
tui-input = "0.15.3"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.189"
|