diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f2f04bd..aa39b43 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -100,4 +100,4 @@ jobs: - name: Check all feature combinations works properly # * `--feature-powerset` - run for the feature powerset of the package # * `--no-dev-deps` - build without dev-dependencies to avoid https://github.com/rust-lang/cargo/issues/4866 - run: cargo hack check --feature-powerset --no-dev-deps --skip=default-client,wasm-client --skip=h1-client,h1-client-rustls + run: cargo hack check --feature-powerset --no-dev-deps --skip=default-client,wasm-client diff --git a/src/config.rs b/src/config.rs index 403a0a2..8bbf5c4 100644 --- a/src/config.rs +++ b/src/config.rs @@ -203,7 +203,7 @@ impl Config { } /// Set TLS Configuration (Native TLS) #[cfg_attr(feature = "docs", doc(cfg(feature = "h1-client")))] - #[cfg(feature = "h1-client")] + #[cfg(all(feature = "h1-client", not(feature = "h1-client-rustls")))] pub fn set_tls_config( mut self, tls_config: Option>,