From 1ac22b587b78d85b66e6a3e914fa2de1cd01595d Mon Sep 17 00:00:00 2001 From: keepsimple1 Date: Mon, 28 Mar 2022 09:48:53 -0700 Subject: [PATCH] add keyword and category (#15) --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d36eddf..cf2d11b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "libaes" -version = "0.6.1" +version = "0.6.2" authors = ["Han Xu "] edition = "2018" description = "AES cipher in safe Rust with no dependencies" license = "Apache-2.0 OR MIT" repository = "https://github.com/keepsimple1/libaes" documentation = "https://docs.rs/libaes" -keywords = ["crypto", "aes"] +keywords = ["crypto", "aes", "block-cipher"] +categories = ["cryptography"] readme = "README.md"