| 1 | [package] |
| 2 | name = "cursor-icon" |
| 3 | version = "1.1.0" |
| 4 | authors = ["Kirill Chibisov <contact@kchibisov.com>" ] |
| 5 | description = "Cross platform cursor icon type" |
| 6 | repository = "https://github.com/rust-windowing/cursor-icon" |
| 7 | keywords = ["windowing" , "cursor" ] |
| 8 | license = "MIT OR Apache-2.0 OR Zlib" |
| 9 | readme = "README.md" |
| 10 | edition = "2021" |
| 11 | categories = ["gui" ] |
| 12 | rust-version = "1.65.0" |
| 13 | |
| 14 | [dependencies] |
| 15 | serde = { version = "1.0.162" , default-features = false, features = ["derive" ], optional = true } |
| 16 | |
| 17 | [features] |
| 18 | default = ["std" ] |
| 19 | std = ["alloc" ] |
| 20 | alloc = [] |
| 21 | |
| 22 | [dev-dependencies] |
| 23 | wayland-client = "0.31.1" |
| 24 | wayland-cursor = "0.31.0" |
| 25 | |