Skip to content

Commit d260566

Browse files
committed
Merge branch 'master' into new_blb_format
2 parents 5df163c + a6a3052 commit d260566

File tree

28 files changed

+97
-97
lines changed

28 files changed

+97
-97
lines changed

.github/workflows/fsb.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
set-msrv:
2727
uses: RustCrypto/actions/.github/workflows/set-msrv.yml@master
2828
with:
29-
msrv: 1.85.0
29+
msrv: 1.85.0
3030

3131
build:
3232
needs: set-msrv
@@ -66,7 +66,8 @@ jobs:
6666
- uses: RustCrypto/actions/cargo-hack-install@master
6767
- run: cargo hack test --feature-powerset
6868

69-
minimal-versions:
70-
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
71-
with:
72-
working-directory: ${{ github.workflow }}
69+
# Disabled until new `whirlpool` prerelease is cut (@tarcieri)
70+
# minimal-versions:
71+
# uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
72+
# with:
73+
# working-directory: ${{ github.workflow }}

.github/workflows/k12.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
set-msrv:
2727
uses: RustCrypto/actions/.github/workflows/set-msrv.yml@master
2828
with:
29-
msrv: 1.85.0
29+
msrv: 1.85.0
3030

3131
build:
3232
needs: set-msrv
@@ -66,7 +66,8 @@ jobs:
6666
- uses: RustCrypto/actions/cargo-hack-install@master
6767
- run: cargo hack test --feature-powerset
6868

69-
minimal-versions:
70-
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
71-
with:
72-
working-directory: ${{ github.workflow }}
69+
# Disabled until new `sha3` prerelease is cut (@tarcieri)
70+
# minimal-versions:
71+
# uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
72+
# with:
73+
# working-directory: ${{ github.workflow }}

.github/workflows/sha1-checked.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@ jobs:
5151
- uses: RustCrypto/actions/cargo-hack-install@master
5252
- run: cargo hack build --target ${{ matrix.target }} --each-feature --exclude-features default,std
5353

54-
minimal-versions:
55-
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
56-
with:
57-
working-directory: ${{ github.workflow }}
54+
# Disabled until new `sha1` prerelease is cut (@tarcieri)
55+
# minimal-versions:
56+
# uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
57+
# with:
58+
# working-directory: ${{ github.workflow }}
5859

5960
# Linux tests
6061
linux:

Cargo.lock

Lines changed: 20 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,3 @@ whirlpool = { path = "whirlpool" }
3737
# https://github.com/RustCrypto/utils/pull/1187
3838
# https://github.com/RustCrypto/utils/pull/1207
3939
blobby = { git = "https://github.com/RustCrypto/utils" }
40-
# https://github.com/RustCrypto/traits/pull/1916
41-
# https://github.com/RustCrypto/traits/pull/1953
42-
# https://github.com/RustCrypto/traits/pull/1958
43-
digest = { git = "https://github.com/RustCrypto/traits" }
44-
# https://github.com/RustCrypto/utils/pull/1200
45-
block-buffer = { git = "https://github.com/RustCrypto/utils" }

ascon-hash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ keywords = ["hash", "ascon"]
1616
categories = ["cryptography", "no-std"]
1717

1818
[dependencies]
19-
digest = "0.11.0-rc.0"
20-
ascon = { version = "0.4", default-features = false }
19+
digest = "0.11.0-rc.1"
20+
ascon = { version = "0.5.0-rc.0", default-features = false }
2121

2222
[dev-dependencies]
2323
spectral = { version = "0.6", default-features = false }

belt-hash/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "belt-hash"
3-
version = "0.2.0-rc.0"
3+
version = "0.2.0-rc.1"
44
description = "BelT hash function (STB 34.101.31-2020)"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -13,11 +13,11 @@ keywords = ["belt", "stb", "hash", "digest"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
digest = "0.11.0-rc.0"
16+
digest = "0.11.0-rc.1"
1717
belt-block = { version = "0.1.1", default-features = false }
1818

1919
[dev-dependencies]
20-
digest = { version = "0.11.0-rc.0", features = ["dev"] }
20+
digest = { version = "0.11.0-rc.1", features = ["dev"] }
2121
hex-literal = "1"
2222
base16ct = { version = "0.3", features = ["alloc"] }
2323

blake2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "blake2"
3-
version = "0.11.0-rc.0"
3+
version = "0.11.0-rc.2"
44
description = "BLAKE2 hash functions"
55
authors = ["RustCrypto Developers"]
66
license = "MIT OR Apache-2.0"
@@ -13,10 +13,10 @@ keywords = ["blake2", "hash", "digest"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
digest = { version = "0.11.0-rc.0", features = ["mac"] }
16+
digest = { version = "0.11.0-rc.1", features = ["mac"] }
1717

1818
[dev-dependencies]
19-
digest = { version = "0.11.0-rc.0", features = ["dev"] }
19+
digest = { version = "0.11.0-rc.1", features = ["dev"] }
2020
hex-literal = "1"
2121
base16ct = { version = "0.3", features = ["alloc"] }
2222

fsb/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ keywords = ["fsb", "hash", "digest"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
digest = "0.11.0-rc.0"
17-
whirlpool = { version = "0.11.0-rc.0", default-features = false }
16+
digest = "0.11.0-rc.1"
17+
whirlpool = { version = "0.11.0-rc.1", default-features = false }
1818

1919
[dev-dependencies]
20-
digest = { version = "0.11.0-rc.0", features = ["dev"] }
20+
digest = { version = "0.11.0-rc.1", features = ["dev"] }
2121
hex-literal = "1"
2222
base16ct = { version = "0.3", features = ["alloc"] }
2323

gost94/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["gost94", "gost", "hash", "digest"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
digest = "0.11.0-rc.0"
16+
digest = "0.11.0-rc.1"
1717

1818
[dev-dependencies]
19-
digest = { version = "0.11.0-rc.0", features = ["dev"] }
19+
digest = { version = "0.11.0-rc.1", features = ["dev"] }
2020
hex-literal = "1"
2121
base16ct = { version = "0.3", features = ["alloc"] }
2222

0 commit comments

Comments
 (0)