From b97446a3c9924e26e538fcbab4e5076c6142c1bd Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Wed, 13 Dec 2023 14:18:05 +0100 Subject: [PATCH] Restore rpk feature in tokio-boring It serves no purpose as there is no additional API in tokio-boring when this feature is enabled, but there is a test gated by it and it can't be conditionnally enabled only when boring's feature is enabled. --- tokio-boring/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tokio-boring/Cargo.toml b/tokio-boring/Cargo.toml index 96e1f767..90c6f6d4 100644 --- a/tokio-boring/Cargo.toml +++ b/tokio-boring/Cargo.toml @@ -25,6 +25,9 @@ fips-link-precompiled = ["boring/fips-link-precompiled", "boring-sys/fips-link-p # Enables experimental post-quantum crypto (https://blog.cloudflare.com/post-quantum-for-all/) pq-experimental = ["boring/pq-experimental"] +# Enables Raw public key API (https://datatracker.ietf.org/doc/html/rfc7250) +rpk = ["boring/rpk"] + [dependencies] boring = { workspace = true } boring-sys = { workspace = true }