File: fix-hashsum.diff

package info (click to toggle)
rust-coreutils 0.0.17-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,956 kB
  • sloc: sh: 491; python: 304; javascript: 72; makefile: 37
file content (24 lines) | stat: -rw-r--r-- 642 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Index: coreutils/src/uu/hashsum/Cargo.toml
===================================================================
--- coreutils.orig/src/uu/hashsum/Cargo.toml
+++ coreutils/src/uu/hashsum/Cargo.toml
@@ -15,15 +15,15 @@ edition = "2021"
 path = "src/hashsum.rs"
 
 [dependencies]
-digest = "0.10.6"
+digest = "0.10"
 clap = { version = "4.0", features = ["wrap_help", "cargo"] }
 hex = "0.4.3"
 memchr = "2"
 md-5 = "0.10"
 regex = "1"
-sha1 = "0.10.1"
-sha2 = "0.10.2"
-sha3 = "0.10.6"
+sha1 = "0.10"
+sha2 = "0.10"
+sha3 = "0.10"
 blake2b_simd = "1.0.0"
 blake3 = "1.3.1"
 uucore = { version=">=0.0.17", package="uucore", path="../../uucore" }