forked from dimusic/active-win-pos-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1014 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
31
32
[package]
name = "active-win-pos-rs"
version = "0.8.3"
authors = ["Dmitry Malkov <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["window", "active", "current", "position", "title"]
description = "Get position, size, title and a few other properties of the active window on Windows, MacOS and Linux"
repository = "https://github.com/dimusic/active-win-pos-rs"
[workspace]
members = [
"appkit-nsworkspace-bindings",
]
[target.'cfg(target_os = "macos")'.dependencies]
core-graphics = "0.23"
core-foundation = "0.9"
objc = "0.2"
appkit-nsworkspace-bindings = { path = "./appkit-nsworkspace-bindings", version = "0.1" }
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.48.0", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
"Win32_System_Threading",
"Win32_Storage_FileSystem",
"Win32_System_ProcessStatus"
]}
[target.'cfg(target_os = "linux")'.dependencies]
xcb = { version = "1.2.1", features = [ "randr" ] }