[INFO] fetching crate wards 0.1.10...
[INFO] testing wards-0.1.10 against 1.90.0 for beta-1.91-3
[INFO] extracting crate wards 0.1.10 into /workspace/builds/worker-4-tc1/source
[INFO] started tweaking crates.io crate wards 0.1.10
[INFO] finished tweaking crates.io crate wards 0.1.10
[INFO] tweaked toml for crates.io crate wards 0.1.10 written to /workspace/builds/worker-4-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate wards 0.1.10 on toolchain 1.90.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "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" "+1.90.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] [stderr]     Updating crates.io index
[INFO] [stderr]      Locking 33 packages to latest compatible versions
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 3a64dbf68e1b4a837632f0ecfb7698cfd19b0bc1dc52a9120bf8372c14694e39
[INFO] running `Command { std: "docker" "start" "-a" "3a64dbf68e1b4a837632f0ecfb7698cfd19b0bc1dc52a9120bf8372c14694e39", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "3a64dbf68e1b4a837632f0ecfb7698cfd19b0bc1dc52a9120bf8372c14694e39", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "3a64dbf68e1b4a837632f0ecfb7698cfd19b0bc1dc52a9120bf8372c14694e39", kill_on_drop: false }`
[INFO] [stdout] 3a64dbf68e1b4a837632f0ecfb7698cfd19b0bc1dc52a9120bf8372c14694e39
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] a4df5d7ae0aed97a65da9635ce247e66f1bea815d6e705b764f8b69542c7a2de
[INFO] running `Command { std: "docker" "start" "-a" "a4df5d7ae0aed97a65da9635ce247e66f1bea815d6e705b764f8b69542c7a2de", kill_on_drop: false }`
[INFO] [stderr]    Compiling chrono v0.4.42
[INFO] [stderr]    Compiling wards v0.1.10 (/opt/rustwide/workdir)
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/car.rs:69:22
[INFO] [stdout]    |
[INFO] [stdout] 69 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&str>, WardError>;
[INFO] [stdout]    |                      ^^              ^^                         ---- the same lifetime is elided here
[INFO] [stdout]    |                      |               |
[INFO] [stdout]    |                      |               the lifetime is named here
[INFO] [stdout]    |                      the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 69 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&'a str>, WardError>;
[INFO] [stdout]    |                                                                  ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/car.rs:110:22
[INFO] [stdout]     |
[INFO] [stdout] 110 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&str>, WardError> {
[INFO] [stdout]     |                      ^^              ^^                         ---- the same lifetime is elided here
[INFO] [stdout]     |                      |               |
[INFO] [stdout]     |                      |               the lifetime is named here
[INFO] [stdout]     |                      the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 110 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&'a str>, WardError> {
[INFO] [stdout]     |                                                                  ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 2.11s
[INFO] running `Command { std: "docker" "inspect" "a4df5d7ae0aed97a65da9635ce247e66f1bea815d6e705b764f8b69542c7a2de", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a4df5d7ae0aed97a65da9635ce247e66f1bea815d6e705b764f8b69542c7a2de", kill_on_drop: false }`
[INFO] [stdout] a4df5d7ae0aed97a65da9635ce247e66f1bea815d6e705b764f8b69542c7a2de
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 8077e106f8dc9570f1d667c3e955d7039b96800e7a1ee25c252af6e5d3962109
[INFO] running `Command { std: "docker" "start" "-a" "8077e106f8dc9570f1d667c3e955d7039b96800e7a1ee25c252af6e5d3962109", kill_on_drop: false }`
[INFO] [stderr]    Compiling wards v0.1.10 (/opt/rustwide/workdir)
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/car.rs:69:22
[INFO] [stdout]    |
[INFO] [stdout] 69 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&str>, WardError>;
[INFO] [stdout]    |                      ^^              ^^                         ---- the same lifetime is elided here
[INFO] [stdout]    |                      |               |
[INFO] [stdout]    |                      |               the lifetime is named here
[INFO] [stdout]    |                      the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 69 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&'a str>, WardError>;
[INFO] [stdout]    |                                                                  ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/car.rs:110:22
[INFO] [stdout]     |
[INFO] [stdout] 110 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&str>, WardError> {
[INFO] [stdout]     |                      ^^              ^^                         ---- the same lifetime is elided here
[INFO] [stdout]     |                      |               |
[INFO] [stdout]     |                      |               the lifetime is named here
[INFO] [stdout]     |                      the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 110 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&'a str>, WardError> {
[INFO] [stdout]     |                                                                  ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: environment variable `TEST_CAMERA_IP` not defined at compile time
[INFO] [stdout]  --> tests/common/mod.rs:4:14
[INFO] [stdout]   |
[INFO] [stdout] 4 |     let ip = env!("TEST_CAMERA_IP").to_string();
[INFO] [stdout]   |              ^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = help: use `std::env::var("TEST_CAMERA_IP")` to read the variable at run time
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: environment variable `TEST_CAMERA_USERNAME` not defined at compile time
[INFO] [stdout]  --> tests/common/mod.rs:5:20
[INFO] [stdout]   |
[INFO] [stdout] 5 |     let username = env!("TEST_CAMERA_USERNAME").to_string();
[INFO] [stdout]   |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = help: use `std::env::var("TEST_CAMERA_USERNAME")` to read the variable at run time
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: environment variable `TEST_CAMERA_PASSWORD` not defined at compile time
[INFO] [stdout]  --> tests/common/mod.rs:6:20
[INFO] [stdout]   |
[INFO] [stdout] 6 |     let password = env!("TEST_CAMERA_PASSWORD").to_string();
[INFO] [stdout]   |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = help: use `std::env::var("TEST_CAMERA_PASSWORD")` to read the variable at run time
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error: environment variable `TEST_CAMERA_DESCRIPTION` not defined at compile time
[INFO] [stdout]  --> tests/common/mod.rs:7:23
[INFO] [stdout]   |
[INFO] [stdout] 7 |     let description = env!("TEST_CAMERA_DESCRIPTION").to_string();
[INFO] [stdout]   |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout]   = help: use `std::env::var("TEST_CAMERA_DESCRIPTION")` to read the variable at run time
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]   --> src/car.rs:69:22
[INFO] [stdout]    |
[INFO] [stdout] 69 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&str>, WardError>;
[INFO] [stdout]    |                      ^^              ^^                         ---- the same lifetime is elided here
[INFO] [stdout]    |                      |               |
[INFO] [stdout]    |                      |               the lifetime is named here
[INFO] [stdout]    |                      the lifetime is named here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]    |
[INFO] [stdout] 69 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&'a str>, WardError>;
[INFO] [stdout]    |                                                                  ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/car.rs:110:22
[INFO] [stdout]     |
[INFO] [stdout] 110 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&str>, WardError> {
[INFO] [stdout]     |                      ^^              ^^                         ---- the same lifetime is elided here
[INFO] [stdout]     |                      |               |
[INFO] [stdout]     |                      |               the lifetime is named here
[INFO] [stdout]     |                      the lifetime is named here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 110 |     fn add_cars<'a>(&'a self, cars: &'a Vec<Car>) -> Result<Vec<&'a str>, WardError> {
[INFO] [stdout]     |                                                                  ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `wards` (test "integration_test") due to 4 previous errors
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] running `Command { std: "docker" "inspect" "8077e106f8dc9570f1d667c3e955d7039b96800e7a1ee25c252af6e5d3962109", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "8077e106f8dc9570f1d667c3e955d7039b96800e7a1ee25c252af6e5d3962109", kill_on_drop: false }`
[INFO] [stdout] 8077e106f8dc9570f1d667c3e955d7039b96800e7a1ee25c252af6e5d3962109
