Skip to content

Commit 0105b35

Browse files
committed
fix: silence warning for unused client impl
1 parent 663b41e commit 0105b35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gix-transport/src/client/blocking_io/connect.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pub use crate::client::non_io_types::connect::{Error, Options};
33
pub(crate) mod function {
44
#[cfg(feature = "http-client-curl")]
55
use crate::client::blocking_io::http::curl::Curl;
6-
#[cfg(feature = "http-client-reqwest")]
6+
#[cfg(all(feature = "http-client-reqwest", not(feature = "http-client-curl")))]
77
use crate::client::blocking_io::http::reqwest::Remote as Reqwest;
88
use crate::client::{blocking_io::Transport, non_io_types::connect::Error};
99

0 commit comments

Comments
 (0)