Skip to content

Commit

Permalink
version 1.0.0
Browse files Browse the repository at this point in the history
Changes since 0.5.11:
- The Hash types now implement From<[u8; OUTBYTES]> and From<&[u8; OUTBYTES]>.
- Upgraded arrayvec to 0.7.0, which uses const generics. This bumps the
  minimum supported Rust compiler version to 1.51.
  • Loading branch information
oconnor663 committed Nov 19, 2021
1 parent e678464 commit 4e35d8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions blake2_bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blake2_bin"
version = "0.5.11"
version = "1.0.0"
authors = ["Jack O'Connor"]
description = "a command line implementation of BLAKE2b/s/bp/sp and all their parameters"
license = "MIT"
Expand All @@ -14,8 +14,8 @@ name = "blake2"
path = "src/main.rs"

[dependencies]
blake2b_simd = { path = "../blake2b", version = "0.5" }
blake2s_simd = { path = "../blake2s", version = "0.5" }
blake2b_simd = { path = "../blake2b", version = "1" }
blake2s_simd = { path = "../blake2s", version = "1" }
failure = "0.1.5"
hex = "0.4.0"
memmap = "0.7.0"
Expand Down
2 changes: 1 addition & 1 deletion blake2b/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blake2b_simd"
version = "0.5.11"
version = "1.0.0"
authors = ["Jack O'Connor"]
description = "a pure Rust BLAKE2b implementation with dynamic SIMD"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion blake2s/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blake2s_simd"
version = "0.5.11"
version = "1.0.0"
authors = ["Jack O'Connor"]
description = "a pure Rust BLAKE2s implementation with dynamic SIMD"
license = "MIT"
Expand Down

0 comments on commit 4e35d8b

Please sign in to comment.