2019-02-10 01:28:53 +08:00
|
|
|
[package]
|
2019-02-10 19:05:47 +08:00
|
|
|
name = "smithay-clipboard"
|
2024-02-28 15:37:42 -05:00
|
|
|
version = "0.8.0"
|
2024-03-26 23:22:47 -04:00
|
|
|
authors = [
|
|
|
|
|
"Kirill Chibisov <contact@kchibisov.com>",
|
|
|
|
|
"Victor Berger <victor.berger@m4x.org>",
|
|
|
|
|
]
|
2023-10-10 20:49:56 +04:00
|
|
|
edition = "2021"
|
2019-02-14 18:23:55 +08:00
|
|
|
description = "Provides access to the wayland clipboard for client applications."
|
|
|
|
|
repository = "https://github.com/smithay/smithay-clipboard"
|
|
|
|
|
documentation = "https://smithay.github.io/smithay-clipboard"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
keywords = ["clipboard", "wayland"]
|
2023-10-10 20:15:14 +04:00
|
|
|
rust-version = "1.65.0"
|
2019-02-10 01:28:53 +08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-10 20:49:56 +04:00
|
|
|
libc = "0.2.149"
|
2026-03-02 11:33:13 -05:00
|
|
|
sctk = { package = "smithay-client-toolkit", version = "0.20", default-features = false, features = [
|
2024-03-26 23:22:47 -04:00
|
|
|
"calloop",
|
2024-06-11 13:46:42 -07:00
|
|
|
] }
|
2026-05-25 19:36:21 +02:00
|
|
|
wayland-backend = { version = "0.3.3", default-features = false, features = [
|
2024-03-26 23:22:47 -04:00
|
|
|
"client_system",
|
|
|
|
|
] }
|
2024-03-27 23:46:24 -04:00
|
|
|
raw-window-handle = { version = "0.6", optional = true }
|
2019-02-10 01:28:53 +08:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-28 14:59:34 -05:00
|
|
|
dirs = "5.0.1"
|
2026-03-02 11:33:13 -05:00
|
|
|
sctk = { package = "smithay-client-toolkit", version = "0.20", default-features = false, features = [
|
2024-03-26 23:22:47 -04:00
|
|
|
"calloop",
|
|
|
|
|
"xkbcommon",
|
2024-06-11 13:46:42 -07:00
|
|
|
] }
|
2024-02-28 14:59:34 -05:00
|
|
|
thiserror = "1.0.57"
|
2024-02-27 17:50:33 -05:00
|
|
|
url = "2.5.0"
|
2021-02-26 02:23:24 -08:00
|
|
|
|
|
|
|
|
[features]
|
2024-03-27 23:46:24 -04:00
|
|
|
default = ["dlopen", "dnd", "rwh-6"]
|
|
|
|
|
rwh-6 = ["raw-window-handle"]
|
2024-03-20 15:41:09 -04:00
|
|
|
dnd = []
|
2024-03-26 23:22:47 -04:00
|
|
|
dlopen = ["wayland-backend/dlopen"]
|