-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
31 lines (26 loc) · 942 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
30
[package]
name = "get-selected-text"
version = "0.1.6"
edition = "2021"
authors = ["yetone <[email protected]>"]
license = "MIT / Apache-2.0"
homepage = "https://github.com/yetone/get-selected-text"
repository = "https://github.com/yetone/get-selected-text"
description = "A tiny Rust library that allows you to easily obtain selected text across all platforms (macOS, Windows, Linux)"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.'cfg(not(target_os = "macos"))'.dependencies]
arboard = "3.2.0"
enigo = { version = "0.2.0", features = [ "xdo" ] }
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.24"
objc = "0.2.7"
macos-accessibility-client = "0.0.1"
core-foundation = "0.9.3"
core-graphics = "0.22.3"
accessibility-ng = "0.1.6"
accessibility-sys-ng = "0.1.3"
[dependencies]
active-win-pos-rs = "0.8.3"
debug_print = "1.0.0"
lru = "0.12.3"
parking_lot = "0.12.1"