-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 724 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 724 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
31
32
33
[package]
name = "screen-inspector"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "screen_inspector"
[dependencies]
regex = "1.11.1"
anyhow = "1.0.95"
device_query = "2.1.0"
log = "0.4.14"
dirs = "5.0.1"
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.58.0", features = [
"Win32_Foundation",
"Win32_UI",
"Win32_UI_WindowsAndMessaging",
"Win32_System",
"Win32_System_Threading",
] }
[target.'cfg(target_os = "macos")'.dependencies]
core-graphics = "0.24"
core-foundation = "0.10.0"
appkit-nsworkspace-bindings = "0.1.2"
objc = "0.2"
[dev-dependencies]
env_logger = "0.11.6"