From 8d8737831034f9f4ecb4f624f59534d1e7aa04aa Mon Sep 17 00:00:00 2001 From: Luke Seelenbinder Date: Thu, 1 Feb 2024 20:53:44 +0100 Subject: [PATCH] Re-export s3 and reqwest crates. --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 498e509..b4d71a8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,9 +8,15 @@ pub use header::{Compression, Header, TileType}; #[cfg(any(feature = "s3-async-rustls", feature = "s3-async-native"))] pub use backend::S3Backend; +#[cfg(feature = "http-async")] +pub use s3; + #[cfg(feature = "http-async")] pub use backend::HttpBackend; +#[cfg(feature = "http-async")] +pub use reqwest; + #[cfg(feature = "mmap-async-tokio")] pub use backend::MmapBackend;