Skip to content

Commit

Permalink
scrypt v0.10.0 (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Mar 18, 2022
1 parent 96b1950 commit 48fad82
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions scrypt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.10.0 (2022-03-18)
### Changed
- Bump `password-hash` dependency to v0.4; MSRV 1.57 ([#283])
- Bump `pbkdf2` dependency to v0.11 ([#291])

[#283]: https://github.com/RustCrypto/password-hashes/pull/283
[#291]: https://github.com/RustCrypto/password-hashes/pull/291

## 0.9.0 (2022-02-17)
### Changed
- Bump `salsa20` dependency to v0.10, edition to 2021, and MSRV to 1.56 ([#273])
Expand Down
4 changes: 2 additions & 2 deletions scrypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrypt"
version = "0.10.0-pre"
version = "0.10.0"
description = "Scrypt password-based key derivation function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/RustCrypto/password-hashes/tree/master/scrypt"
keywords = ["crypto", "password", "hashing"]
categories = ["cryptography"]
edition = "2021"
rust-version = "1.56"
rust-version = "1.57"

[dependencies]
hmac = "0.12.1"
Expand Down
1 change: 0 additions & 1 deletion scrypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@

#[macro_use]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

Expand Down

0 comments on commit 48fad82

Please sign in to comment.