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