From c1db69f88aa84cc1bfffbdec0c738325178455e5 Mon Sep 17 00:00:00 2001 From: Tasko Olevski <16360283+olevski@users.noreply.github.com> Date: Wed, 4 Mar 2026 14:01:00 +0100 Subject: [PATCH] fix: logging into Renku Withtout the rustls-tls feature for the openidconnect the login command fails --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 258aca8..ea44788 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,10 @@ iso8601-timestamp = { version = "0.2.17" } toml = { version = "0.8.19" } git2 = { version = "0.19.0", default-features = false, features = [ "vendored-libgit2", "https", "ssh" ]} url = { version = "2.5.1" } -openidconnect = { version = "3.5.0", default-features = false, features = [ "reqwest" ] } +openidconnect = { version = "3.5.0", default-features = false, features = [ + "reqwest", + "rustls-tls", +] } directories = { version = "5.0" } comrak = { version = "0.28.0", optional = true }