| 1 | [package] |
| 2 | name = "smithay-clipboard" |
| 3 | version = "0.7.2" |
| 4 | authors = ["Kirill Chibisov <contact@kchibisov.com>" , "Elinor Berger <elinor@safaradeg.net>" ] |
| 5 | edition = "2021" |
| 6 | description = "Provides access to the wayland clipboard for client applications." |
| 7 | repository = "https://github.com/smithay/smithay-clipboard" |
| 8 | documentation = "https://smithay.github.io/smithay-clipboard" |
| 9 | license = "MIT" |
| 10 | keywords = ["clipboard" , "wayland" ] |
| 11 | rust-version = "1.65.0" |
| 12 | |
| 13 | [dependencies] |
| 14 | libc = "0.2.149" |
| 15 | sctk = { package = "smithay-client-toolkit" , version = "0.19.2" , default-features = false, features = ["calloop" ] } |
| 16 | wayland-backend = { version = "0.3.5" , default-features = false, features = ["client_system" ] } |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | sctk = { package = "smithay-client-toolkit" , version = "0.19.2" , default-features = false, features = ["calloop" , "xkbcommon" ] } |
| 20 | |
| 21 | [features] |
| 22 | default = ["dlopen" ] |
| 23 | dlopen = ["wayland-backend/dlopen" ] |
| 24 | |