[INFO] updating cached repository https://github.com/Undin/rust-leaflet-features [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] 75b35ff51889e5776b3cbbf85937043c5cca8780 [INFO] checking Undin/rust-leaflet-features against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FUndin%2Frust-leaflet-features" "/workspace/builds/worker-6/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-6/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/Undin/rust-leaflet-features on toolchain e4dba30b9b475d8750370c4dfb49b6541990904d [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/Undin/rust-leaflet-features [INFO] finished tweaking git repo https://github.com/Undin/rust-leaflet-features [INFO] tweaked toml for git repo https://github.com/Undin/rust-leaflet-features written to /workspace/builds/worker-6/source/Cargo.toml [INFO] crate git repo https://github.com/Undin/rust-leaflet-features already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "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] 21593cec74d25cef8ebcc5caadb2fc807a62967e53f64e0ca00a680da4aa3e39 [INFO] running `"docker" "start" "-a" "21593cec74d25cef8ebcc5caadb2fc807a62967e53f64e0ca00a680da4aa3e39"` [INFO] [stderr] Checking byteorder v1.2.7 [INFO] [stderr] Compiling proc-macro2 v0.3.8 [INFO] [stderr] Compiling quote v0.5.2 [INFO] [stderr] Compiling syn v0.13.11 [INFO] [stderr] Compiling diesel_derives v1.3.0 [INFO] [stderr] Checking diesel v1.3.3 [INFO] [stderr] Checking rust-leaflet-features v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Arc` [INFO] [stderr] --> examples/quick_fixes.rs:5:19 [INFO] [stderr] | [INFO] [stderr] 5 | let counter = Arc::new(Mutex::new(0)); [INFO] [stderr] | ^^^ use of undeclared type or module `Arc` [INFO] [stderr] [INFO] [stderr] error[E0046]: not all trait items implemented, missing: `from` [INFO] [stderr] --> examples/quick_fixes.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | impl From<(i32, i32)> for Point { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `from` in implementation [INFO] [stderr] | [INFO] [stderr] = help: implement the missing item: `fn from(_: T) -> Self { todo!() }` [INFO] [stderr] [INFO] [stderr] error[E0601]: `main` function not found in crate `completion` [INFO] [stderr] --> examples/completion.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | / fn process(s: &str) { [INFO] [stderr] 2 | | // ctrl + space [INFO] [stderr] 3 | | s.lines().ma [INFO] [stderr] 4 | | } [INFO] [stderr] | |_^ consider adding a `main` function to `examples/completion.rs` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0046, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0046`. [INFO] [stderr] error: could not compile `rust-leaflet-features`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> examples/debug.rs:4:9 [INFO] [stderr] | [INFO] [stderr] 4 | let mut v = parse_users(" [INFO] [stderr] | ----^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0601]: `main` function not found in crate `tests` [INFO] [stderr] --> examples/tests.rs:2:1 [INFO] [stderr] | [INFO] [stderr] 2 | / fn fact(n: u32) -> u32 { [INFO] [stderr] 3 | | match n { [INFO] [stderr] 4 | | 0 => 1, [INFO] [stderr] 5 | | _ => n * fact(n - 1) [INFO] [stderr] ... | [INFO] [stderr] 21 | | } [INFO] [stderr] 22 | | } [INFO] [stderr] | |_^ consider adding a `main` function to `examples/tests.rs` [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0601`. [INFO] [stderr] error: could not compile `rust-leaflet-features`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: 1 warning emitted [INFO] [stderr] [INFO] [stderr] error[E0609]: no field `ma` on type `std::str::Lines<'_>` [INFO] [stderr] --> examples/completion.rs:3:15 [INFO] [stderr] | [INFO] [stderr] 3 | s.lines().ma [INFO] [stderr] | ^^ unknown field [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0601, E0609. [INFO] [stderr] For more information about an error, try `rustc --explain E0601`. [INFO] [stderr] error: could not compile `rust-leaflet-features`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: cannot find type `table` in this scope [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/diesel-1.3.3/src/macros/mod.rs:751:42 [INFO] [stderr] | [INFO] [stderr] 751 | #[derive(Debug, Clone, Copy, QueryId)] [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(proc_macro_derive_resolution_fallback)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `table` in this scope [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/diesel-1.3.3/src/macros/mod.rs:751:42 [INFO] [stderr] | [INFO] [stderr] 751 | #[derive(Debug, Clone, Copy, QueryId)] [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `user_id` in this scope [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/diesel-1.3.3/src/macros/mod.rs:9:38 [INFO] [stderr] | [INFO] [stderr] 9 | #[derive(Debug, Clone, Copy, QueryId, Default)] [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `post_id` in this scope [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/diesel-1.3.3/src/macros/mod.rs:9:38 [INFO] [stderr] | [INFO] [stderr] 9 | #[derive(Debug, Clone, Copy, QueryId, Default)] [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: cannot find type `favorited` in this scope [INFO] [stderr] --> /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/diesel-1.3.3/src/macros/mod.rs:9:38 [INFO] [stderr] | [INFO] [stderr] 9 | #[derive(Debug, Clone, Copy, QueryId, Default)] [INFO] [stderr] | ^^^^^^^ names from parent modules are not accessible without an explicit import [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #50504 [INFO] [stderr] [INFO] [stderr] warning: 5 warnings emitted [INFO] [stderr] [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "21593cec74d25cef8ebcc5caadb2fc807a62967e53f64e0ca00a680da4aa3e39"` [INFO] running `"docker" "rm" "-f" "21593cec74d25cef8ebcc5caadb2fc807a62967e53f64e0ca00a680da4aa3e39"` [INFO] [stdout] 21593cec74d25cef8ebcc5caadb2fc807a62967e53f64e0ca00a680da4aa3e39