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
|
Last-Update: 2022-07-12
Forwarded: not-needed
Author: Marc Dequènes (Duck) <Duck@DuckCorp.org>
Description: Relax deps to avoid packaging extra versions
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/agreety/Cargo.toml
+++ b/agreety/Cargo.toml
@@ -10,7 +10,7 @@
[dependencies]
greetd_ipc = { path = "../greetd_ipc", features = ["sync-codec"]}
inish = { path = "../inish"}
-rpassword = "5.0"
+rpassword = ">=6.0"
getopts = "0.2"
enquote = "1.1"
-nix = "0.27"
+nix = ">=0.27"
--- a/greetd/Cargo.toml
+++ b/greetd/Cargo.toml
@@ -11,7 +11,7 @@
debug = []
[dependencies]
-nix = { version = "0.27", features = ["ioctl", "signal", "user", "fs", "mman"] }
+nix = { version = ">=0.27", features = ["ioctl", "signal", "user", "fs", "mman"] }
pam-sys = "0.5.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
|