| 1 | [package] |
| 2 | name = "accesskit" |
| 3 | version = "0.17.1" |
| 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" , default-features = false, features = ["alloc" , "derive" ], optional = true } |
| 22 | |
| 23 | [features] |
| 24 | enumn = ["dep:enumn" ] |
| 25 | pyo3 = ["dep:pyo3" ] |
| 26 | serde = ["dep:serde" , "enumn" ] |
| 27 | schemars = ["dep:schemars" , "serde" ] |
| 28 | |