Closed 00xc closed 10 months ago
There were a couple of errors when building with enable-stacktrace disabled (e.g. cargo b --no-default-features):
enable-stacktrace
cargo b --no-default-features
StackUnwinder
Debug
deny(missing_debug_implementations)
print_stack()
pub
There were a couple of errors when building with
enable-stacktrace
disabled (e.g.cargo b --no-default-features
):StackUnwinder
did not have aDebug
derive, which caused a warning due todeny(missing_debug_implementations)
.print_stack()
had different arguments depending on the feature, but it was called assuming one of those two versions from feature-independent code.pub
.