-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (20 loc) · 910 Bytes
/
Cargo.toml
File metadata and controls
23 lines (20 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "smithay-clipboard"
version = "0.7.3"
authors = ["Kirill Chibisov <contact@kchibisov.com>", "Elinor Berger <elinor@safaradeg.net>"]
edition = "2024"
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"]
rust-version = "1.85.0"
[dependencies]
libc = "0.2.149"
sctk = { package = "smithay-client-toolkit", version = "0.20.0", default-features = false, features = ["calloop"] }
wayland-backend = { version = "0.3.5", default-features = false, features = ["client_system"] }
[dev-dependencies]
sctk = { package = "smithay-client-toolkit", version = "0.20.0", default-features = false, features = ["calloop", "xkbcommon"] }
[features]
default = ["dlopen"]
dlopen = ["wayland-backend/dlopen" ]