From 8d1405a015c1340157273c55386a8be509b72ab2 Mon Sep 17 00:00:00 2001 From: Kornel Date: Tue, 3 Feb 2026 01:16:10 +0000 Subject: [PATCH] Allow pq-experimental for v4 back-compat --- Cargo.toml | 8 ++++---- boring/Cargo.toml | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 230a2ccb9..5cf814453 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "5.0.0-alpha.2" +version = "5.0.0-alpha.3" repository = "https://github.com/cloudflare/boring" edition = "2021" @@ -19,9 +19,9 @@ tag-prefix = "" publish = false [workspace.dependencies] -boring-sys = { version = "5.0.0-alpha.2", path = "./boring-sys" } -boring = { version = "5.0.0-alpha.2", path = "./boring" } -tokio-boring = { version = "5.0.0-alpha.2", path = "./tokio-boring" } +boring-sys = { version = "5.0.0-alpha.3", path = "./boring-sys" } +boring = { version = "5.0.0-alpha.3", path = "./boring" } +tokio-boring = { version = "5.0.0-alpha.3", path = "./tokio-boring" } bindgen = { version = "0.72.0", default-features = false, features = ["runtime"] } bitflags = "2.9" diff --git a/boring/Cargo.toml b/boring/Cargo.toml index d76c92945..45cfd672d 100644 --- a/boring/Cargo.toml +++ b/boring/Cargo.toml @@ -25,6 +25,10 @@ fips = ["boring-sys/fips"] # **DO NOT USE** This will be removed without warning in future releases. legacy-compat-deprecated = [] +# **DO NOT USE** This will be removed without warning in future releases. +# PQ is always enabled. This feature is a no-op, only for backwards compatibility. +pq-experimental = [] + # Enables Raw public key API (https://datatracker.ietf.org/doc/html/rfc7250) # This feature is necessary in order to compile the bindings for the # default branch of boringSSL. Alternatively, a version of boringSSL that