From 01b83aed21236a89534ff2cc23623533ee1f21db Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 19 Mar 2023 21:18:43 +0100 Subject: [PATCH] Move ascon-hash to exclude --- Cargo.lock | 28 ---------------------------- Cargo.toml | 6 ++++-- 2 files changed, 4 insertions(+), 30 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 30e049ce..f17ffe15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,22 +2,6 @@ # It is not intended for manual editing. version = 3 -[[package]] -name = "ascon" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fe9a0cff241855e9166670d259192aacf1e9a81b865dc9905afbbab31a9d2c1" - -[[package]] -name = "ascon-hash" -version = "0.1.2-pre" -dependencies = [ - "ascon", - "digest", - "hex", - "spectral", -] - [[package]] name = "blake2" version = "0.10.6" @@ -126,12 +110,6 @@ dependencies = [ "hex-literal", ] -[[package]] -name = "hex" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - [[package]] name = "hex-literal" version = "0.2.2" @@ -287,12 +265,6 @@ dependencies = [ "hex-literal", ] -[[package]] -name = "spectral" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae3c15181f4b14e52eeaac3efaeec4d2764716ce9c86da0c934c3e318649c5ba" - [[package]] name = "streebog" version = "0.10.2" diff --git a/Cargo.toml b/Cargo.toml index bb25480b..7f544e28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,6 @@ # Do not uncomment it until MSRV is bumped to 1.51 or higher. # resolver = "2" members = [ - "ascon-hash", "blake2", "fsb", "gost94", @@ -22,7 +21,10 @@ members = [ "tiger", "whirlpool", ] -exclude = ["belt-hash"] +exclude = [ + "ascon-hash", + "belt-hash", +] [profile.dev] opt-level = 2