cloudflare/boring

Publishing a boring-sys 2.1.1 patch release

AlessandroBono opened this issue · 1 comments

As mentioned in #129, boring-sys crate v2.1.0 does not compile with llvm-16. This has been fixed with v3.0.0.

However, Quiche still uses boring 2.0.0. This prevents us to update to boring-sys >= 3.0.0.

Could you please publish a 2.1.1 patch release? The changes should be minimal:

From ca33099471f63a51e182a822c999f4e402bf4087 Mon Sep 17 00:00:00 2001
From: Alessandro Bono <alessandro.bono369@gmail.com>
Date: Thu, 10 Aug 2023 09:29:53 +0000
Subject: [PATCH] Update bindgen to 0.62

---
 boring-sys/Cargo.toml | 2 +-
 boring-sys/build.rs   | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/boring-sys/Cargo.toml b/boring-sys/Cargo.toml
index 02a756fe..81e5252a 100644
--- a/boring-sys/Cargo.toml
+++ b/boring-sys/Cargo.toml
@@ -27,7 +27,7 @@ include = [
 ]
 
 [build-dependencies]
-bindgen = { version = "0.60", default-features = false, features = ["runtime"] }
+bindgen = { version = "0.62", default-features = false, features = ["runtime"] }
 cmake = "0.1"
 
 [features]
diff --git a/boring-sys/build.rs b/boring-sys/build.rs
index 9bccf945..f6629474 100644
--- a/boring-sys/build.rs
+++ b/boring-sys/build.rs
@@ -384,7 +384,10 @@ fn main() {
         .derive_debug(true)
         .derive_default(true)
         .derive_eq(true)
-        .default_enum_style(bindgen::EnumVariation::NewType { is_bitfield: false })
+        .default_enum_style(bindgen::EnumVariation::NewType {
+            is_bitfield: false,
+            is_global: false,
+        })
         .default_macro_constant_type(bindgen::MacroTypeVariation::Signed)
         .generate_comments(true)
         .fit_macro_constants(false)
-- 
2.41.0

nox commented

quiche uses boring 3 now.