Initial implementation of clipboard forwarding

This commit is contained in:
John Doty 2024-06-23 08:54:41 -07:00
parent fb86cbd0de
commit a40a493d39
7 changed files with 776 additions and 44 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "fwd"
version = "0.9"
version = "0.9.0"
edition = "2021"
license = "MIT"
description = "Automatically forward ports to a remote server over ssh"
@ -16,11 +16,13 @@ bench = false
[dependencies]
anyhow = "1.0"
bytes = "1"
copypasta = "0.10.1"
crossterm = { version = "0.25", features = ["event-stream"] }
home = "0.5.4"
indoc = "1"
log = { version = "0.4", features = ["std"] }
open = "3"
rand = "0.8.5"
thiserror = "1.0"
tokio = { version = "1", features = ["io-std", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "fs"] }
tokio-stream = "0.1"