[package]
edition = "2024"
rust-version = "1.88"
name = "backchannel"
version = "0.11.2"
build = false
exclude = [
"justfile",
"tests/live.py",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open projects and files on the host machine from within an ssh session, tunneled over agent forwarding"
readme = "README.md"
keywords = [
"ssh",
"remote",
"clipboard",
"vscode",
"agent-forwarding",
]
categories = [
"command-line-utilities",
"development-tools",
"network-programming",
]
license = "MIT"
repository = "https://github.com/codeinred/backchannel"
[[bin]]
name = "back"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.humantime]
version = "2"
[dependencies.libc]
version = "0.2"
[dependencies.percent-encoding]
version = "2"
[profile.release]
strip = true