From 87d88bb47d0c556f6b62b3b1cb92f754cf495a9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Fri, 21 Feb 2025 10:12:00 +0100 Subject: [PATCH 1/3] Update the CI --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e9e310..850a29b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,8 @@ jobs: - 1.81.0 - 1.82.0 - 1.83.0 - - 1.84.0 + - 1.84.1 + - 1.85.0 - stable - beta - nightly From 655570a8be4a8535e1bf706705cd1e27b4780f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Fri, 21 Feb 2025 10:59:08 +0100 Subject: [PATCH 2/3] Add the sponsor button --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..7a05804 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: [breard-r] 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 3/3] 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"]