From e5d20b115117a1e45224b383c49e2d4aeab06449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Est=C3=A9vez?= Date: Mon, 1 Jun 2026 11:12:49 +0200 Subject: [PATCH] Bump openblas-src and add rustls feature flag openblas-src v0.10.16 requires either the rustls feature flag or the native-tls feature flag to be specified. lax was passing neither. This bumps the openblas-src version used by lax to v0.10.16 and passes the rustls feature flag. --- lax/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lax/Cargo.toml b/lax/Cargo.toml index 8e00e8f1..73c475d5 100644 --- a/lax/Cargo.toml +++ b/lax/Cargo.toml @@ -56,7 +56,7 @@ features = ["cblas"] default-features = false [dependencies.openblas-src] -version = "0.10.4" +version = "0.10.16" optional = true default-features = false -features = ["cblas"] +features = ["cblas", "rustls"]