1 | [package] |
2 | name = "atspi" |
3 | version = "0.19.0" |
4 | authors.workspace = true |
5 | edition = "2021" |
6 | description = "Pure-Rust, zbus-based AT-SPI2 protocol implementation." |
7 | license = "Apache-2.0 OR MIT" |
8 | readme = "../README.md" |
9 | repository = "https://github.com/odilia-app/atspi" |
10 | homepage = "https://github.com/odilia-app/atspi" |
11 | keywords = ["screen-reader" , "accessibility" , "a11y" , "tts" , "linux" ] |
12 | categories = ["accessibility" , "api-bindings" ] |
13 | rust-version = "1.68.2" |
14 | include = ["src/**/*" , "LICENSE-*" , "README.md" ] |
15 | |
16 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
17 | |
18 | [features] |
19 | default = ["async-std" ] |
20 | async-std = ["proxies-async-std" , "connection-async-std" ] |
21 | tokio = ["proxies-tokio" , "connection-tokio" ] |
22 | |
23 | proxies = [] |
24 | proxies-async-std = ["atspi-proxies/async-std" , "proxies" ] |
25 | proxies-tokio = ["atspi-proxies/tokio" , "proxies" ] |
26 | connection = [] |
27 | connection-async-std = ["atspi-connection/async-std" , "connection" ] |
28 | connection-tokio = ["atspi-connection/tokio" , "connection" ] |
29 | tracing = ["atspi-connection/tracing" ] |
30 | |
31 | [dependencies] |
32 | atspi-common = { path = "../atspi-common" , version = "0.3.0" , default-features = false } |
33 | atspi-proxies = { path = "../atspi-proxies" , version = "0.3.0" , default-features = false, optional = true } |
34 | atspi-connection = { path = "../atspi-connection" , version = "0.3.0" , default-features = false, optional = true } |
35 | |