From bdb96b4ac1648ab55d20dea0ecf6433e9f29f5b0 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 7 Jun 2023 08:21:22 -0400 Subject: [PATCH] hs: Fix a feature name in arti-client In arti-client it's called "onion-client", not "hs-client". --- crates/arti-client/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/arti-client/src/client.rs b/crates/arti-client/src/client.rs index 528ac29ba..624ac3240 100644 --- a/crates/arti-client/src/client.rs +++ b/crates/arti-client/src/client.rs @@ -182,7 +182,7 @@ pub struct StreamPrefs { /// Whether to return the stream optimistically. optimistic_stream: bool, /// Whether to try to make connections to onion services. - #[cfg(feature = "hs-client")] + #[cfg(feature = "onion-client")] #[allow(dead_code)] connect_to_onion_services: bool, // TODO hs: this should default to "true". }