[INFO] fetching crate inf-wasmparser 0.0.8...
[INFO] documenting inf-wasmparser-0.0.8 against da3f5c31e5535b3dc210067de660a45784ae1e9c for pr-162169
[INFO] extracting crate inf-wasmparser 0.0.8 into /workspace/builds/worker-1-tc2/source
[INFO] started tweaking crates.io crate inf-wasmparser 0.0.8
[INFO] removed 0 missing examples
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate inf-wasmparser 0.0.8
[INFO] tweaked toml for crates.io crate inf-wasmparser 0.0.8 written to /workspace/builds/worker-1-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate inf-wasmparser 0.0.8 on toolchain da3f5c31e5535b3dc210067de660a45784ae1e9c
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate inf-wasmparser 0.0.8 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:8683fc1fc2eb5c9ac98e0d076ab094b2ffac7f99da555d2b6a2e27f346de2ec7" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a
[INFO] running `Command { std: "docker" "start" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a" "/opt/rustwide/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-w" "/opt/rustwide/workdir" "--user" "0:0" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a" "/opt/rustwide/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "doc" "--frozen" "--no-deps" "--document-private-items" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling serde v1.0.219
[INFO] [stderr]    Compiling semver v1.0.26
[INFO] [stderr]    Compiling inf-wasmparser v0.0.8 (/opt/rustwide/workdir)
[INFO] [stderr]     Checking hashbrown v0.15.2
[INFO] [stderr]     Checking indexmap v2.9.0
[INFO] [stderr]  Documenting inf-wasmparser v0.0.8 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/validator/component_types.rs:583:15
[INFO] [stdout]     |
[INFO] [stdout] 583 | impl Hash for (dyn ModuleImportKey + '_) {
[INFO] [stdout]     |               ^                        ^
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 583 - impl Hash for (dyn ModuleImportKey + '_) {
[INFO] [stdout] 583 + impl Hash for dyn ModuleImportKey + '_ {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/validator/component_types.rs:590:20
[INFO] [stdout]     |
[INFO] [stdout] 590 | impl PartialEq for (dyn ModuleImportKey + '_) {
[INFO] [stdout]     |                    ^                        ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 590 - impl PartialEq for (dyn ModuleImportKey + '_) {
[INFO] [stdout] 590 + impl PartialEq for dyn ModuleImportKey + '_ {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/validator/component_types.rs:596:13
[INFO] [stdout]     |
[INFO] [stdout] 596 | impl Eq for (dyn ModuleImportKey + '_) {}
[INFO] [stdout]     |             ^                        ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 596 - impl Eq for (dyn ModuleImportKey + '_) {}
[INFO] [stdout] 596 + impl Eq for dyn ModuleImportKey + '_ {}
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/validator/component_types.rs:598:14
[INFO] [stdout]     |
[INFO] [stdout] 598 | impl Ord for (dyn ModuleImportKey + '_) {
[INFO] [stdout]     |              ^                        ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 598 - impl Ord for (dyn ModuleImportKey + '_) {
[INFO] [stdout] 598 + impl Ord for dyn ModuleImportKey + '_ {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/validator/component_types.rs:608:21
[INFO] [stdout]     |
[INFO] [stdout] 608 | impl PartialOrd for (dyn ModuleImportKey + '_) {
[INFO] [stdout]     |                     ^                        ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 608 - impl PartialOrd for (dyn ModuleImportKey + '_) {
[INFO] [stdout] 608 + impl PartialOrd for dyn ModuleImportKey + '_ {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unresolved link to `FuncValidator::visit`
[INFO] [stdout]    --> src/validator/func.rs:180:19
[INFO] [stdout]     |
[INFO] [stdout] 180 |     /// Same as [`FuncValidator::visit`] except that the returned type
[INFO] [stdout]     |                   ^^^^^^^^^^^^^^^^^^^^ the struct `FuncValidator` has no field or associated item named `visit`
[INFO] [stdout]     |
[INFO] [stdout]     = note: `#[warn(rustdoc::broken_intra_doc_links)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/validator.rs:97:63
[INFO] [stdout]    |
[INFO] [stdout] 97 | /// Allows you to save the `ValidatorId` of the [`Validator`][crate::Validator]
[INFO] [stdout]    |                                                  -----------  ^^^^^^^^^^^^^^^^ explicit target is redundant
[INFO] [stdout]    |                                                  |
[INFO] [stdout]    |                                                  because label contains path that resolves to same destination
[INFO] [stdout]    |
[INFO] [stdout]    = note: when a link's destination is not specified,
[INFO] [stdout]            the label is used to resolve intra-doc links
[INFO] [stdout]    = note: `#[warn(rustdoc::redundant_explicit_links)]` on by default
[INFO] [stdout] help: remove explicit link target
[INFO] [stdout]    |
[INFO] [stdout] 97 - /// Allows you to save the `ValidatorId` of the [`Validator`][crate::Validator]
[INFO] [stdout] 97 + /// Allows you to save the `ValidatorId` of the [`Validator`]
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/validator.rs:122:38
[INFO] [stdout]     |
[INFO] [stdout] 122 | /// `Validator`. As each [`Payload`](crate::Payload) is received from a
[INFO] [stdout]     |                           ---------  ^^^^^^^^^^^^^^ explicit target is redundant
[INFO] [stdout]     |                           |
[INFO] [stdout]     |                           because label contains path that resolves to same destination
[INFO] [stdout]     |
[INFO] [stdout]     = note: when a link's destination is not specified,
[INFO] [stdout]             the label is used to resolve intra-doc links
[INFO] [stdout] help: remove explicit link target
[INFO] [stdout]     |
[INFO] [stdout] 122 - /// `Validator`. As each [`Payload`](crate::Payload) is received from a
[INFO] [stdout] 122 + /// `Validator`. As each [`Payload`] is received from a
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]     --> src/lib.rs:1039:5
[INFO] [stdout]      |
[INFO] [stdout] 1039 | /// ```
[INFO] [stdout]      |     ^ starts here
[INFO] [stdout] ...
[INFO] [stdout] 1060 | /// ```
[INFO] [stdout]      |       - ends here
[INFO] [stdout]      |
[INFO] [stdout]      = help: the way this is parsed might change in the future
[INFO] [stdout]      = note: `#[deny(rustdoc::unportable_markdown)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]     --> src/lib.rs:1040:5
[INFO] [stdout]      |
[INFO] [stdout] 1040 |   /// fn is_mvp_operator(op: &inf_wasmparser::Operator) -> bool {
[INFO] [stdout]      |       ^ starts here
[INFO] [stdout] ...
[INFO] [stdout] 1059 |   /// }
[INFO] [stdout]      |  ______-
[INFO] [stdout] 1060 | | /// ```
[INFO] [stdout]      | |____- ends here
[INFO] [stdout]      |
[INFO] [stdout]      = help: the way this is parsed might change in the future
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]     --> src/lib.rs:1173:5
[INFO] [stdout]      |
[INFO] [stdout] 1173 | /// ```
[INFO] [stdout]      |     ^ starts here
[INFO] [stdout] ...
[INFO] [stdout] 1221 | /// ```
[INFO] [stdout]      |       - ends here
[INFO] [stdout]      |
[INFO] [stdout]      = help: the way this is parsed might change in the future
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]     --> src/lib.rs:1174:5
[INFO] [stdout]      |
[INFO] [stdout] 1174 |   /// macro_rules! visit_only_mvp {
[INFO] [stdout]      |       ^ starts here
[INFO] [stdout] ...
[INFO] [stdout] 1220 |   /// }
[INFO] [stdout]      |  ______-
[INFO] [stdout] 1221 | | /// ```
[INFO] [stdout]      | |____- ends here
[INFO] [stdout]      |
[INFO] [stdout]      = help: the way this is parsed might change in the future
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]     --> src/lib.rs:1243:5
[INFO] [stdout]      |
[INFO] [stdout] 1243 | /// ```
[INFO] [stdout]      |     ^ starts here
[INFO] [stdout] ...
[INFO] [stdout] 1278 | /// ```
[INFO] [stdout]      |       - ends here
[INFO] [stdout]      |
[INFO] [stdout]      = help: the way this is parsed might change in the future
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]     --> src/lib.rs:1244:5
[INFO] [stdout]      |
[INFO] [stdout] 1244 |   /// # macro_rules! define_visit_operator {
[INFO] [stdout]      |       ^ starts here
[INFO] [stdout] ...
[INFO] [stdout] 1277 |   /// }
[INFO] [stdout]      |  ______-
[INFO] [stdout] 1278 | | /// ```
[INFO] [stdout]      | |____- ends here
[INFO] [stdout]      |
[INFO] [stdout]      = help: the way this is parsed might change in the future
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not document `inf-wasmparser`
[INFO] running `Command { std: "docker" "inspect" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a", kill_on_drop: false }`
[INFO] [stdout] f55e4ec2fc7033fea4e9183263a8ff55593712da4f8c52927eb56ef5fa09ea8a
