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
it turns out that versions of anyhow < 1.0.39 don't have that problem, because there the return type is &Backtrace. Newer versions wrap this with Option<>.
In a strange constellation I'm running into the following error:
looking at the code:
http-types/src/error.rs
Lines 111 to 118 in 6f38b3e
I see no change in over 2 years. Also on the
anyhow
crate (self.error
is of typeanyhow::Error
) I cannot see any change on thebacktrace()
method.However a fix like this would solve the problem:
Things I've used:
http-types
:http-types
version2.12.0
anyhow
version1.0.65
cargo --version && rustc --version cargo 1.63.0-nightly (38472bc19 2022-05-31) rustc 1.63.0-nightly (5435ed691 2022-06-07)
The text was updated successfully, but these errors were encountered: