[INFO] updating cached repository https://github.com/kmBlaine/yucon [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] b45c3783ed4fd6b7323734d8f2d699161d623ca0 [INFO] testing kmBlaine/yucon against 1.38.0 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2FkmBlaine%2Fyucon" "work/builds/worker-4/source"` [INFO] [stderr] Cloning into 'work/builds/worker-4/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/kmBlaine/yucon on toolchain 1.38.0 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/kmBlaine/yucon [INFO] finished tweaking git repo https://github.com/kmBlaine/yucon [INFO] tweaked toml for git repo https://github.com/kmBlaine/yucon written to work/builds/worker-4/source/Cargo.toml [INFO] crate git repo https://github.com/kmBlaine/yucon already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+1.38.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-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" "+1.38.0" "build" "--frozen"` [INFO] [stdout] 1bdf99e8316fad8e1f7e5e43cefa3396a83130de2d90f8f2c26db00c95e93701 [INFO] running `"docker" "start" "-a" "1bdf99e8316fad8e1f7e5e43cefa3396a83130de2d90f8f2c26db00c95e93701"` [INFO] [stderr] Compiling yucon v0.2.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0252]: the name `Write` is defined multiple times [INFO] [stderr] --> src/runtime/mod.rs:46:5 [INFO] [stderr] | [INFO] [stderr] 36 | use std::fmt::Write; [INFO] [stderr] | --------------- previous import of the trait `Write` here [INFO] [stderr] ... [INFO] [stderr] 46 | use std::io::Write; [INFO] [stderr] | ^^^^^^^^^^^^^^ `Write` reimported here [INFO] [stderr] | [INFO] [stderr] = note: `Write` must be defined only once in the type namespace of this module [INFO] [stderr] help: you can use `as` to change the binding name of the import [INFO] [stderr] | [INFO] [stderr] 46 | use std::io::Write as OtherWrite; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0422]: cannot find struct, variant or union type `Bootstrapper` in this scope [INFO] [stderr] --> src/runtime/mod.rs:226:9 [INFO] [stderr] | [INFO] [stderr] 226 | Bootstrapper [INFO] [stderr] | ^^^^^^^^^^^^ help: a struct with a similar name exists: `Boostrapper` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/parse/mod.rs:32:32 [INFO] [stderr] | [INFO] [stderr] 32 | fn cause(&self) -> Option<&Error> [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/parse/mod.rs:83:32 [INFO] [stderr] | [INFO] [stderr] 83 | fn cause(&self) -> Option<&Error> [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/units/config.rs:104:32 [INFO] [stderr] | [INFO] [stderr] 104 | fn cause(&self) -> Option<&Error> [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::io::Write` [INFO] [stderr] --> src/runtime/mod.rs:46:5 [INFO] [stderr] | [INFO] [stderr] 46 | use std::io::Write; [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/runtime/mod.rs:90:32 [INFO] [stderr] | [INFO] [stderr] 90 | fn cause(&self) -> Option<&Error> [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/utils/mod.rs:45:32 [INFO] [stderr] | [INFO] [stderr] 45 | fn cause(&self) -> Option<&Error> [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::env` [INFO] [stderr] --> src/main.rs:22:5 [INFO] [stderr] | [INFO] [stderr] 22 | use std::env; [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `ConversionFmt` [INFO] [stderr] --> src/main.rs:29:39 [INFO] [stderr] | [INFO] [stderr] 29 | use ::runtime::convert::{convert_all, ConversionFmt}; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'test' [INFO] [stderr] --> src/main.rs:17:1 [INFO] [stderr] | [INFO] [stderr] 17 | extern crate test; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/50297 [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'test' [INFO] [stderr] --> src/main.rs:33:5 [INFO] [stderr] | [INFO] [stderr] 33 | use test::Options; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/50297 [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'test' [INFO] [stderr] --> src/main.rs:109:50 [INFO] [stderr] | [INFO] [stderr] 109 | fn line_interpreter(units: &UnitDatabase, opts: &Options) [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/50297 [INFO] [stderr] [INFO] [stderr] error[E0658]: use of unstable library feature 'test' [INFO] [stderr] --> src/main.rs:214:34 [INFO] [stderr] | [INFO] [stderr] 214 | let (opts, mut args) = match Options::get_opts() [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: for more information, see https://github.com/rust-lang/rust/issues/50297 [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::env::home_dir': This function's behavior is unexpected and probably not what you want. Consider using the home_dir function from https://crates.io/crates/dirs instead. [INFO] [stderr] --> src/runtime/units/config.rs:806:31 [INFO] [stderr] | [INFO] [stderr] 806 | let mut home_path = match env::home_dir() [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error[E0609]: no field `format` on type `&test::Options` [INFO] [stderr] --> src/main.rs:115:31 [INFO] [stderr] | [INFO] [stderr] 115 | interpreter.format = opts.format; [INFO] [stderr] | ^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0599]: no function or associated item named `get_opts` found for type `test::Options` in the current scope [INFO] [stderr] --> src/main.rs:214:43 [INFO] [stderr] | [INFO] [stderr] 214 | let (opts, mut args) = match Options::get_opts() [INFO] [stderr] | ^^^^^^^^ function or associated item not found in `test::Options` [INFO] [stderr] [INFO] [stderr] error[E0369]: binary operation `==` cannot be applied to type `std::option::Option` [INFO] [stderr] --> src/runtime/mod.rs:249:23 [INFO] [stderr] | [INFO] [stderr] 249 | self.units_db == None [INFO] [stderr] | ------------- ^^ ---- std::option::Option<_> [INFO] [stderr] | | [INFO] [stderr] | std::option::Option [INFO] [stderr] | [INFO] [stderr] = note: an implementation of `std::cmp::PartialEq` might be missing for `std::option::Option` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'core::str::::trim_right': superseded by `trim_end` [INFO] [stderr] --> src/runtime/units/config.rs:932:45 [INFO] [stderr] | [INFO] [stderr] 932 | {}\n", line_num, line.trim_right(), err ); [INFO] [stderr] | ^^^^^^^^^^ help: replace the use of the deprecated item: `trim_end` [INFO] [stderr] [INFO] [stderr] error: aborting due to 9 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0252, E0369, E0422, E0599, E0609, E0658. [INFO] [stderr] For more information about an error, try `rustc --explain E0252`. [INFO] [stderr] error: Could not compile `yucon`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "1bdf99e8316fad8e1f7e5e43cefa3396a83130de2d90f8f2c26db00c95e93701"` [INFO] running `"docker" "rm" "-f" "1bdf99e8316fad8e1f7e5e43cefa3396a83130de2d90f8f2c26db00c95e93701"` [INFO] [stdout] 1bdf99e8316fad8e1f7e5e43cefa3396a83130de2d90f8f2c26db00c95e93701