Uh oh!
There was an error while loading. Please reload this page.
Switch from std::error::Error to core::error::Error - #767
Merged
Conversation
tarcieriforce-pushed
the
use-core-error
branch
from
December 11, 2025 04:26
593febc to
9f34548CompareThe latter was being used in some places, but not consistently. Notably this gets rid of the `std` dependency on various test examples. Some crates now have fully vestigial `std` features, though this leaves removing them to a separate PR.
tarcieriforce-pushed
the
use-core-error
branch
from
December 11, 2025 04:29
9f34548 to
7e33d90CompareUh oh!
There was an error while loading. Please reload this page.
tarcieri added a commit
that referenced
this pull request
Dec 11, 2025
After #767 it is no longer used This is technically true of `password-hash` as well, but as a post-1.0 crate we can't remove the `std` feature there
tarcieri added a commit
that referenced
this pull request
Dec 11, 2025
tarcieri added a commit
that referenced
this pull request
Apr 22, 2026
tarcieri added a commit
that referenced
this pull request
Apr 22, 2026
## Added - Implement `PartialEq` for `scrypt::Params` (#490) - `Params::n` method (#544) - `parallel` feature using `rayon` (#733, #785) - `mcf` feature for Modular Crypt Format support (#781, #806) - SSE2/simd128 `RoMix` data layout optimization (#622) - Customizable `Params` for `Scrypt` type (#797) - Implement `kdf::{Kdf, Pbkdf}` for `Scrypt` (#823) ## Changed - Make methods of `scrypt::Params` into `const fn` (#508) - Bump edition to 2024; MSRV 1.85 (#563) - Split `Params::new` and `Params::new_with_output_len` (#602) - Use the `phc` crate for `PasswordHash` and related types (#761) - Switch from `std::error::Error` to `core::error::Error` (#767) - Rename `simple` feature to `phc` (#776) - Migrate from `subtle` to `ctutils` (#845) - Bump `password-hash` dependency to v0.6 (#848) - Bump `sha2` to v0.11 (#872) - Bump `salsa20` dependency to v0.11 (#875) - Bump `pbkdf2` dependency to v0.13 (#885) ## Removed - `Display` and `FromStr` impls for `Params` (#824) - Incorrect `N` upper-bound check from `Params::new` (#867)
Merged
tarcieri added a commit
that referenced
this pull request
Aug 27, 2026
## Added - Detect allocation failures in `hash_password_into` (#568) - `parallel` feature (#547) - `PasswordVerifier<str>` impl (#779) - `kdf::{Kdf, Pbkdf}` impls (#823) ## Changed - Upgrade to Rust 2024 edition; MSRV 1.85 (#563) - Switch from `std::error::Error` to `core::error::Error` (#767) - Rename `simple` feature to `password-hash` (#776) - Bump `cpufeatures` to v0.3 (#847) - Bump `password-hash` to v0.6 (#848) - Bump `blake2` to v0.11 (#929) ## Removed - `std` feature (#768) ## Fixed - Check `p_cost < Params::MIN_P_COST` before `m_cost < p_cost * 8` (#745)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The latter was being used in some places, but not consistently.
Notably this gets rid of the
stddependency on various test examples.