1 | [package] |
2 | name = "atspi-proxies" |
3 | version = "0.6.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.workspace = true |
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 = ["zvariant/gvariant" ] |
23 | tokio = ["zbus/tokio" , "atspi-common/tokio" ] |
24 | |
25 | [dependencies] |
26 | atspi-common = { path = "../atspi-common" , version = "0.6.0" , default-features = false } |
27 | serde = { version = "^1.0" , default-features = false, features = ["derive" ] } |
28 | zbus = { workspace = true } |
29 | zvariant = { version = "4.1" , default-features = false } |
30 | |
31 | [dev-dependencies] |
32 | async-std = { version = "1" , features = ["attributes" ] } |
33 | atspi-common = { path = "../atspi-common" , version = "0.6.0" , features = ["async-std" ] } |
34 | byteorder = "1.4" |
35 | futures-lite = { version = "2" , default-features = false } |
36 | rename-item = "0.1.0" |
37 | serde_json = "1.0.96" |
38 | serde_plain = "1.0.1" |
39 | tokio = { version = "1" , default-features = false, features = ["macros" , "rt-multi-thread" ] } |
40 | tokio-stream = "0.1" |
41 | tokio-test = "0.4.2" |
42 | tracing = "0.1.37" |
43 | |