[INFO] crate aurelius 0.6.3 is already in cache [INFO] checking aurelius-0.6.3 against master#0cbcb17d3306d6e22eafc2c05ce885db97d0189c for pr-68746 [INFO] extracting crate aurelius 0.6.3 into /workspace/builds/worker-4/source [INFO] validating manifest of crates.io crate aurelius 0.6.3 on toolchain 0cbcb17d3306d6e22eafc2c05ce885db97d0189c [INFO] running `"/workspace/cargo-home/bin/cargo" "+0cbcb17d3306d6e22eafc2c05ce885db97d0189c" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate aurelius 0.6.3 [INFO] finished tweaking crates.io crate aurelius 0.6.3 [INFO] tweaked toml for crates.io crate aurelius 0.6.3 written to /workspace/builds/worker-4/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+0cbcb17d3306d6e22eafc2c05ce885db97d0189c" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+0cbcb17d3306d6e22eafc2c05ce885db97d0189c" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/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" "+0cbcb17d3306d6e22eafc2c05ce885db97d0189c" "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] 4ec22264ad314e691f7073a46cb6ceca93093d073f097076581541a25f0a4400 [INFO] running `"docker" "start" "-a" "4ec22264ad314e691f7073a46cb6ceca93093d073f097076581541a25f0a4400"` [INFO] [stderr] Compiling syn v1.0.14 [INFO] [stderr] Compiling ucd-trie v0.1.2 [INFO] [stderr] Checking modifier v0.1.0 [INFO] [stderr] Compiling maplit v1.0.2 [INFO] [stderr] Checking sequence_trie v0.3.6 [INFO] [stderr] Compiling pulldown-cmark v0.5.3 [INFO] [stderr] Checking try_from v0.3.2 [INFO] [stderr] Compiling error-chain v0.12.1 [INFO] [stderr] Checking unsafe-any v0.4.2 [INFO] [stderr] Checking pest v2.1.2 [INFO] [stderr] Compiling unicase v1.4.2 [INFO] [stderr] Checking typemap v0.3.3 [INFO] [stderr] Checking phf_shared v0.7.24 [INFO] [stderr] Checking cookie v0.12.0 [INFO] [stderr] Checking uuid v0.5.1 [INFO] [stderr] Checking uuid v0.7.4 [INFO] [stderr] Checking plugin v0.2.6 [INFO] [stderr] Checking phf v0.7.24 [INFO] [stderr] Checking websocket v0.22.4 [INFO] [stderr] Compiling phf_generator v0.7.24 [INFO] [stderr] Compiling phf_codegen v0.7.24 [INFO] [stderr] Compiling mime_guess v1.8.7 [INFO] [stderr] Checking tokio v0.1.22 [INFO] [stderr] Checking publicsuffix v1.5.4 [INFO] [stderr] Checking hyper v0.12.35 [INFO] [stderr] Compiling pest_meta v2.1.2 [INFO] [stderr] Checking iron v0.6.1 [INFO] [stderr] Checking mount v0.4.0 [INFO] [stderr] Checking iron-test v0.6.0 [INFO] [stderr] Checking staticfile v0.5.0 [INFO] [stderr] Checking hyper-tls v0.3.2 [INFO] [stderr] Compiling synstructure v0.12.3 [INFO] [stderr] Compiling pest_generator v2.1.1 [INFO] [stderr] Compiling serde_derive v1.0.104 [INFO] [stderr] Compiling failure_derive v0.1.6 [INFO] [stderr] Compiling pest_derive v2.1.0 [INFO] [stderr] Checking failure v0.1.6 [INFO] [stderr] Checking serde v1.0.104 [INFO] [stderr] Checking serde_json v1.0.45 [INFO] [stderr] Checking serde_urlencoded v0.5.5 [INFO] [stderr] Checking handlebars v1.1.0 [INFO] [stderr] Checking cookie_store v0.7.0 [INFO] [stderr] Checking reqwest v0.9.24 [INFO] [stderr] Checking handlebars-iron v0.27.0 [INFO] [stderr] Checking aurelius v0.6.3 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/http.rs:136:54 [INFO] [stderr] | [INFO] [stderr] 136 | fn create_handler(previewer: MarkdownPreview) -> Box { [INFO] [stderr] | ^^^^^^^ help: use `dyn`: `dyn Handler` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'iron::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/errors.rs:7:1 [INFO] [stderr] | [INFO] [stderr] 7 | / error_chain! { [INFO] [stderr] 8 | | foreign_links { [INFO] [stderr] 9 | | Io(io::Error) #[doc = "Error during IO."]; [INFO] [stderr] 10 | | UrlParse(url::ParseError) #[doc = "Error parsing a URL."]; [INFO] [stderr] 11 | | } [INFO] [stderr] 12 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'iron::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/errors.rs:7:1 [INFO] [stderr] | [INFO] [stderr] 7 | / error_chain! { [INFO] [stderr] 8 | | foreign_links { [INFO] [stderr] 9 | | Io(io::Error) #[doc = "Error during IO."]; [INFO] [stderr] 10 | | UrlParse(url::ParseError) #[doc = "Error parsing a URL."]; [INFO] [stderr] 11 | | } [INFO] [stderr] 12 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/http.rs:136:54 [INFO] [stderr] | [INFO] [stderr] 136 | fn create_handler(previewer: MarkdownPreview) -> Box { [INFO] [stderr] | ^^^^^^^ help: use `dyn`: `dyn Handler` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'iron::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/errors.rs:7:1 [INFO] [stderr] | [INFO] [stderr] 7 | / error_chain! { [INFO] [stderr] 8 | | foreign_links { [INFO] [stderr] 9 | | Io(io::Error) #[doc = "Error during IO."]; [INFO] [stderr] 10 | | UrlParse(url::ParseError) #[doc = "Error parsing a URL."]; [INFO] [stderr] 11 | | } [INFO] [stderr] 12 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'iron::Error::description': use the Display impl or to_string() [INFO] [stderr] --> src/errors.rs:7:1 [INFO] [stderr] | [INFO] [stderr] 7 | / error_chain! { [INFO] [stderr] 8 | | foreign_links { [INFO] [stderr] 9 | | Io(io::Error) #[doc = "Error during IO."]; [INFO] [stderr] 10 | | UrlParse(url::ParseError) #[doc = "Error parsing a URL."]; [INFO] [stderr] 11 | | } [INFO] [stderr] 12 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1m 19s [INFO] running `"docker" "inspect" "4ec22264ad314e691f7073a46cb6ceca93093d073f097076581541a25f0a4400"` [INFO] running `"docker" "rm" "-f" "4ec22264ad314e691f7073a46cb6ceca93093d073f097076581541a25f0a4400"` [INFO] [stdout] 4ec22264ad314e691f7073a46cb6ceca93093d073f097076581541a25f0a4400