1 | [package] |
2 | name = "atspi-connection" |
3 | version = "0.3.0" |
4 | edition = "2021" |
5 | description = "A method of connecting, querying, sending and receiving over AT-SPI." |
6 | license = "Apache-2.0 OR MIT" |
7 | keywords = ["screen-reader" , "accessibility" , "a11y" , "linux" ] |
8 | categories = ["accessibility" , "API bindings" ] |
9 | rust-version = "1.68.2" |
10 | repository = "https://github.com/odilia-app/atspi/" |
11 | readme = "README.md" |
12 | include = ["src/**/*" , "LICENSE-*" , "README.md" ] |
13 | |
14 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
15 | |
16 | [features] |
17 | default = ["async-std" ] |
18 | tracing = ["dep:tracing" ] |
19 | async-std = ["zbus/async-io" , "atspi-proxies/async-std" , "atspi-common/async-std" ] |
20 | tokio = ["zbus/tokio" , "atspi-proxies/tokio" , "atspi-common/tokio" ] |
21 | |
22 | [dependencies] |
23 | atspi-proxies = { path = "../atspi-proxies/" , version = "0.3.0" , default-features = false } |
24 | atspi-common = { path = "../atspi-common/" , version = "0.3.0" , default-features = false } |
25 | futures-lite = "1.13.0" |
26 | zbus.workspace = true |
27 | tracing = { optional = true, workspace = true } |
28 | |
29 | [dev-dependencies] |
30 | tokio-test = "0.4.2" |
31 | enumflags2.workspace = true |
32 | |