From c7cfa7698c9cb9a78b8ea5f1039d096d994ecd60 Mon Sep 17 00:00:00 2001 From: Philip Rinn Date: Tue, 23 May 2023 14:31:28 +0200 Subject: [PATCH] Migrate to sha1 --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a14976..cb7a806 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1752,10 +1752,10 @@ dependencies = [ ] [[package]] -name = "sha-1" -version = "0.10.1" +name = "sha1" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" dependencies = [ "cfg-if", "cpufeatures", @@ -1830,7 +1830,7 @@ dependencies = [ "rand_core", "rcgen", "serde_json", - "sha-1", + "sha1", "sha2", "time 0.3.17", "ureq", diff --git a/Cargo.toml b/Cargo.toml index abed517..4672a10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ lpc55 = "0.2" pcsc = "2.4" # reqwest = { version = "0.11", features = ["json"] } serde_json = "1.0.64" -sha-1 = "0.10" +sha1 = "0.10" sha2 = "0.10" time = "0.3" x509-parser = { version = "0.14.0", features = ["verify"] }