1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Description: Disable the skim feature until it's packaged
skim is not yet in Debian so we disable the corresponding feature
Author: Matthias Geiger <werdahias@debian.org>
Forwarded: not-needed
Last-Update: 2025-01-13
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -22,7 +22,7 @@
path = "./src/main.rs"
[features]
-default = ["backend-gnupg-bin", "alias", "clipboard", "notify", "select-skim", "select-fzf-bin", "tomb", "totp"]
+default = ["backend-gnupg-bin", "alias", "clipboard", "notify", "select-fzf-bin", "tomb", "totp"]
### Regular features
@@ -51,11 +51,6 @@
### Pluggable interactive selection systems
-# Option (default): interactive selection with skim (ignored on Windows)
-select-skim = ["skim"]
-
-# Option: interactive selection with skim binary
-select-skim-bin = []
# Option: interactive selection with fzf binary
select-fzf-bin = []
@@ -111,7 +106,4 @@
[target.'cfg(all(unix, not(any(target_os="macos", target_os="android", target_os="emscripten")), target_env = "musl"))'.dependencies]
copypasta-ext = { version = "0.4.1", optional = true, default-features = false, features = ["x11-bin", "wayland-bin"] }
-# Interactive selection with skim on unix platforms
-[target.'cfg(unix)'.dependencies]
-skim = { version = "0.10", optional = true, default-features = false }
|