chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

22
vendor/tiny-keccak/build.rs vendored Normal file
View File

@@ -0,0 +1,22 @@
#[cfg(not(any(
feature = "keccak",
feature = "shake",
feature = "sha3",
feature = "cshake",
feature = "kmac",
feature = "tuple_hash",
feature = "parallel_hash",
feature = "k12",
feature = "fips202",
feature = "sp800"
)))]
compile_error!(
"You need to specify at least one hash function you intend to use. \
Available options:\n\
keccak, shake, sha3, cshake, kmac, tuple_hash, parallel_hash, k12, fips202, sp800\n\
e.g.\n\
tiny-keccak = { version = \"2.0.0\", features = [\"sha3\"] }"
);
fn main() {
}