We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663b41e commit 0105b35Copy full SHA for 0105b35
gix-transport/src/client/blocking_io/connect.rs
@@ -3,7 +3,7 @@ pub use crate::client::non_io_types::connect::{Error, Options};
3
pub(crate) mod function {
4
#[cfg(feature = "http-client-curl")]
5
use crate::client::blocking_io::http::curl::Curl;
6
- #[cfg(feature = "http-client-reqwest")]
+ #[cfg(all(feature = "http-client-reqwest", not(feature = "http-client-curl")))]
7
use crate::client::blocking_io::http::reqwest::Remote as Reqwest;
8
use crate::client::{blocking_io::Transport, non_io_types::connect::Error};
9
0 commit comments