[INFO] fetching crate rust-ephemeris 0.1.0-beta...
[INFO] documenting rust-ephemeris-0.1.0-beta against da3f5c31e5535b3dc210067de660a45784ae1e9c for pr-162169
[INFO] extracting crate rust-ephemeris 0.1.0-beta into /workspace/builds/worker-0-tc2/source
[INFO] started tweaking crates.io crate rust-ephemeris 0.1.0-beta
[INFO] finished tweaking crates.io crate rust-ephemeris 0.1.0-beta
[INFO] tweaked toml for crates.io crate rust-ephemeris 0.1.0-beta written to /workspace/builds/worker-0-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate rust-ephemeris 0.1.0-beta 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]     Blocking waiting for file lock on package cache
[INFO] [stderr]      Locking 1 package to highest compatible version
[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] c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d
[INFO] running `Command { std: "docker" "start" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d", 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" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d" "/opt/rustwide/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d", 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" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d" "/opt/rustwide/cargo-home/bin/cargo" "+da3f5c31e5535b3dc210067de660a45784ae1e9c" "doc" "--frozen" "--no-deps" "--document-private-items" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]  Documenting rust-ephemeris v0.1.0-beta (/opt/rustwide/workdir)
[INFO] [stdout] warning: unnecessary parentheses around closure body
[INFO] [stdout]   --> src/internal/math_utils.rs:44:46
[INFO] [stdout]    |
[INFO] [stdout] 44 |         let parts: Vec<&str> = deg.split(|c| (c == '°' || c == '\'' || c == '\"')).collect();
[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] 44 -         let parts: Vec<&str> = deg.split(|c| (c == '°' || c == '\'' || c == '\"')).collect();
[INFO] [stdout] 44 +         let parts: Vec<&str> = deg.split(|c| c == '°' || c == '\'' || c == '\"').collect();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/lunnar.rs:120:37
[INFO] [stdout]     |
[INFO] [stdout] 120 |     /// 参考精确气计算函数计算[`qi_accurate2`](crate::lunnar::qi_accurate2)
[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] 120 -     /// 参考精确气计算函数计算[`qi_accurate2`](crate::lunnar::qi_accurate2)
[INFO] [stdout] 120 +     /// 参考精确气计算函数计算[`qi_accurate2`]
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/lunnar.rs:340:27
[INFO] [stdout]     |
[INFO] [stdout] 340 |     /// 用法参见[`SolorDate`](crate::lunnar::SolorDate)
[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] 340 -     /// 用法参见[`SolorDate`](crate::lunnar::SolorDate)
[INFO] [stdout] 340 +     /// 用法参见[`SolorDate`]
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/lunnar.rs:391:27
[INFO] [stdout]     |
[INFO] [stdout] 391 |     /// 用法参见[`SolorDate`](crate::lunnar::SolorDate)
[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] 391 -     /// 用法参见[`SolorDate`](crate::lunnar::SolorDate)
[INFO] [stdout] 391 +     /// 用法参见[`SolorDate`]
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/lunnar.rs:463:26
[INFO] [stdout]     |
[INFO] [stdout] 463 | /// 用法参考[`qi_accurate2`](crate::lunnar::qi_accurate2)
[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] 463 - /// 用法参考[`qi_accurate2`](crate::lunnar::qi_accurate2)
[INFO] [stdout] 463 + /// 用法参考[`qi_accurate2`]
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: redundant explicit link target
[INFO] [stdout]    --> src/lunnar.rs:488:25
[INFO] [stdout]     |
[INFO] [stdout] 488 |     /// 用法参见[LunarDate](crate::lunnar::LunarDate)
[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] 488 -     /// 用法参见[LunarDate](crate::lunnar::LunarDate)
[INFO] [stdout] 488 +     /// 用法参见[LunarDate]
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: markdown element starts on one item and ends on another
[INFO] [stdout]    --> src/internal/lunnar.rs:212:1
[INFO] [stdout]     |
[INFO] [stdout] 212 | / pub struct JulianDate {
[INFO] [stdout] 213 | |     pub jd: f64, // 儒略日
[INFO] [stdout] 214 | | }
[INFO] [stdout]     | |_^
[INFO] [stdout]     |
[INFO] [stdout]     = help: the way this is parsed might change in the future
[INFO] [stdout]     = help: starts near ` 暴露AstroyDate等结构调用`
[INFO] [stdout]     = help: ends near ` 儒略日`
[INFO] [stdout]     = note: `#[deny(rustdoc::unportable_markdown)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not document `rust-ephemeris`
[INFO] running `Command { std: "docker" "inspect" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d", kill_on_drop: false }`
[INFO] [stdout] c3705cb652d6e82721c32033f1b2da9937e27abbfd29abce3f0f9fcf345afe6d
