Skip to content

Commit

Permalink
digest+universal-hash: loosen subtle version requirement (#1260)
Browse files Browse the repository at this point in the history
Relaxes the version requirement from `=2.4` to `^2.4`, which allows
usage of the newly published `subtle` v2.5.0 release.
  • Loading branch information
tarcieri committed May 19, 2023
1 parent a9ef4f6 commit f037ffa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion digest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ crypto-common = { version = "0.1.3", path = "../crypto-common" }

# optional dependencies
block-buffer = { version = "0.10", optional = true }
subtle = { version = "=2.4", default-features = false, optional = true }
subtle = { version = "2.4", default-features = false, optional = true }
blobby = { version = "0.3", optional = true }
const-oid = { version = "0.9", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
crypto-common = { version = "0.1.6", path = "../crypto-common" }
subtle = { version = "=2.4", default-features = false }
subtle = { version = "2.4", default-features = false }

[features]
std = ["crypto-common/std"]
Expand Down

0 comments on commit f037ffa

Please sign in to comment.