Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin zeroize to v1.3 and subtle to v2.4 #190

Merged
merged 2 commits into from
Jul 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 37 additions & 42 deletions Cargo.lock

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

6 changes: 6 additions & 0 deletions argon2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.2.2 (2021-07-20)
### Changed
- Pin `zeroize` dependency to v1.3 ([#190])

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

## 0.2.1 (2021-05-28)
### Changed
- `Params` always available; no longer feature-gated on `password-hash` ([#182])
Expand Down
4 changes: 2 additions & 2 deletions argon2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "argon2"
version = "0.2.2" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the Argon2 password hashing function with support
for the Argon2d, Argon2i, and Argon2id algorithmic variants
"""
version = "0.2.1"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/argon2"
Expand All @@ -18,7 +18,7 @@ readme = "README.md"
blake2 = { version = "0.9", default-features = false }
password-hash = { version = "0.2", optional = true }
rayon = { version = "1", optional = true }
zeroize = { version = "1", optional = true }
zeroize = { version = "=1.3", optional = true }

[dev-dependencies]
hex-literal = "0.3"
Expand Down
5 changes: 3 additions & 2 deletions argon2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@
#![cfg_attr(not(feature = "parallel"), forbid(unsafe_code))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg"
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/argon2/0.2.2"
)]
#![warn(rust_2018_idioms, missing_docs)]

Expand Down
6 changes: 6 additions & 0 deletions bcrypt-pbkdf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.6.2 (2021-07-20)
### Changed
- Pin `zeroize` dependency to v1.3 ([#190])

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

## 0.6.1 (2021-05-04)
### Changed
- Bump `blowfish` dependency to v0.8 ([#171])
Expand Down
4 changes: 2 additions & 2 deletions bcrypt-pbkdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bcrypt-pbkdf"
version = "0.6.2" # Also update html_root_url in lib.rs when bumping this
description = "bcrypt-pbkdf password-based key derivation function"
version = "0.6.1"
authors = ["RustCrypto Developers"]
repository = "https://github.com/RustCrypto/password-hashes/tree/master/bcrypt-pbkdf"
keywords = ["crypto", "password", "hashing"]
Expand All @@ -15,7 +15,7 @@ blowfish = { version = "0.8", features = ["bcrypt"] }
crypto-mac = "0.11"
pbkdf2 = { version = "0.8", default-features = false, path = "../pbkdf2" }
sha2 = { version = "0.9", default-features = false }
zeroize = { version = "1", default-features = false }
zeroize = { version = "=1.3", default-features = false }

[features]
default = ["std"]
Expand Down
6 changes: 5 additions & 1 deletion bcrypt-pbkdf/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
//! [OpenSSH]: https://flak.tedunangst.com/post/new-openssh-key-format-and-bcrypt-pbkdf

#![no_std]
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/bcrypt-pbkdf/0.6.2"
)]

extern crate alloc;
#[cfg(feature = "std")]
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbkdf2"
version = "0.8.0"
version = "0.8.0" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
Expand Down
6 changes: 5 additions & 1 deletion pbkdf2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@

#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/pbkdf2/0.8.0"
)]

#[cfg(feature = "std")]
extern crate std;
Expand Down
2 changes: 1 addition & 1 deletion scrypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrypt"
version = "0.7.0"
version = "0.7.0" # Also update html_root_url in lib.rs when bumping this
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Scrypt password-based key derivation function"
Expand Down
6 changes: 5 additions & 1 deletion scrypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@

#![no_std]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/media/8f1a9894/logo.svg",
html_root_url = "https://docs.rs/scrypt/0.7.0"
)]

#[macro_use]
extern crate alloc;
Expand Down
6 changes: 6 additions & 0 deletions sha-crypt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.2.1 (2021-07-20)
### Changed
- Pin `subtle` dependency to v2.4 ([#190])

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

## 0.2.0 (2021-01-29)
### Changed
- Bump `rand` dependency to v0.8 ([#86])
Expand Down
4 changes: 2 additions & 2 deletions sha-crypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha-crypt"
version = "0.2.0"
version = "0.2.1" # Also update html_root_url in lib.rs when bumping this
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
Expand All @@ -17,7 +17,7 @@ readme = "README.md"
[dependencies]
sha2 = { version = "0.9", default-features = false }
rand = { version = "0.8", optional = true }
subtle = { version = "2", optional = true, default-features = false }
subtle = { version = "=2.4", optional = true, default-features = false }

[features]
default = ["simple"]
Expand Down
Loading