From 563bd9f24e6f865fbf2e89808663ad241ac53fd0 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 27 Apr 2026 21:17:30 +0200 Subject: [PATCH] Add "ring" feature to tokio-rustls Seems it was enabled by iroh and this is not the case with iroh 0.98. Better enable the feature explicitly since we directly use it. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 82cff5d44..41c32dbd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -101,7 +101,7 @@ tagger = "4.3.4" textwrap = "0.16.2" thiserror = { workspace = true } tokio-io-timeout = "1.2.1" -tokio-rustls = { version = "0.26.2", default-features = false } +tokio-rustls = { version = "0.26.2", default-features = false, features = ["ring"] } tokio-stream = { version = "0.1.17", features = ["fs"] } astral-tokio-tar = { version = "0.6", default-features = false } tokio-util = { workspace = true }