| 1 | [package] |
| 2 | name = "atspi-common" |
| 3 | version = "0.6.0" |
| 4 | edition = "2021" |
| 5 | readme = "README.md" |
| 6 | categories = ["accessibility" , "api-bindings" ] |
| 7 | keywords = ["Macros" , "Accessibility" ] |
| 8 | repository = "https://github.com/odilia-app/atspi" |
| 9 | description = "Primitive types used for sending and receiving Linux accessibility events." |
| 10 | license = "Apache-2.0 OR MIT" |
| 11 | include = ["src/**/*" , "LICENSE-*" , "README.md" , "xml/*" ] |
| 12 | rust-version.workspace = true |
| 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 | async-std = ["zbus/async-io" ] |
| 19 | tokio = ["zbus/tokio" ] |
| 20 | |
| 21 | [dependencies] |
| 22 | enumflags2 = "0.7.7" |
| 23 | serde = "1.0" |
| 24 | static_assertions = "1.1.0" |
| 25 | zbus-lockstep = "0.4.4" |
| 26 | zbus-lockstep-macros = "0.4.4" |
| 27 | zbus_names = "3.0" |
| 28 | zvariant = { version = "4.1" , default-features = false } |
| 29 | zbus = { workspace = true, optional = true, default-features = false } |
| 30 | |
| 31 | [dev-dependencies] |
| 32 | atspi-connection = { path = "../atspi-connection" } |
| 33 | atspi-proxies = { path = "../atspi-proxies" } |
| 34 | rename-item = "0.1.0" |
| 35 | serde_plain = "1.0.1" |
| 36 | static_assertions = "1.1.0" |
| 37 | tokio-stream = { version = "0.1" , default-features = false, features = ["time" ] } |
| 38 | tokio = { version = "1" , default-features = false, features = ["macros" , "rt-multi-thread" ] } |
| 39 | tokio-test = "0.4.2" |
| 40 | zbus = { workspace = true } |
| 41 | |