[INFO] fetching crate carboxyl 0.2.1...
[INFO] checking carboxyl-0.2.1 against try#ea663bba38739867a4b75ac820991b4f5d093c3b for pr-62262-1
[INFO] extracting crate carboxyl 0.2.1 into /workspace/builds/worker-0/source
[INFO] validating manifest of crates.io crate carboxyl 0.2.1 on toolchain ea663bba38739867a4b75ac820991b4f5d093c3b
[INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "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-0/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stdout] 6b1db9abaf197544d9d8dfe6355b36b9f01b3f1d2d00aae0c854ed7cb860e8b5
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `"docker" "start" "-a" "6b1db9abaf197544d9d8dfe6355b36b9f01b3f1d2d00aae0c854ed7cb860e8b5"`
[INFO] [stderr] Compiling unicode-width v0.1.6
[INFO] [stderr] Checking pulldown-cmark v0.0.3
[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