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