smithay-clipboard/Cargo.toml

38 lines
1 KiB
TOML
Raw Normal View History

2019-02-10 01:28:53 +08:00
[package]
2019-02-10 19:05:47 +08:00
name = "smithay-clipboard"
version = "0.8.0"
authors = [
"Kirill Chibisov <contact@kchibisov.com>",
"Victor Berger <victor.berger@m4x.org>",
]
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]
libc = "0.2.149"
sctk = { package = "smithay-client-toolkit", git = "https://github.com/Smithay/client-toolkit", default-features = false, features = [
"calloop",
] }
wayland-backend = { version = "0.3.3", default_features = false, features = [
"client_system",
] }
2019-02-10 01:28:53 +08:00
[dev-dependencies]
dirs = "5.0.1"
sctk = { package = "smithay-client-toolkit", git = "https://github.com/Smithay/client-toolkit", default-features = false, features = [
"calloop",
"xkbcommon",
] }
thiserror = "1.0.57"
2024-02-27 17:50:33 -05:00
url = "2.5.0"
[features]
2024-03-20 15:41:09 -04:00
default = ["dlopen", "dnd"]
dnd = []
dlopen = ["wayland-backend/dlopen"]