@@ -52,6 +52,7 @@ members = [
52
52
" crates/indexed_docs" ,
53
53
" crates/inline_completion_button" ,
54
54
" crates/install_cli" ,
55
+ " crates/isahc_http_client" ,
55
56
" crates/journal" ,
56
57
" crates/language" ,
57
58
" crates/language_model" ,
@@ -87,7 +88,6 @@ members = [
87
88
" crates/remote" ,
88
89
" crates/remote_server" ,
89
90
" crates/repl" ,
90
- " crates/reqwest_client" ,
91
91
" crates/rich_text" ,
92
92
" crates/rope" ,
93
93
" crates/rpc" ,
@@ -122,7 +122,6 @@ members = [
122
122
" crates/ui" ,
123
123
" crates/ui_input" ,
124
124
" crates/ui_macros" ,
125
- " crates/ureq_client" ,
126
125
" crates/util" ,
127
126
" crates/vcs_menu" ,
128
127
" crates/vim" ,
@@ -230,6 +229,7 @@ image_viewer = { path = "crates/image_viewer" }
230
229
indexed_docs = { path = " crates/indexed_docs" }
231
230
inline_completion_button = { path = " crates/inline_completion_button" }
232
231
install_cli = { path = " crates/install_cli" }
232
+ isahc_http_client = { path = " crates/isahc_http_client" }
233
233
journal = { path = " crates/journal" }
234
234
language = { path = " crates/language" }
235
235
language_model = { path = " crates/language_model" }
@@ -266,7 +266,6 @@ release_channel = { path = "crates/release_channel" }
266
266
remote = { path = " crates/remote" }
267
267
remote_server = { path = " crates/remote_server" }
268
268
repl = { path = " crates/repl" }
269
- reqwest_client = { path = " crates/reqwest_client" }
270
269
rich_text = { path = " crates/rich_text" }
271
270
rope = { path = " crates/rope" }
272
271
rpc = { path = " crates/rpc" }
@@ -301,7 +300,6 @@ title_bar = { path = "crates/title_bar" }
301
300
ui = { path = " crates/ui" }
302
301
ui_input = { path = " crates/ui_input" }
303
302
ui_macros = { path = " crates/ui_macros" }
304
- ureq_client = { path = " crates/ureq_client" }
305
303
util = { path = " crates/util" }
306
304
vcs_menu = { path = " crates/vcs_menu" }
307
305
vim = { path = " crates/vim" }
@@ -329,7 +327,7 @@ async-pipe = { git = "https://github.com/zed-industries/async-pipe-rs", rev = "8
329
327
async-recursion = " 1.0.0"
330
328
async-tar = " 0.5.0"
331
329
async-trait = " 0.1"
332
- async-tungstenite = " 0.28 "
330
+ async-tungstenite = " 0.23 "
333
331
async-watch = " 0.3.1"
334
332
async_zip = { version = " 0.0.17" , features = [" deflate" , " deflate64" ] }
335
333
base64 = " 0.22"
@@ -369,6 +367,10 @@ ignore = "0.4.22"
369
367
image = " 0.25.1"
370
368
indexmap = { version = " 1.6.2" , features = [" serde" ] }
371
369
indoc = " 2"
370
+ # We explicitly disable http2 support in isahc.
371
+ isahc = { version = " 1.7.2" , default-features = false , features = [
372
+ " text-decoding" ,
373
+ ] }
372
374
itertools = " 0.13.0"
373
375
jsonwebtoken = " 9.3"
374
376
libc = " 0.2"
@@ -393,14 +395,13 @@ pulldown-cmark = { version = "0.12.0", default-features = false }
393
395
rand = " 0.8.5"
394
396
regex = " 1.5"
395
397
repair_json = " 0.1.0"
396
- reqwest = { git = " https://github.com/zed-industries/reqwest.git" , rev = " fd110f6998da16bbca97b6dddda9be7827c50e29" }
397
398
rsa = " 0.9.6"
398
399
runtimelib = { version = " 0.15" , default-features = false , features = [
399
400
" async-dispatcher-runtime" ,
400
401
] }
401
402
rustc-demangle = " 0.1.23"
402
403
rust-embed = { version = " 8.4" , features = [" include-exclude" ] }
403
- rustls = " 0.21.12 "
404
+ rustls = " 0.20.3 "
404
405
rustls-native-certs = " 0.8.0"
405
406
schemars = { version = " 0.8" , features = [" impl_json_schema" ] }
406
407
semver = " 1.0"
0 commit comments