| 1 | [package] |
| 2 | name = "calloop-wayland-source" |
| 3 | description = "A wayland-rs client event source for callloop" |
| 4 | repository = "https://github.com/smithay/calloop-wayland-source" |
| 5 | version = "0.3.0" |
| 6 | edition = "2021" |
| 7 | authors = ["Kirill Chibisov <contact@kchibisov.com>" ] |
| 8 | license = "MIT" |
| 9 | readme = "README.md" |
| 10 | keywords = ["wayland" , "windowing" ] |
| 11 | rust-version = "1.65.0" |
| 12 | |
| 13 | [dependencies] |
| 14 | wayland-client = "0.31.1" |
| 15 | wayland-backend = "0.3.0" |
| 16 | calloop = "0.13.0" |
| 17 | log = { version = "0.4.19" , optional = true } |
| 18 | rustix = { version = "0.38.4" , default-features = false, features = ["std" ] } |
| 19 | |
| 20 | [dev-dependencies] |
| 21 | tempfile = "3.8.0" |
| 22 | wayland-protocols = { version = "0.31.0" , features = ["client" ] } |
| 23 | |