From 94c4e7660a6efbd0f99ee11f3d1f4f1c90de7081 Mon Sep 17 00:00:00 2001 From: bradyjoestar Date: Wed, 22 Mar 2023 10:52:34 +0800 Subject: [PATCH] wb: fix dependency error for blake2s_const --- src/plonk/blake2_const/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plonk/blake2_const/Cargo.toml b/src/plonk/blake2_const/Cargo.toml index 50e941cd6..3ebc51499 100644 --- a/src/plonk/blake2_const/Cargo.toml +++ b/src/plonk/blake2_const/Cargo.toml @@ -18,12 +18,12 @@ edition = "2018" # Note that this root crates never builds itself with no_std. The "std" feature # only controls whether blake2b_simd and blake2s_simd build with no_std. default = ["std"] -std = ["blake2b_simd/std", "blake2s_simd/std"] +std = ["blake2b_simd/std", "blake2s_const/std"] [dependencies] arrayvec = "0.5.0" blake2b_simd = { path = "./blake2b", default-features = false } -blake2s_simd = { path = "./blake2s", default-features = false } +blake2s_const = { path = "./blake2s", default-features = false } blake2-avx2-sneves = { path = "benches/blake2-avx2-sneves", optional = true } hex = "0.3.2" kangarootwelve = { path = "benches/kangarootwelve", optional = true }