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
std::*
Specifically ubuntu-20.04, nightly, macos-latest, nightly and x86_64-fortanix-unknown-sgx. For example:
ubuntu-20.04, nightly
macos-latest, nightly
x86_64-fortanix-unknown-sgx
Run cargo build --manifest-path crates/as-if-std/Cargo.toml --no-default-features Compiling as-if-std v0.1.0 (/Users/runner/work/backtrace-rs/backtrace-rs/crates/as-if-std) error: unused import: `std::*` --> crates/as-if-std/src/lib.rs:14:13 | 14 | pub use std::*; | ^^^^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]` error: could not compile `as-if-std` (lib) due to previous error Error: Process completed with exit code 101.
Apparently the #[allow(unused_imports)] on the re-export is no longer enough to satisfy it.
#[allow(unused_imports)]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Specifically
ubuntu-20.04, nightly
,macos-latest, nightly
andx86_64-fortanix-unknown-sgx
. For example:Apparently the
#[allow(unused_imports)]
on the re-export is no longer enough to satisfy it.The text was updated successfully, but these errors were encountered: