Newer
Older
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
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Fri, 11 Jun 2021 13:45:43 +0200
Subject: sort: fix dependencies versions
Importing upstream patches for `sort` have the side-effect of setting
dependencies versions incompatible with those we have in Apertis.
As the lower versions we carry are functionally equivalent for this
use-case, this patch downgrades the required versions to the ones
available in Apertis.
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Forwarded: not-needed
---
src/uu/sort/Cargo.toml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/uu/sort/Cargo.toml b/src/uu/sort/Cargo.toml
index ddea900..9a2e808 100644
--- a/src/uu/sort/Cargo.toml
+++ b/src/uu/sort/Cargo.toml
@@ -15,13 +15,13 @@ edition = "2018"
path = "src/sort.rs"
[dependencies]
-rayon = "1.5"
+rayon = "1.1"
rand = "0.7"
clap = "2.33"
-fnv = "1.0.7"
+fnv = "1.0.6"
itertools = "0.9"
semver = "0.9.0"
-smallvec = "1.6.1"
+smallvec = "1.4.2"
uucore = { version=">=0.0.8", package="uucore", path="../../uucore", features=["fs"] }
uucore_procs = { version=">=0.0.5", package="uucore_procs", path="../../uucore_procs" }