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
rustdoc lib.rs lib.rs:1:1: 2:2 error: unused attribute, #[deny(unused_attribute)] on by default lib.rs:1 #![crate_id = "compress#0.1"] lib.rs:2 #![crate_type = "rlib"] error: aborting due to previous error task '<unnamed>' failed at 'Box<Any>', /mnt/code/other/rust/src/libsyntax/diagnostic.rs:127 task '<main>' failed at 'called `Result::unwrap()` on an `Err` value: Box core::any::Any:Send', /mnt/code/other/rust/src/libcore/result.rs:543 Makefile:45: recipe for target 'docs' failed make: *** [docs] Error 101
Related to #14373. When a crate has "deny(warnings)" rustdoc fails to process "crate_id". Happened to rust-compress, logs and revision are here: https://travis-ci.org/alexcrichton/rust-compress/builds/26046844
The text was updated successfully, but these errors were encountered:
Removed deny_warnings (rust-lang/rust#14450)
d7c9764
I think that this has been resolved in the meantime with changes around crate_id and crate_name, I can no longer reproduce this.
crate_id
crate_name
Sorry, something went wrong.
No branches or pull requests
Related to #14373. When a crate has "deny(warnings)" rustdoc fails to process "crate_id". Happened to rust-compress, logs and revision are here:
https://travis-ci.org/alexcrichton/rust-compress/builds/26046844
The text was updated successfully, but these errors were encountered: