From: Joshua Simmons Date: Mon, 27 May 2024 17:53:46 +0000 (+0200) Subject: blake3-smol: Add features to make cargo happy X-Git-Url: https://git.nega.tv//gitweb.cgi?a=commitdiff_plain;h=9f6244f126a68e6216dab9aae3b6cc979e0bba0a;p=josh%2Fnarcissus blake3-smol: Add features to make cargo happy --- 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"