| 1 | [package] |
| 2 | name = "xkeysym" |
| 3 | version = "0.2.1" |
| 4 | edition = "2018" |
| 5 | authors = ["John Nunley <jtnunley01@gmail.com>" ] |
| 6 | description = "A library for working with X11 keysyms" |
| 7 | repository = "https://github.com/notgull/xkeysym" |
| 8 | license = "MIT OR Apache-2.0 OR Zlib" |
| 9 | keywords = ["x11" , "keysym" , "keysyms" ] |
| 10 | rust-version = "1.58.1" |
| 11 | |
| 12 | [dev-dependencies] |
| 13 | bytemuck = "1.12.3" |
| 14 | x11rb = "0.12.0" |
| 15 | |
| 16 | [workspace] |
| 17 | members = [ |
| 18 | "keysym-generator" , |
| 19 | ] |
| 20 | |
| 21 | [dependencies] |
| 22 | bytemuck = { version = "1.12.3" , default-features = false, features = ["derive" ], optional = true } |
| 23 | serde = { version = "1.0.160" , default-features = false, features = ["derive" ], optional = true } |
| 24 | |