From af8e6a872d8ac4956e044b9cb05a615a48261a57 Mon Sep 17 00:00:00 2001 From: Lionel DARNIS Date: Mon, 25 May 2026 19:36:22 +0200 Subject: [PATCH] chore: use local smithay-clipboard --- dnd/Cargo.toml | 2 +- mime/Cargo.toml | 2 +- wayland/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dnd/Cargo.toml b/dnd/Cargo.toml index 0ddb926..868bceb 100644 --- a/dnd/Cargo.toml +++ b/dnd/Cargo.toml @@ -9,7 +9,7 @@ bitflags = "2.5.0" raw-window-handle = "0.6" [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten", target_os="ios", target_os="redox"))))'.dependencies] -smithay-clipboard = { git = "https://github.com/pop-os/smithay-clipboard", tag = "sctk-0.20", features = [ +smithay-clipboard = { path = "../../smithay-clipboard", features = [ "dnd", ] } sctk = { package = "smithay-client-toolkit", version = "0.20", default-features = false, features = [ diff --git a/mime/Cargo.toml b/mime/Cargo.toml index adacdb5..259b4f0 100644 --- a/mime/Cargo.toml +++ b/mime/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten", target_os="ios", target_os="redox"))))'.dependencies] -smithay-clipboard = { git = "https://github.com/pop-os/smithay-clipboard", tag = "sctk-0.20" } +smithay-clipboard = { path = "../../smithay-clipboard" } diff --git a/wayland/Cargo.toml b/wayland/Cargo.toml index fd1d4fc..615f76c 100644 --- a/wayland/Cargo.toml +++ b/wayland/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["clipboard", "wayland"] [dependencies] -smithay-clipboard = { git = "https://github.com/pop-os/smithay-clipboard", tag = "sctk-0.20", features = [ +smithay-clipboard = { path = "../../smithay-clipboard", features = [ "dnd", ] } mime = { path = "../mime" }