25 lines
616 B
TOML
25 lines
616 B
TOML
[package]
|
|
name = "fwd"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Automatically forward ports to a remote server over ssh"
|
|
homepage = "https://github.com/DeCarabas/fwd"
|
|
repository = "https://github.com/DeCarabas/fwd"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bytes = "1"
|
|
crossterm = { version = "0.25", features = ["event-stream"] }
|
|
home = "0.5.4"
|
|
log = { version = "0.4", features = ["std"] }
|
|
open = "3"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
toml = "0.5"
|
|
tui = "0.19"
|
|
|
|
[target.'cfg(target_os="linux")'.dependencies]
|
|
procfs = "0.14.1"
|