[INFO] updating cached repository https://github.com/savoiringfaire/short.rs [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 088861fbd52aa2fd01ea91a5a985e76230e60809 [INFO] checking savoiringfaire/short.rs against master#fdc0011561c6365c596dfd8fa1ef388162bc89c7 for pr-66504-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsavoiringfaire%2Fshort.rs" "/workspace/builds/worker-4/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-4/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/savoiringfaire/short.rs on toolchain fdc0011561c6365c596dfd8fa1ef388162bc89c7 [INFO] running `"/workspace/cargo-home/bin/cargo" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/savoiringfaire/short.rs [INFO] finished tweaking git repo https://github.com/savoiringfaire/short.rs [INFO] tweaked toml for git repo https://github.com/savoiringfaire/short.rs written to /workspace/builds/worker-4/source/Cargo.toml [INFO] crate git repo https://github.com/savoiringfaire/short.rs already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "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" "+fdc0011561c6365c596dfd8fa1ef388162bc89c7" "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] c980ded2c6876558d56544279f220e8b63369d05f3cf34f98ef23bfebe23b543 [INFO] running `"docker" "start" "-a" "c980ded2c6876558d56544279f220e8b63369d05f3cf34f98ef23bfebe23b543"` [INFO] [stderr] Compiling backtrace-sys v0.1.31 [INFO] [stderr] Compiling hyper v0.12.35 [INFO] [stderr] Checking combine v3.8.1 [INFO] [stderr] Compiling syn v1.0.5 [INFO] [stderr] Checking tokio-io v0.1.12 [INFO] [stderr] Checking hyper v0.10.16 [INFO] [stderr] Checking env_logger v0.6.2 [INFO] [stderr] Checking uuid v0.7.4 [INFO] [stderr] Checking crossbeam-epoch v0.7.2 [INFO] [stderr] Checking tokio-reactor v0.1.10 [INFO] [stderr] Checking buf-read-ext v0.3.0 [INFO] [stderr] Checking tokio-codec v0.1.1 [INFO] [stderr] Checking h2 v0.1.26 [INFO] [stderr] Checking pretty_env_logger v0.3.1 [INFO] [stderr] Checking crossbeam-deque v0.7.1 [INFO] [stderr] Checking tokio-tcp v0.1.3 [INFO] [stderr] Checking backtrace v0.3.38 [INFO] [stderr] Checking tokio-uds v0.2.5 [INFO] [stderr] Checking error-chain v0.12.1 [INFO] [stderr] Checking tokio-threadpool v0.1.16 [INFO] [stderr] Compiling pest_generator v2.1.1 [INFO] [stderr] Checking tokio v0.1.22 [INFO] [stderr] Compiling serde_derive v1.0.101 [INFO] [stderr] Compiling pest_derive v2.1.0 [INFO] [stderr] Checking tera v0.11.20 [INFO] [stderr] Checking textnonce v0.6.5 [INFO] [stderr] Checking redis v0.12.0 [INFO] [stderr] Checking mime_multipart v0.5.2 [INFO] [stderr] Checking formdata v0.12.3 [INFO] [stderr] Checking shortner v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unnecessary parentheses around `if` condition [INFO] [stderr] --> src/main.rs:150:7 [INFO] [stderr] | [INFO] [stderr] 150 | if( [INFO] [stderr] | _______^ [INFO] [stderr] 151 | | !asset_canonicalized_path [INFO] [stderr] 152 | | .to_str() [INFO] [stderr] 153 | | .unwrap() [INFO] [stderr] 154 | | .starts_with(&absolute_begins_with_path) [INFO] [stderr] 155 | | ) { [INFO] [stderr] | |_____^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 150 | if [INFO] [stderr] 151 | !asset_canonicalized_path [INFO] [stderr] 152 | .to_str() [INFO] [stderr] 153 | .unwrap() [INFO] [stderr] 154 | .starts_with(&absolute_begins_with_path) [INFO] [stderr] 155 | { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around `if` condition [INFO] [stderr] --> src/main.rs:168:7 [INFO] [stderr] | [INFO] [stderr] 168 | if(!Path::new(asset_canonicalized_path.to_str().unwrap()).exists()) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around `if` condition [INFO] [stderr] --> src/main.rs:207:15 [INFO] [stderr] | [INFO] [stderr] 207 | if(req.uri().path().starts_with(STATIC_ASSET_PATH)) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around `if` condition [INFO] [stderr] --> src/main.rs:150:7 [INFO] [stderr] | [INFO] [stderr] 150 | if( [INFO] [stderr] | _______^ [INFO] [stderr] 151 | | !asset_canonicalized_path [INFO] [stderr] 152 | | .to_str() [INFO] [stderr] 153 | | .unwrap() [INFO] [stderr] 154 | | .starts_with(&absolute_begins_with_path) [INFO] [stderr] 155 | | ) { [INFO] [stderr] | |_____^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 150 | if [INFO] [stderr] 151 | !asset_canonicalized_path [INFO] [stderr] 152 | .to_str() [INFO] [stderr] 153 | .unwrap() [INFO] [stderr] 154 | .starts_with(&absolute_begins_with_path) [INFO] [stderr] 155 | { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around `if` condition [INFO] [stderr] --> src/main.rs:168:7 [INFO] [stderr] | [INFO] [stderr] 168 | if(!Path::new(asset_canonicalized_path.to_str().unwrap()).exists()) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around `if` condition [INFO] [stderr] --> src/main.rs:207:15 [INFO] [stderr] | [INFO] [stderr] 207 | if(req.uri().path().starts_with(STATIC_ASSET_PATH)) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1m 38s [INFO] running `"docker" "inspect" "c980ded2c6876558d56544279f220e8b63369d05f3cf34f98ef23bfebe23b543"` [INFO] running `"docker" "rm" "-f" "c980ded2c6876558d56544279f220e8b63369d05f3cf34f98ef23bfebe23b543"` [INFO] [stdout] c980ded2c6876558d56544279f220e8b63369d05f3cf34f98ef23bfebe23b543