Rust wrapper: avoid warning when neither blake2b nor blake2s is enabled

This commit is contained in:
Josh Holtrop
2025-12-29 14:31:57 -05:00
parent 0a834bed7a
commit e971cb6942
@@ -23,6 +23,8 @@ This module provides a Rust wrapper for the wolfCrypt library's BLAKE2
functionality.
*/
#![cfg(any(blake2b, blake2s))]
use crate::sys;
use std::mem::MaybeUninit;