From e570a4db011db862743ad1a7312443868e3dc498 Mon Sep 17 00:00:00 2001 From: wayne warren Date: Wed, 11 Oct 2023 10:27:47 -0600 Subject: [PATCH] local crypto-common breaks digest --- Cargo.lock | 3 +-- digest/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 226889202..7fe84a564 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -304,7 +304,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6faaa83e7700e0832cbbf84854d4c356270526907d9b14fab927fc7a9b5befb8" dependencies = [ "generic-array", - "rand_core 0.6.4", "typenum", ] @@ -385,7 +384,7 @@ dependencies = [ "blobby", "block-buffer 0.11.0-pre", "const-oid 0.9.5", - "crypto-common 0.2.0-pre (registry+https://github.com/rust-lang/crates.io-index)", + "crypto-common 0.2.0-pre", "subtle", ] diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 9e936809c..fe45b7681 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["digest", "crypto", "hash"] categories = ["cryptography", "no-std"] [dependencies] -crypto-common = "0.2.0-pre" +crypto-common = { version = "0.2.0-pre", path = "../crypto-common" } # optional dependencies block-buffer = { version = "0.11.0-pre", optional = true }