File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
gix-transport/src/client/blocking_io Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pub(crate) mod function {
44 #[ cfg( feature = "http-client-curl" ) ]
55 use crate :: client:: blocking_io:: http:: curl:: Curl ;
66 #[ cfg( feature = "http-client-reqwest" ) ]
7- use crate :: client:: blocking_io:: http:: reqwest:: Remote ;
7+ use crate :: client:: blocking_io:: http:: reqwest:: Remote as Reqwest ;
88 use crate :: client:: { blocking_io:: Transport , non_io_types:: connect:: Error } ;
99
1010 /// A general purpose connector connecting to a repository identified by the given `url`.
@@ -67,7 +67,7 @@ pub(crate) mod function {
6767 ) ,
6868 #[ cfg( all( feature = "http-client-reqwest" , not( feature = "http-client-curl" ) ) ) ]
6969 gix_url:: Scheme :: Https | gix_url:: Scheme :: Http => Box :: new ( crate :: client:: blocking_io:: http:: connect :: <
70- Remote ,
70+ Reqwest ,
7171 > (
7272 url, options. version , options. trace
7373 ) ) ,
You can’t perform that action at this time.
0 commit comments