-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.3 KB
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
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "accessibility-core"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
description = "Cross-platform accessibility tree reading, querying, screenshots, and input automation for macOS, Windows, Linux, iOS Simulator, and Android."
readme = "../../README.md"
keywords = ["accessibility", "automation", "ui", "ax", "ui-automation"]
categories = ["accessibility", "gui", "os"]
[dependencies]
ab_glyph.workspace = true
accessibility-android-sys.workspace = true
accesskit.workspace = true
anyhow.workspace = true
async-trait.workspace = true
cssparser.workspace = true
euclid.workspace = true
image.workspace = true
imageproc.workspace = true
keyboard-types.workspace = true
quick-xml.workspace = true
selectors.workspace = true
serde.workspace = true
serde_json.workspace = true
slotmap.workspace = true
tokio.workspace = true
viuer.workspace = true
[target.'cfg(target_os = "macos")'.dependencies]
accessibility-ios-sys.workspace = true
accessibility-macos-sys.workspace = true
[target.'cfg(target_os = "windows")'.dependencies]
accessibility-windows-sys.workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
accessibility-linux-sys.workspace = true
[dev-dependencies]
serial_test.workspace = true
tokio.workspace = true