1 | [package] |
2 | name = "atspi-proxies" |
3 | version = "0.3.0" |
4 | description = "AT-SPI2 proxies to query or manipulate UI objects" |
5 | license = "Apache-2.0 OR MIT" |
6 | readme = "README.md" |
7 | repository = "https://github.com/odilia-app/atspi" |
8 | homepage = "https://github.com/odilia-app/atspi" |
9 | keywords = ["screen-reader" , "accessibility" , "a11y" , "tts" , "linux" ] |
10 | categories = ["accessibility" , "api-bindings" ] |
11 | edition = "2021" |
12 | rust-version = "1.68.2" |
13 | include = ["src/**/*" , "README.md" ] |
14 | |
15 | [package.metadata.release] |
16 | release = true |
17 | publish = true |
18 | |
19 | [features] |
20 | default = ["async-std" ] |
21 | async-std = ["zbus/async-io" , "atspi-common/async-std" ] |
22 | gvariant = ["zbus/gvariant" ] |
23 | tokio = ["zbus/tokio" , "atspi-common/tokio" ] |
24 | |
25 | [dependencies] |
26 | atspi-common = { path = "../atspi-common" , version = "0.3.0" , default-features = false } |
27 | serde = { version = "^1.0" , default-features = false, features = ["derive" ] } |
28 | zbus = { workspace = true, default-features = false } |
29 | # optional dependencies |
30 | async-trait = { version = "^0.1.59" , optional = true } |
31 | futures-lite = { version = "1.12" , default-features = false, optional = true } |
32 | |
33 | [dev-dependencies] |
34 | atspi-common = { path = "../atspi-common" , version = "0.3.0" , features = ["async-std" ] } |
35 | byteorder = "1.4" |
36 | serde_plain = "1.0.1" |
37 | lazy_static = "1.0" |
38 | tokio-stream = "0.1" |
39 | tokio = { version = "1" , default_features = false, features = ["macros" , "rt-multi-thread" ] } |
40 | async-std = { version = "1" , features = ["attributes" ] } |
41 | futures-lite = { version = "1.12" , default-features = false } |
42 | tokio-test = "0.4.2" |
43 | rename-item = "0.1.0" |
44 | fantoccini = "0.19" |
45 | serde_json = "1.0.96" |
46 | serial_test = "2.0.0" |
47 | tracing = "0.1.37" |
48 | |