27 lines
983 B
TOML
27 lines
983 B
TOML
[package]
|
|
name = "voidpin"
|
|
edition = "2024"
|
|
readme = "../../README.md"
|
|
license = "MIT"
|
|
authors = ["kjuulh <contact@kasperhermansen.com>"]
|
|
repository = "https://git.kjuulh.io/kjuulh/voidpin.git"
|
|
description = "Voidpin allows sending copy/paste commands across the wire. It is specifically intended for use in ssh tunnels for long running sessions, where you want to share a clipboard. The primary use case is when a remote machine is used for development, but clipboard continues to be an ergonomic hurdle."
|
|
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
clap.workspace = true
|
|
dotenv.workspace = true
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
|
tonic = { version = "0.12.3", features = ["tls", "tls-roots"] }
|
|
prost = "0.13.4"
|
|
prost-types = "0.13.4"
|
|
bytes = "1.9.0"
|
|
async-trait = "0.1.85"
|