[package]
edition = "2021"
rust-version = "1.70.0"
name = "clipcast"
version = "0.2.0"
authors = ["Maxim Sokolov"]
build = false
exclude = [
"tests/*",
"examples/*",
".github/*",
"assets/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bidirectional clipboard synchronization tool that seamlessly connects local and remote machines over SSH, enabling real-time clipboard sharing with automatic reconnection and customizable clipboard handlers"
homepage = "https://github.com/alfa07/clipcast"
documentation = "https://docs.rs/clipcast"
readme = "README.md"
keywords = [
"clipboard",
"ssh",
"sync",
"remote",
"tool",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/alfa07/clipcast"
[[bin]]
name = "clipcast"
path = "src/main.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5.23"
features = ["derive"]
[dependencies.clap_complete]
version = "4.4.10"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.133"
[dependencies.shlex]
version = "1.3.0"
[dependencies.tokio]
version = "1.42.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]