| 1 | [package] |
| 2 | name = "atspi-connection" |
| 3 | version = "0.6.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.workspace = true |
| 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-common = { path = "../atspi-common/" , version = "0.6.0" , default-features = false } |
| 24 | atspi-proxies = { path = "../atspi-proxies/" , version = "0.6.0" , default-features = false } |
| 25 | futures-lite = { version = "2" , default-features = false } |
| 26 | tracing = { optional = true, workspace = true } |
| 27 | zbus.workspace = true |
| 28 | |
| 29 | [dev-dependencies] |
| 30 | tokio-test = "0.4.2" |
| 31 | enumflags2.workspace = true |
| 32 | |