-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 841 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "opencode-ssh-image-paste"
version = "0.1.5"
edition = "2024"
rust-version = "1.89"
description = "Paste Windows clipboard images into a remote OpenCode TUI over SSH"
license = "MIT"
readme = "README.md"
keywords = ["clipboard", "opencode", "ssh", "terminal", "windows"]
categories = ["command-line-utilities", "development-tools"]
publish = false
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
toml = "0.9"
[target.'cfg(windows)'.dependencies]
arboard = { version = "3.6", features = ["image-data"] }
png = "0.18"
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_Security",
"Win32_System_Console",
"Win32_System_DataExchange",
"Win32_System_Threading",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
] }