You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use reqwest for our HTTP client which relies on hyper. reqwest::Error does not contain a lot of useful information but we can downcast it to underlying hyper error to get that info. Unfortunately reqwest does not reexport any types from hyper so we need explicit dependency on it. I guess it doesn't matter much because it's already used by reqwest anyway.
I came across this question while going through the deno codebase.
deno/cli/deno_error.rs
Lines 219 to 229 in 76e44dd
Why is this dependency on hyper required?
The text was updated successfully, but these errors were encountered: