From fd066c61078d72cccac41bb63709007c72ea0286 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Fri, 21 Feb 2025 10:59:28 +0100 Subject: [PATCH] Enable the encrypt-at feature by-default --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1c1c3db..4d24261 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ keywords = ["cryptography", "encryption"] categories = ["cryptography"] [features] -default = ["aes", "chacha", "ikm-management"] +default = ["aes", "chacha", "ikm-management", "encrypt-at"] encryption = [] aes = ["encryption", "aes-gcm", "hkdf", "sha2"] chacha = ["encryption", "chacha20poly1305", "blake3"]