1 | [package] |
2 | name = "accesskit" |
3 | version = "0.12.3" |
4 | authors.workspace = true |
5 | license.workspace = true |
6 | description = "UI accessibility infrastructure across platforms" |
7 | categories.workspace = true |
8 | keywords = ["gui" , "ui" , "accessibility" ] |
9 | repository.workspace = true |
10 | readme = "README.md" |
11 | edition.workspace = true |
12 | rust-version.workspace = true |
13 | |
14 | [package.metadata.docs.rs] |
15 | features = ["schemars" , "serde" ] |
16 | |
17 | [dependencies] |
18 | enumn = { version = "0.1.6" , optional = true } |
19 | pyo3 = { version = "0.20" , optional = true } |
20 | schemars = { version = "0.8.7" , optional = true } |
21 | serde = { version = "1.0" , features = ["derive" ], optional = true } |
22 | |
23 | [features] |
24 | serde = ["dep:serde" , "enumn" ] |
25 | schemars = ["dep:schemars" , "serde" ] |
26 | |