[INFO] updating cached repository https://github.com/ProCynic/hello-rust [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] c765f4a5be06a6192d02bb7f1a1e45489585f028 [INFO] testing ProCynic/hello-rust against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2FProCynic%2Fhello-rust" "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/ProCynic/hello-rust on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/ProCynic/hello-rust [INFO] finished tweaking git repo https://github.com/ProCynic/hello-rust [INFO] tweaked toml for git repo https://github.com/ProCynic/hello-rust written to work/builds/worker-4/source/Cargo.toml [INFO] crate git repo https://github.com/ProCynic/hello-rust already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] error: the lock file /big/crater/work/builds/worker-4/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] the lockfile is outdated, regenerating it [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [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" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 7f7c5c6738af27073023f5317eed8326b949be4069e57e50ee00ae02126f834a [INFO] running `"docker" "start" "-a" "7f7c5c6738af27073023f5317eed8326b949be4069e57e50ee00ae02126f834a"` [INFO] [stderr] Compiling constant_time_eq v0.1.4 [INFO] [stderr] Compiling fallible-iterator v0.1.6 [INFO] [stderr] Compiling route-recognizer v0.1.13 [INFO] [stderr] Compiling stringprep v0.1.2 [INFO] [stderr] Compiling rand_os v0.1.3 [INFO] [stderr] Compiling memchr v1.0.2 [INFO] [stderr] Compiling base64 v0.6.0 [INFO] [stderr] Compiling socket2 v0.3.11 [INFO] [stderr] Compiling hyper v0.10.16 [INFO] [stderr] Compiling crypto-mac v0.5.2 [INFO] [stderr] Compiling hmac v0.5.0 [INFO] [stderr] Compiling rand v0.6.5 [INFO] [stderr] Compiling postgres-protocol v0.3.2 [INFO] [stderr] Compiling postgres-shared v0.4.2 [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] Compiling postgres v0.15.2 [INFO] [stderr] Compiling iron v0.6.1 [INFO] [stderr] Compiling persistent v0.4.0 [INFO] [stderr] Compiling router v0.6.0 [INFO] [stderr] Compiling bodyparser v0.8.0 [INFO] [stderr] Compiling hello_rust v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error[E0432]: unresolved import `self::postgres::SslMode` [INFO] [stderr] --> src/models/mod.rs:4:34 [INFO] [stderr] | [INFO] [stderr] 4 | use self::postgres::{Connection, SslMode}; [INFO] [stderr] | ^^^^^^^ no `SslMode` in the root [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `ConnectError` in this scope [INFO] [stderr] --> src/models/mod.rs:11:50 [INFO] [stderr] | [INFO] [stderr] 11 | fn get_db_connection() -> Result { [INFO] [stderr] | ^^^^^^^^^^^^ help: a struct with a similar name exists: `Connection` [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/models/mod.rs:9:5 [INFO] [stderr] | [INFO] [stderr] 9 | fn find_one() -> Result; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] = help: consider adding a `where Self: std::marker::Sized` bound [INFO] [stderr] = note: required by `std::result::Result` [INFO] [stderr] [INFO] [stderr] error[E0277]: the size for values of type `Self` cannot be known at compilation time [INFO] [stderr] --> src/models/mod.rs:10:5 [INFO] [stderr] | [INFO] [stderr] 10 | fn find() -> Result, DbError>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::marker::Sized` is not implemented for `Self` [INFO] [stderr] = note: to learn more, visit [INFO] [stderr] = help: consider adding a `where Self: std::marker::Sized` bound [INFO] [stderr] = note: required by `std::vec::Vec` [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0412, E0432. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `hello_rust`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "7f7c5c6738af27073023f5317eed8326b949be4069e57e50ee00ae02126f834a"` [INFO] running `"docker" "rm" "-f" "7f7c5c6738af27073023f5317eed8326b949be4069e57e50ee00ae02126f834a"` [INFO] [stdout] 7f7c5c6738af27073023f5317eed8326b949be4069e57e50ee00ae02126f834a