From 0ebf60f709455c26ae81ef1c5f0d6fec643813ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arma=C3=ABl=20Gu=C3=A9neau?= Date: Tue, 2 Jun 2026 15:24:58 +0200 Subject: [PATCH] k2v-client: re-export crates hyper_rustls and hyper_util --- src/k2v-client/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/k2v-client/lib.rs b/src/k2v-client/lib.rs index be8d8570..c4c2ef65 100644 --- a/src/k2v-client/lib.rs +++ b/src/k2v-client/lib.rs @@ -26,6 +26,10 @@ mod error; pub use error::Error; +// Re-export these crates: values from these are passed to K2vClient::new_with_client +pub use hyper_rustls; +pub use hyper_util; + pub type Body = FullBody; const DEFAULT_TIMEOUT: Duration = Duration::from_secs(5);