[INFO] fetching crate xecs 0.5.10...
[INFO] documenting xecs-0.5.10 against 824336ad4127ce295849937a24c08a4aeff6ada7 for pr-162169
[INFO] extracting crate xecs 0.5.10 into /workspace/builds/worker-0-tc1/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-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate xecs 0.5.10 on toolchain 824336ad4127ce295849937a24c08a4aeff6ada7
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+824336ad4127ce295849937a24c08a4aeff6ada7" "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" "+824336ad4127ce295849937a24c08a4aeff6ada7" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]     Blocking waiting for file lock on package cache
[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" "+824336ad4127ce295849937a24c08a4aeff6ada7" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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] 900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a
[INFO] running `Command { std: "docker" "start" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a", 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" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a" "/opt/rustwide/cargo-home/bin/cargo" "+824336ad4127ce295849937a24c08a4aeff6ada7" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a", 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" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a" "/opt/rustwide/cargo-home/bin/cargo" "+824336ad4127ce295849937a24c08a4aeff6ada7" "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] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.04s
[INFO] [stderr]    Generated /opt/rustwide/target/doc/xecs/index.html
[INFO] running `Command { std: "docker" "inspect" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a", 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" "-e" "RUSTC_BOOTSTRAP=1" "-e" "DOCS_RS=1" "-w" "/opt/rustwide/workdir" "--user" "0:0" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a" "/opt/rustwide/cargo-home/bin/cargo" "+824336ad4127ce295849937a24c08a4aeff6ada7" "rustdoc" "--lib" "-Zrustdoc-map" "--config" "build.rustdocflags=[\"--cfg\", \"docsrs\", \"-Z\", \"unstable-options\", \"--document-private-items\"]" "--frozen" "--message-format=json", kill_on_drop: false }`
[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]   |
[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] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.57s
[INFO] [stderr]    Generated /opt/rustwide/target/doc/xecs/index.html
[INFO] running `Command { std: "docker" "inspect" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a", kill_on_drop: false }`
[INFO] [stdout] 900189d3eb3b6a31dfc233227d7d4342e427c2f5bd794a4091ed42c3cadf8e8a
