From e71b24328f1cd787f64036d8208a4470ae58e200 Mon Sep 17 00:00:00 2001 From: Kornel Date: Fri, 13 Feb 2026 04:22:07 +0000 Subject: [PATCH] Re-add fips-precompiled for v4 compat --- Cargo.toml | 8 ++++---- boring/Cargo.toml | 4 ++++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 63dcc1b2..f3b16d88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "5.0.1" +version = "5.0.2" rust-version = "1.85" repository = "https://github.com/cloudflare/boring" edition = "2021" @@ -20,9 +20,9 @@ tag-prefix = "" publish = false [workspace.dependencies] -boring-sys = { version = "5.0.1", path = "./boring-sys", default-features = false } -boring = { version = "5.0.1", path = "./boring", default-features = false } -tokio-boring = { version = "5.0.1", path = "./tokio-boring", default-features = false } +boring-sys = { version = "5.0.2", path = "./boring-sys", default-features = false } +boring = { version = "5.0.2", path = "./boring", default-features = false } +tokio-boring = { version = "5.0.2", path = "./tokio-boring", default-features = false } bindgen = { version = "0.72.0", default-features = false, features = ["runtime"] } bitflags = "2.9" diff --git a/boring/Cargo.toml b/boring/Cargo.toml index 71fe3230..b39f7aad 100644 --- a/boring/Cargo.toml +++ b/boring/Cargo.toml @@ -49,6 +49,10 @@ rpk = ["credential", "boring-sys/rpk"] # `BORING_BSSL{,_FIPS}_ASSUME_PATCHED`. underscore-wildcards = ["boring-sys/underscore-wildcards"] +# **DO NOT USE** This will be removed without warning in future releases. +# Alias for 'fips', only for backwards compatibility. +fips-precompiled = ["fips"] + [dependencies] bitflags = { workspace = true } foreign-types = { workspace = true }