From f037ffaa0b447acb74d86ec8d49d57f4f1ede221 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 4 Mar 2023 10:33:39 -0700 Subject: [PATCH] digest+universal-hash: loosen `subtle` version requirement (#1260) Relaxes the version requirement from `=2.4` to `^2.4`, which allows usage of the newly published `subtle` v2.5.0 release. --- digest/Cargo.toml | 2 +- universal-hash/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 943378c13..94cef0f0c 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -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 } diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index 74bbd115b..324f33b02 100644 --- a/universal-hash/Cargo.toml +++ b/universal-hash/Cargo.toml @@ -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"]