[package]
edition = "2021"
name = "sshfwd"
version = "0.1.2"
authors = ["gogoout"]
build = "build.rs"
include = [
"src/**/*",
"build.rs",
"prebuilt-agents/**/*",
"../../README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TUI-based SSH port forwarding manager with automatic port discovery"
homepage = "https://github.com/gogoout/sshfwd.rs"
documentation = "https://github.com/gogoout/sshfwd.rs#readme"
readme = "README.md"
keywords = [
"ssh",
"port-forwarding",
"tui",
"terminal",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/gogoout/sshfwd.rs"
[[bin]]
name = "sshfwd"
path = "src/main.rs"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossterm]
version = "0.28"
features = ["use-dev-tty"]
[dependencies.ratatui]
version = "0.29"
features = ["crossterm"]
[dependencies.russh]
version = "0.57"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.ssh2-config]
version = "0.6"
[dependencies.sshfwd-common]
version = "0.1.2"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]