[package]
edition = "2024"
name = "wl-data-control-protocol-evt"
version = "1.0.0"
authors = ["Ilya Bylich <ibylich@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of ext-data-control Wayland protocol, pollable and event based"
readme = "README.md"
license = "MIT"
repository = "https://github.com/iliabylich/mini-sansio-dbus"
[lib]
name = "wl_data_control_protocol_evt"
path = "src/lib.rs"
[[example]]
name = "poll"
path = "examples/poll.rs"
[[example]]
name = "tokio"
path = "examples/tokio.rs"
[dependencies.crossbeam-queue]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.rustix]
version = "1.1"
features = [
"fs",
"pipe",
]
[dependencies.wayland-client]
version = "0.31"
[dependencies.wayland-protocols]
version = "0.32"
features = [
"client",
"staging",
]
[dependencies.wayland-protocols-wlr]
version = "0.3"
features = ["client"]
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.rustix]
version = "1.1"
features = [
"fs",
"pipe",
"time",
]
[dev-dependencies.tokio]
version = "1"
features = ["full"]