[INFO] fetching crate xecs 0.5.10...
[INFO] documenting xecs-0.5.10 against da3f5c31e5535b3dc210067de660a45784ae1e9c for pr-162169
[INFO] extracting crate xecs 0.5.10 into /workspace/builds/worker-0-tc2/source
[INFO] started tweaking crates.io crate xecs 0.5.10
[INFO] finished tweaking crates.io crate xecs 0.5.10
[INFO] tweaked toml for crates.io crate xecs 0.5.10 written to /workspace/builds/worker-0-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate xecs 0.5.10 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] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]      Locking 26 packages to highest compatible versions
[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-0-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-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] 64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912
[INFO] running `Command { std: "docker" "start" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912", 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" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912" "/opt/rustwide/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912", 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" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912" "/opt/rustwide/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "doc" "--frozen" "--no-deps" "--document-private-items" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]     Checking smallvec v1.16.0
[INFO] [stderr]     Checking futures-executor v0.3.34
[INFO] [stderr]     Checking futures v0.3.34
[INFO] [stderr]     Checking parking_lot_core v0.9.12
[INFO] [stderr]     Checking parking_lot v0.12.5
[INFO] [stderr]  Documenting xecs v0.5.10 (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/group/full_owning/query.rs:22:40
[INFO] [stdout]    |
[INFO] [stdout] 22 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[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] 22 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 22 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/full_owning/query.rs:155:40
[INFO] [stdout]     |
[INFO] [stdout] 155 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 155 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 155 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/full_owning/query.rs:289:40
[INFO] [stdout]     |
[INFO] [stdout] 289 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 289 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 289 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/full_owning/query.rs:422:40
[INFO] [stdout]     |
[INFO] [stdout] 422 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 422 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 422 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/group/partial_owning/query.rs:22:40
[INFO] [stdout]    |
[INFO] [stdout] 22 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]    |                                        ^                                         ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 22 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 22 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/partial_owning/query.rs:163:40
[INFO] [stdout]     |
[INFO] [stdout] 163 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 163 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 163 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/partial_owning/query.rs:306:40
[INFO] [stdout]     |
[INFO] [stdout] 306 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 306 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 306 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/partial_owning/query.rs:447:40
[INFO] [stdout]     |
[INFO] [stdout] 447 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 447 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 447 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/group/non_owning/query.rs:22:40
[INFO] [stdout]    |
[INFO] [stdout] 22 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]    |                                        ^                                         ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 22 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 22 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/non_owning/query.rs:187:40
[INFO] [stdout]     |
[INFO] [stdout] 187 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 187 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 187 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/non_owning/query.rs:352:40
[INFO] [stdout]     |
[INFO] [stdout] 352 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 352 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 352 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/group/non_owning/query.rs:518:40
[INFO] [stdout]     |
[INFO] [stdout] 518 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 518 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 518 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]  --> src/query/with.rs:7:40
[INFO] [stdout]   |
[INFO] [stdout] 7 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]   |                                        ^                                         ^
[INFO] [stdout]   |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]   |
[INFO] [stdout] 7 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 7 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/query/with.rs:65:40
[INFO] [stdout]    |
[INFO] [stdout] 65 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]    |                                        ^                                         ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 65 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 65 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/query/with.rs:141:40
[INFO] [stdout]     |
[INFO] [stdout] 141 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 141 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 141 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/query/with.rs:231:40
[INFO] [stdout]     |
[INFO] [stdout] 231 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 231 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 231 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/query/without.rs:12:40
[INFO] [stdout]    |
[INFO] [stdout] 12 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]    |                                        ^                                         ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 12 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 12 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/query/without.rs:67:40
[INFO] [stdout]    |
[INFO] [stdout] 67 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]    |                                        ^                                         ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 67 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 67 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]   --> src/query/mod.rs:72:40
[INFO] [stdout]    |
[INFO] [stdout] 72 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)>;
[INFO] [stdout]    |                                        ^                                         ^
[INFO] [stdout]    |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]    |
[INFO] [stdout] 72 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)>;
[INFO] [stdout] 72 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a>;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/query/mod.rs:107:40
[INFO] [stdout]     |
[INFO] [stdout] 107 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 107 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 107 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unnecessary parentheses around type
[INFO] [stdout]    --> src/query/mod.rs:206:40
[INFO] [stdout]     |
[INFO] [stdout] 206 |     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout]     |                                        ^                                         ^
[INFO] [stdout]     |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout]     |
[INFO] [stdout] 206 -     fn query(world : &'a World) -> Box<(dyn QueryIterator<Item = Self::Item> + 'a)> {
[INFO] [stdout] 206 +     fn query(world : &'a World) -> Box<dyn QueryIterator<Item = Self::Item> + 'a> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/lib.rs:66:25
[INFO] [stdout]    |
[INFO] [stdout] 66 | //! Because [Component](crate::component::Component) is just ```T : Send + Sync```.
[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] 66 - //! Because [Component](crate::component::Component) is just ```T : Send + Sync```.
[INFO] [stdout] 66 + //! Because [Component] is just ```T : Send + Sync```.
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/lib.rs:67:13
[INFO] [stdout]    |
[INFO] [stdout] 67 | //! [World](crate::world::World) can use [RwLock](std::sync::RwLock) to 
[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] 67 - //! [World](crate::world::World) can use [RwLock](std::sync::RwLock) to 
[INFO] [stdout] 67 + //! [World] can use [RwLock](std::sync::RwLock) to 
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/lib.rs:68:69
[INFO] [stdout]    |
[INFO] [stdout] 68 | //! ensure the borrow check relations of all components.And [World](crate::world::World) can also
[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] 68 - //! ensure the borrow check relations of all components.And [World](crate::world::World) can also
[INFO] [stdout] 68 + //! ensure the borrow check relations of all components.And [World] can also
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/lib.rs:73:56
[INFO] [stdout]    |
[INFO] [stdout] 73 | //! System is a [Stream](futures::Stream) with [World](crate::world::World) 
[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] 73 - //! System is a [Stream](futures::Stream) with [World](crate::world::World) 
[INFO] [stdout] 73 + //! System is a [Stream](futures::Stream) with [World] 
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/lib.rs:75:14
[INFO] [stdout]    |
[INFO] [stdout] 75 | //! in [std](std), XECS use [futures](futures)::[Stream](futures::Stream) instead.
[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] 75 - //! in [std](std), XECS use [futures](futures)::[Stream](futures::Stream) instead.
[INFO] [stdout] 75 + //! in [std], XECS use [futures](futures)::[Stream](futures::Stream) instead.
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/lib.rs:75:39
[INFO] [stdout]    |
[INFO] [stdout] 75 | //! in [std](std), XECS use [futures](futures)::[Stream](futures::Stream) instead.
[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] 75 - //! in [std](std), XECS use [futures](futures)::[Stream](futures::Stream) instead.
[INFO] [stdout] 75 + //! in [std](std), XECS use [futures]::[Stream](futures::Stream) instead.
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/world.rs:75:29
[INFO] [stdout]    |
[INFO] [stdout] 75 |     ///  return an [Entity](crate::entity::Entity).
[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] 75 -     ///  return an [Entity](crate::entity::Entity).
[INFO] [stdout] 75 +     ///  return an [Entity].
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/world.rs:246:25
[INFO] [stdout]     |
[INFO] [stdout] 246 |     /// Get an [Entity](crate::entity::Entity) from an entity id
[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] 246 -     /// Get an [Entity](crate::entity::Entity) from an entity id
[INFO] [stdout] 246 +     /// Get an [Entity] from an entity id
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/world.rs:258:72
[INFO] [stdout]     |
[INFO] [stdout] 258 |     /// * Panic if ```group``` is the same as another group in [World](crate::world::World).
[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] 258 -     /// * Panic if ```group``` is the same as another group in [World](crate::world::World).
[INFO] [stdout] 258 +     /// * Panic if ```group``` is the same as another group in [World].
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/world.rs:306:58
[INFO] [stdout]     |
[INFO] [stdout] 306 |     /// Check if (group)[crate::group] exists in [World](crate::world::World).
[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] 306 -     /// Check if (group)[crate::group] exists in [World](crate::world::World).
[INFO] [stdout] 306 +     /// Check if (group)[crate::group] exists in [World].
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[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] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]   --> src/query/mod.rs:71:33
[INFO] [stdout]    |
[INFO] [stdout] 71 |     /// Get the [QueryIterator](crate::query::QueryIterator) from the world
[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] 71 -     /// Get the [QueryIterator](crate::query::QueryIterator) from the world
[INFO] [stdout] 71 +     /// Get the [QueryIterator] from the world
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/query/mod.rs:304:30
[INFO] [stdout]     |
[INFO] [stdout] 304 |     /// Get a new [Iterator](std::iter::Iterator) that calls
[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] 304 -     /// Get a new [Iterator](std::iter::Iterator) that calls
[INFO] [stdout] 304 +     /// Get a new [Iterator] that calls
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]   --> src/world.rs:13:1
[INFO] [stdout]    |
[INFO] [stdout] 13 | / pub struct World {
[INFO] [stdout] 14 | |     entity_manager: RwLock<EntityManager>,
[INFO] [stdout] 15 | |     // Box<SparseSet<EntityId,Component>>
[INFO] [stdout] 16 | |     components: HashMap<TypeId,RwLock<Box<dyn ComponentStorage>>>,
[INFO] [stdout] 17 | |     groups: Vec<RwLock<Group>>,
[INFO] [stdout] 18 | |     resources : HashMap<TypeId,RwLock<Box<dyn Resource>>>
[INFO] [stdout] 19 | | }
[INFO] [stdout]    | |_^
[INFO] [stdout]    |
[INFO] [stdout]    = help: the way this is parsed might change in the future
[INFO] [stdout]    = help: starts near `The resource type`
[INFO] [stdout]    = help: ends near `World is the core of XECS.It manages all components and entities`
[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/world.rs:13:1
[INFO] [stdout]    |
[INFO] [stdout] 13 | / pub struct World {
[INFO] [stdout] 14 | |     entity_manager: RwLock<EntityManager>,
[INFO] [stdout] 15 | |     // Box<SparseSet<EntityId,Component>>
[INFO] [stdout] 16 | |     components: HashMap<TypeId,RwLock<Box<dyn ComponentStorage>>>,
[INFO] [stdout] 17 | |     groups: Vec<RwLock<Group>>,
[INFO] [stdout] 18 | |     resources : HashMap<TypeId,RwLock<Box<dyn Resource>>>
[INFO] [stdout] 19 | | }
[INFO] [stdout]    | |_^
[INFO] [stdout]    |
[INFO] [stdout]    = help: the way this is parsed might change in the future
[INFO] [stdout]    = help: starts near `World is the core of XECS.It manages all components and entities`
[INFO] [stdout]    = help: ends near `World is the core of XECS.It manages all components and entities`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not document `xecs`
[INFO] running `Command { std: "docker" "inspect" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912", kill_on_drop: false }`
[INFO] [stdout] 64e6956c617f629aaaf99afe3710471c10703389fe309750ca7683ca29ed5912
