[INFO] crate carboxyl 0.2.1 is already in cache
[INFO] checking carboxyl-0.2.1 against master#b61e69433951e31f7bd746e22f516a48ad41623b for prs-64470-and-65389
[INFO] extracting crate carboxyl 0.2.1 into /workspace/builds/worker-13/source
[INFO] validating manifest of crates.io crate carboxyl 0.2.1 on toolchain b61e69433951e31f7bd746e22f516a48ad41623b
[INFO] running `"/workspace/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate carboxyl 0.2.1
[INFO] finished tweaking crates.io crate carboxyl 0.2.1
[INFO] tweaked toml for crates.io crate carboxyl 0.2.1 written to /workspace/builds/worker-13/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr] Blocking waiting for file lock on package cache
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-13/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-13/source:/opt/rustwide/workdir:ro,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" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+b61e69433951e31f7bd746e22f516a48ad41623b" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] dd119e343ad4a9dc17c3acc7412cbbdeecdd7b5a5d91fc3e6b7fa1146211c972
[INFO] running `"docker" "start" "-a" "dd119e343ad4a9dc17c3acc7412cbbdeecdd7b5a5d91fc3e6b7fa1146211c972"`
[INFO] [stderr] Blocking waiting for file lock on package cache
[INFO] [stderr] Compiling unicode-width v0.1.6
[INFO] [stderr] Compiling remove_dir_all v0.5.2
[INFO] [stderr] Checking lazy_static v0.1.16
[INFO] [stderr] Checking pulldown-cmark v0.0.3
[INFO] [stderr] Compiling rand v0.4.6
[INFO] [stderr] Checking tempdir v0.3.7
[INFO] [stderr] Checking quickcheck v0.2.27
[INFO] [stderr] Compiling getopts v0.2.21
[INFO] [stderr] Checking skeptic v0.6.1
[INFO] [stderr] Compiling carboxyl v0.2.1 (/opt/rustwide/workdir)
[INFO] [stderr] warning: unused doc comment
[INFO] [stderr] --> src/transaction.rs:11:1
[INFO] [stderr] |
[INFO] [stderr] 11 | / /// The global transaction lock.
[INFO] [stderr] 12 | | ///
[INFO] [stderr] 13 | | /// TODO: revert this to use a static mutex, as soon as that is stabilized in
[INFO] [stderr] 14 | | /// the standard library.
[INFO] [stderr] | |_________________________^
[INFO] [stderr] 15 | / lazy_static! {
[INFO] [stderr] 16 | | static ref TRANSACTION_MUTEX: Mutex<()> = Mutex::new(());
[INFO] [stderr] 17 | | }
[INFO] [stderr] | |_- rustdoc does not generate documentation for macro expansions
[INFO] [stderr] |
[INFO] [stderr] = note: `#[warn(unused_doc_comments)]` on by default
[INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
[INFO] [stderr]
[INFO] [stderr] warning: unused doc comment
[INFO] [stderr] --> src/transaction.rs:19:1
[INFO] [stderr] |
[INFO] [stderr] 19 | /// Registry for callbacks to be executed at the end of a transaction.
[INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 20 | / thread_local!(
[INFO] [stderr] 21 | | static CURRENT_TRANSACTION: RefCell