Skip to content

Commit

Permalink
sha-crypt: relax subtle dependency (#390)
Browse files Browse the repository at this point in the history
It was pinned to preserve MSRV, but that creates huge compatibility
headaches for downstream users
  • Loading branch information
tarcieri authored Mar 5, 2023
1 parent fbfcda5 commit 8069cb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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.

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.4.0"
version = "0.5.0-pre"
description = """
Pure Rust implementation of the SHA-crypt password hash based on SHA-512
as implemented by the POSIX crypt C library
Expand All @@ -20,7 +20,7 @@ sha2 = { version = "0.10", default-features = false }

# optional dependencies
rand = { version = "0.8", optional = true }
subtle = { version = ">=2, <2.5", optional = true, default-features = false }
subtle = { version = "2", optional = true, default-features = false }
base64ct = "1.5.3"

[features]
Expand Down

0 comments on commit 8069cb7

Please sign in to comment.