From 629600d80989079b70db89b3386f70ef367de2b7 Mon Sep 17 00:00:00 2001 From: Luke Seelenbinder Date: Thu, 1 Feb 2024 20:59:32 +0100 Subject: [PATCH] Fix #[cfg()] typo. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index b4d71a8..31bebe9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,7 +8,7 @@ pub use header::{Compression, Header, TileType}; #[cfg(any(feature = "s3-async-rustls", feature = "s3-async-native"))] pub use backend::S3Backend; -#[cfg(feature = "http-async")] +#[cfg(any(feature = "s3-async-rustls", feature = "s3-async-native"))] pub use s3; #[cfg(feature = "http-async")]