File: cargo-Update-nix-crate.patch

package info (click to toggle)
fragments 3.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,068 kB
  • sloc: sh: 484; makefile: 22
file content (34 lines) | stat: -rw-r--r-- 903 bytes parent folder | download | duplicates (2)
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
From: Maximiliano Sandoval <msandova@gnome.org>
Date: Sat, 3 Aug 2024 12:04:17 +0200
Subject: cargo: Update nix crate

We were building both versions as seen by:

```
 $ cargo update
    Updating crates.io index
     Locking 0 packages to latest compatible versions
    Removing cfg_aliases v0.1.1
    Removing nix v0.28.0
```

(cherry picked from commit fb1b6c35ddf807cb990bad287c2a942bc13f699a)

Origin: upstream, after 3.0.1
---
 Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index 9d49791..e76ca4c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,7 @@ gettext-rs = { version = "0.7", features = ["gettext-system"] }
 human-sort = "0.2"
 log = "0.4"
 magnet-uri = "0.2"
-nix = { version = "0.28", features = ["signal"] }
+nix = { version = ">= 0.29", features = ["signal"] }
 once_cell = "1.19"
 pretty_env_logger = "0.5"
 regex = "1.10"