1 | [package] |
2 | name = "atspi-common" |
3 | version = "0.3.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" ] |
12 | rust-version = "1.68.2" |
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_names = "2.5.0" |
26 | zvariant = { version = "3" , default-features = false } |
27 | zbus = { workspace = true, optional = true, default-features = false } |
28 | |
29 | [dev-dependencies] |
30 | zbus = { workspace = true } |
31 | atspi-connection = { path = "../atspi-connection" } |
32 | atspi-proxies = { path = "../atspi-proxies" } |
33 | tokio-stream = { version = "0.1" , default-features = false, features = ["time" ] } |
34 | tokio = { version = "1" , default_features = false, features = ["macros" , "rt-multi-thread" ] } |
35 | byteorder = "1.4.3" |
36 | rename-item = "0.1.0" |
37 | tokio-test = "0.4.2" |
38 | serde_plain = "1.0.1" |
39 | static_assertions = "1.1.0" |
40 | |