@@ -52,6 +52,7 @@ members = [
5252 " crates/indexed_docs" ,
5353 " crates/inline_completion_button" ,
5454 " crates/install_cli" ,
55+ " crates/isahc_http_client" ,
5556 " crates/journal" ,
5657 " crates/language" ,
5758 " crates/language_model" ,
@@ -87,7 +88,6 @@ members = [
8788 " crates/remote" ,
8889 " crates/remote_server" ,
8990 " crates/repl" ,
90- " crates/reqwest_client" ,
9191 " crates/rich_text" ,
9292 " crates/rope" ,
9393 " crates/rpc" ,
@@ -122,7 +122,6 @@ members = [
122122 " crates/ui" ,
123123 " crates/ui_input" ,
124124 " crates/ui_macros" ,
125- " crates/ureq_client" ,
126125 " crates/util" ,
127126 " crates/vcs_menu" ,
128127 " crates/vim" ,
@@ -230,6 +229,7 @@ image_viewer = { path = "crates/image_viewer" }
230229indexed_docs = { path = " crates/indexed_docs" }
231230inline_completion_button = { path = " crates/inline_completion_button" }
232231install_cli = { path = " crates/install_cli" }
232+ isahc_http_client = { path = " crates/isahc_http_client" }
233233journal = { path = " crates/journal" }
234234language = { path = " crates/language" }
235235language_model = { path = " crates/language_model" }
@@ -266,7 +266,6 @@ release_channel = { path = "crates/release_channel" }
266266remote = { path = " crates/remote" }
267267remote_server = { path = " crates/remote_server" }
268268repl = { path = " crates/repl" }
269- reqwest_client = { path = " crates/reqwest_client" }
270269rich_text = { path = " crates/rich_text" }
271270rope = { path = " crates/rope" }
272271rpc = { path = " crates/rpc" }
@@ -301,7 +300,6 @@ title_bar = { path = "crates/title_bar" }
301300ui = { path = " crates/ui" }
302301ui_input = { path = " crates/ui_input" }
303302ui_macros = { path = " crates/ui_macros" }
304- ureq_client = { path = " crates/ureq_client" }
305303util = { path = " crates/util" }
306304vcs_menu = { path = " crates/vcs_menu" }
307305vim = { path = " crates/vim" }
@@ -329,7 +327,7 @@ async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "8
329327async-recursion = " 1.0.0"
330328async-tar = " 0.5.0"
331329async-trait = " 0.1"
332- async-tungstenite = " 0.28 "
330+ async-tungstenite = " 0.23 "
333331async-watch = " 0.3.1"
334332async_zip = { version = " 0.0.17" , features = [" deflate" , " deflate64" ] }
335333base64 = " 0.22"
@@ -369,6 +367,10 @@ ignore = "0.4.22"
369367image = " 0.25.1"
370368indexmap = { version = " 1.6.2" , features = [" serde" ] }
371369indoc = " 2"
370+ # We explicitly disable http2 support in isahc.
371+ isahc = { version = " 1.7.2" , default-features = false , features = [
372+ " text-decoding" ,
373+ ] }
372374itertools = " 0.13.0"
373375jsonwebtoken = " 9.3"
374376libc = " 0.2"
@@ -393,14 +395,13 @@ pulldown-cmark = { version = "0.12.0", default-features = false }
393395rand = " 0.8.5"
394396regex = " 1.5"
395397repair_json = " 0.1.0"
396- reqwest = { git = " https://github.com/zed-industries/reqwest.git" , rev = " fd110f6998da16bbca97b6dddda9be7827c50e29" }
397398rsa = " 0.9.6"
398399runtimelib = { version = " 0.15" , default-features = false , features = [
399400 " async-dispatcher-runtime" ,
400401] }
401402rustc-demangle = " 0.1.23"
402403rust-embed = { version = " 8.4" , features = [" include-exclude" ] }
403- rustls = " 0.21.12 "
404+ rustls = " 0.20.3 "
404405rustls-native-certs = " 0.8.0"
405406schemars = { version = " 0.8" , features = [" impl_json_schema" ] }
406407semver = " 1.0"
0 commit comments