From 0901b5f42061c44c4f782f058fa280824de3be3a Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Tue, 24 May 2022 23:22:02 +0000 Subject: [PATCH] Add description of features and remove the dependencies section (#17) --- keccak/Cargo.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/keccak/Cargo.toml b/keccak/Cargo.toml index 9bed121..d25ec7b 100644 --- a/keccak/Cargo.toml +++ b/keccak/Cargo.toml @@ -13,8 +13,6 @@ keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"] categories = ["cryptography", "no-std"] readme = "README.md" -[dependencies] - [features] -no_unroll = [] -simd = [] +no_unroll = [] # Do no unroll loops for binary size reduction +simd = [] # Use core::simd (WARNING: requires Nigthly)