We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reproduction:
cargo add anyhow --features backtrace
#[relib_module::export] pub fn main() { let err = anyhow::anyhow!("err"); println!("[module] hello world\n{err:?}"); }
RUST_BACKTRACE=1
UPD: turns out the reason of this is std backtrace, more short repro:
#[relib_module::export] pub fn main() { let backtrace = std::backtrace::Backtrace::force_capture(); let _ = dbg!(backtrace); }
The text was updated successfully, but these errors were encountered:
doesn't happen on windows though
Sorry, something went wrong.
nevermind, there is kinda similar issue on windows (it was hidden because currently there is no "final unloading check" on windows)
Successfully merging a pull request may close this issue.
reproduction:
cargo add anyhow --features backtrace
RUST_BACKTRACE=1
UPD: turns out the reason of this is std backtrace, more short repro:
The text was updated successfully, but these errors were encountered: