From f1c94c14e250cf7543a8f9bae273613ef5f7ae55 Mon Sep 17 00:00:00 2001 From: John Rinehart Date: Fri, 1 Dec 2023 11:44:59 -0800 Subject: [PATCH] chore: remove unnecessary feature flag --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 33969145..3089cf58 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -486,21 +486,18 @@ impl OctocrabBuilder } /// Set the connect timeout. - #[cfg(feature = "timeout")] pub fn set_connect_timeout(mut self, timeout: Option) -> Self { self.config.connect_timeout = timeout; self } /// Set the read timeout. - #[cfg(feature = "timeout")] pub fn set_read_timeout(mut self, timeout: Option) -> Self { self.config.read_timeout = timeout; self } /// Set the write timeout. - #[cfg(feature = "timeout")] pub fn set_write_timeout(mut self, timeout: Option) -> Self { self.config.write_timeout = timeout; self