2024-03-26 16:03:05 -04:00
|
|
|
[package]
|
|
|
|
|
name = "dnd"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
mime = { path = "../mime" }
|
|
|
|
|
bitflags = "2.5.0"
|
2024-03-29 15:48:29 -04:00
|
|
|
raw-window-handle = "0.6"
|
2024-03-26 16:03:05 -04:00
|
|
|
|
|
|
|
|
[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten", target_os="ios", target_os="redox"))))'.dependencies]
|
2026-03-02 12:32:18 -05:00
|
|
|
smithay-clipboard = { git = "https://github.com/pop-os/smithay-clipboard", tag = "sctk-0.20", features = [
|
2024-03-26 16:03:05 -04:00
|
|
|
"dnd",
|
|
|
|
|
] }
|
2026-03-02 12:32:18 -05:00
|
|
|
sctk = { package = "smithay-client-toolkit", version = "0.20", default-features = false, features = [
|
2024-03-26 16:03:05 -04:00
|
|
|
"calloop",
|
2024-06-11 17:58:40 -07:00
|
|
|
] }
|