From 9f6244f126a68e6216dab9aae3b6cc979e0bba0a Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Mon, 27 May 2024 19:53:46 +0200 Subject: [PATCH] blake3-smol: Add features to make cargo happy --- external/blake3-smol/Cargo.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/external/blake3-smol/Cargo.toml b/external/blake3-smol/Cargo.toml index acde81f..3f5c5ec 100644 --- a/external/blake3-smol/Cargo.toml +++ b/external/blake3-smol/Cargo.toml @@ -5,6 +5,13 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[features] +std = [] +no_avx512 = [] +no_avx2 = [] +no_sse41 = [] +no_sse2 = [] + [dependencies] constant_time_eq = "0.3.0" -- 2.49.0