From 76d8984f8f7e6c3204313c63dd756365d8d86ab3 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Thu, 20 Mar 2025 02:38:27 +1100 Subject: [PATCH] Update ring to 0.17.14 to fix build compat (#7164) Cross builds were failing since: - https://github.com/sigp/lighthouse/pull/7086 This seems to have been due to a regression upstream in `ring` which is noted in the v0.17.14 release notes. I'm hoping that updating remedies it. > Compatibility with GNU binutils 2.29 (used on Amazon Linux 2), and probably even earlier versions, was restored. It is expected that ring 0.17.14 will build on all the systems that 0.17.12 would build on. https://github.com/briansmith/ring/blob/main/RELEASES.md#version-01714-2025-03-11 --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c77f38c142..2dbfdd235f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7457,9 +7457,9 @@ dependencies = [ [[package]] name = "ring" -version = "0.17.13" +version = "0.17.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if",