sendback 0.1.1

Send files back through your SSH session via reverse tunnel
Documentation
[package]
name = "sendback"
version = "0.1.1"
edition = "2021"
description = "Send files back through your SSH session via reverse tunnel"
license = "MIT"
repository = "https://github.com/yipihey/sendback"
homepage = "https://github.com/yipihey/sendback"
documentation = "https://github.com/yipihey/sendback#readme"
readme = "README.md"
keywords = ["ssh", "file-transfer", "tunnel", "scp", "reverse-tunnel"]
categories = ["command-line-utilities", "network-programming"]
authors = ["Tom Abel <sendback@tomabel.org>"]
rust-version = "1.70"

[dependencies]
tokio = { version = "1", features = ["full", "signal"] }
clap = { version = "4", features = ["derive"] }
sha2 = "0.10"
indicatif = "0.17"
directories = "5"
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
thiserror = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
hostname = "0.4"
byteorder = "1.5"
hex = "0.4"
zstd = "0.13"
chrono = { version = "0.4", features = ["serde"] }
socket2 = "0.5"
rand = "0.8"
uuid = { version = "1", features = ["v4"] }

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[dev-dependencies]
tempfile = "3"
tokio-test = "0.4"

[profile.release]
lto = true
strip = true