-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
29 lines (24 loc) · 947 Bytes
/
Cargo.toml
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
[package]
name = "selection"
authors = ["Pylogmon"]
description = "Get the text selected by the cursor"
repository = "https://github.com/pot-app/Selection"
keywords = ["selection", "linux", "windows", "macos"]
categories = ["gui"]
license = "GPL-3.0-only"
version = "1.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
[target.'cfg(windows)'.dependencies]
windows = {version="0.56.0",features= ["Win32_UI_WindowsAndMessaging", "Win32_Foundation","Win32_System_Threading","Win32_UI_Input_KeyboardAndMouse","Win32_System_DataExchange","Win32_UI_Accessibility","Win32_System_Com"] }
enigo = "0.2.0"
arboard = "3.4.0"
[target.'cfg(target_os = "linux")'.dependencies]
x11-clipboard = "0.9.2"
wl-clipboard-rs = "0.8.0"
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.9.4"
accessibility-ng = "0.1.6"
accessibility-sys-ng = "0.1.3"