1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: <short description, required>
Relax cargo dev-dependency on nix crate and explicitly enable the "process"
feature for compatibility with nix 0.27.
Author: Peter Michael Green <plugwash@debian.org>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1064552
Forwarded: not-needed
Last-Update: 2025-01-02
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: mdevctl-1.3.0/Cargo.toml
===================================================================
--- mdevctl-1.3.0.orig/Cargo.toml
+++ mdevctl-1.3.0/Cargo.toml
@@ -26,6 +26,6 @@ clap_complete = "4.0"
uuid = "1.0"
[dev-dependencies]
-nix = "0.26"
+nix = { version = ">= 0.26", features = ["process"]}
libc = "0.2"
tempfile = "3"
|