From 7b1e196481d4454099e44dcdb3fed22353853109 Mon Sep 17 00:00:00 2001 From: Joachim Vandersmissen Date: Sat, 22 Jan 2022 20:13:34 +0100 Subject: [PATCH] Fix missing no-std category for SM4 --- sm4/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sm4/Cargo.toml b/sm4/Cargo.toml index 97d32727..d8c08b1c 100644 --- a/sm4/Cargo.toml +++ b/sm4/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/RustCrypto/block-ciphers/tree/master/sm4" readme = "README.md" edition = "2018" keywords = ["crypto", "sm4", "block-cipher"] -categories = ["cryptography"] +categories = ["cryptography", "no-std"] [dependencies] cipher = "0.3"