• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

blake3パッケージ


Commit MetaInfo

Revisionf161c99ddbfa9dc2a807330125ca3161ff3a7238 (tree)
Time2020-05-29 06:11:54
Authordyknon <dyknon@user...>
Commiterdyknon

Log Message

update depending crate + release

Change Summary

Incremental Difference

--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,11 @@
1-blake3 (0.3.4-1) UNRELEASED; urgency=medium
1+blake3 (0.3.4-1) unstable; urgency=medium
22
33 * new upstream version
4+ - better md5sum compatibility
5+ - --check option is added on upstream
46 * update debian/copyright
57
6- -- dyknon <dyknon@users.osdn.me> Fri, 17 Apr 2020 12:46:51 +0900
8+ -- dyknon <dyknon@users.osdn.me> Fri, 29 May 2020 06:11:02 +0900
79
810 blake3 (0.3.1-3) unstable; urgency=medium
911
--- a/debian/control
+++ b/debian/control
@@ -12,11 +12,11 @@ Build-Depends: debhelper-compat (= 12),
1212 librust-crypto-mac-0.7+default-dev (>= 0.7.0),
1313 librust-digest-0.8+default-dev (>= 0.8.0),
1414 librust-anyhow-1+default-dev (>= 1.0.25),
15- librust-clap-2-dev (>= 2.33.0),
15+ librust-clap-2+default-dev (>= 2.33.0),
1616 librust-hex-0.4+default-dev (>= 0.4.0),
1717 librust-memmap-0.7+default-dev (>= 0.7.0),
1818 librust-rayon-1+default-dev (>= 1.2.1),
19- librust-wild-dev (>= 2.0.2)
19+ librust-wild-2+default-dev (>= 2.0.2)
2020 Standards-Version: 4.5.0
2121 Homepage: https://github.com/BLAKE3-team/BLAKE3
2222 #Vcs-Browser: https://salsa.debian.org/debian/blake3
--- a/debian/patches/0001-change-depending-crate-versions.patch
+++ b/debian/patches/0001-change-depending-crate-versions.patch
@@ -3,10 +3,11 @@ Date: Sat, 4 Apr 2020 04:42:57 +0900
33 Subject: change depending crate versions
44
55 ---
6- Cargo.toml | 4 ++--
7- src/lib.rs | 8 ++++++--
8- src/traits.rs | 3 ++-
9- 3 files changed, 10 insertions(+), 5 deletions(-)
6+ Cargo.toml | 4 ++--
7+ b3sum/Cargo.toml | 4 ++--
8+ src/lib.rs | 8 ++++++--
9+ src/traits.rs | 3 ++-
10+ 4 files changed, 12 insertions(+), 7 deletions(-)
1011
1112 diff --git a/Cargo.toml b/Cargo.toml
1213 index 0d77fc8..ed69efd 100644
@@ -25,6 +26,24 @@ index 0d77fc8..ed69efd 100644
2526 crypto-mac = "0.7.0"
2627
2728 [dev-dependencies]
29+diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
30+index 56ed381..151648a 100644
31+--- a/b3sum/Cargo.toml
32++++ b/b3sum/Cargo.toml
33+@@ -16,11 +16,11 @@ pure = ["blake3/pure"]
34+ [dependencies]
35+ anyhow = "1.0.25"
36+ blake3 = { version = "0.3", path = "..", features = ["rayon"] }
37+-clap = "2.33.1"
38++clap = "2.33"
39+ hex = "0.4.0"
40+ memmap = "0.7.0"
41+ rayon = "1.2.1"
42+-wild = "2.0.3"
43++wild = "2.0.2"
44+
45+ [dev-dependencies]
46+ duct = "0.13.3"
2847 diff --git a/src/lib.rs b/src/lib.rs
2948 index e9480e8..25e2f80 100644
3049 --- a/src/lib.rs