[INFO] updating cached repository https://github.com/geauxvirtual/hdb [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/mnt/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] 3fb97d465e213313facf319889435aacbc85b1c5 [INFO] checking geauxvirtual/hdb against master#c9edc02e8320a9e5799d185910ece7d491f524e6 for pr-64398 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fgeauxvirtual%2Fhdb" "work/builds/worker-2/source"` [INFO] [stderr] Cloning into 'work/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/geauxvirtual/hdb on toolchain c9edc02e8320a9e5799d185910ece7d491f524e6-alt [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+c9edc02e8320a9e5799d185910ece7d491f524e6-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/geauxvirtual/hdb [INFO] finished tweaking git repo https://github.com/geauxvirtual/hdb [INFO] tweaked toml for git repo https://github.com/geauxvirtual/hdb written to work/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/geauxvirtual/hdb already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+c9edc02e8320a9e5799d185910ece7d491f524e6-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/mnt/big/crater/work/builds/worker-2/source:/opt/rustwide/workdir:ro,Z" "-v" "/mnt/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/mnt/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=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" "+c9edc02e8320a9e5799d185910ece7d491f524e6-alt" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] f59a33ba53fd5afdc46a935d49cc375f17b62f70bd23da2b6e8ec559d11c450e [INFO] running `"docker" "start" "-a" "f59a33ba53fd5afdc46a935d49cc375f17b62f70bd23da2b6e8ec559d11c450e"` [INFO] [stderr] Compiling cc v1.0.14 [INFO] [stderr] Checking socket2 v0.3.5 [INFO] [stderr] Checking chrono v0.4.2 [INFO] [stderr] Checking uuid v0.5.1 [INFO] [stderr] Compiling syn v0.13.3 [INFO] [stderr] Checking postgres-protocol v0.3.2 [INFO] [stderr] Compiling openssl-sys v0.9.28 [INFO] [stderr] Checking postgres-shared v0.4.1 [INFO] [stderr] Compiling serde_derive_internals v0.23.1 [INFO] [stderr] Compiling openssl v0.9.24 [INFO] [stderr] Compiling serde_derive v1.0.43 [INFO] [stderr] Checking postgres v0.15.2 [INFO] [stderr] Checking r2d2_postgres v0.14.0 [INFO] [stderr] Checking hdb v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0433]: failed to resolve: unresolved import [INFO] [stderr] --> src/platform/config.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use openssl::ssl::{SslMethod, SslConnectorBuilder}; [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | unresolved import [INFO] [stderr] | help: a similar path exists: `postgres::tls::openssl` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: unresolved import [INFO] [stderr] --> src/platform/config.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use openssl::x509::X509_FILETYPE_PEM; [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | unresolved import [INFO] [stderr] | help: a similar path exists: `postgres::tls::openssl` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SslConnectorBuilder` [INFO] [stderr] --> src/platform/config.rs:108:23 [INFO] [stderr] | [INFO] [stderr] 108 | let mut builder = SslConnectorBuilder::new(SslMethod::tls()).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ use of undeclared type or module `SslConnectorBuilder` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SslMethod` [INFO] [stderr] --> src/platform/config.rs:108:48 [INFO] [stderr] | [INFO] [stderr] 108 | let mut builder = SslConnectorBuilder::new(SslMethod::tls()).unwrap(); [INFO] [stderr] | ^^^^^^^^^ use of undeclared type or module `SslMethod` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `OpenSsl` [INFO] [stderr] --> src/platform/config.rs:112:5 [INFO] [stderr] | [INFO] [stderr] 112 | OpenSsl::from(builder.build()) [INFO] [stderr] | ^^^^^^^ use of undeclared type or module `OpenSsl` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `OpenSsl` in this scope [INFO] [stderr] --> src/platform/config.rs:107:78 [INFO] [stderr] | [INFO] [stderr] 107 | fn ssl_builder(cert_file: String, cert_key_file: String, ca_file: String) -> OpenSsl { [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use postgres::tls::openssl::OpenSsl; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `X509_FILETYPE_PEM` in this scope [INFO] [stderr] --> src/platform/config.rs:110:45 [INFO] [stderr] | [INFO] [stderr] 110 | builder.set_certificate_file(cert_file, X509_FILETYPE_PEM).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use postgres::tls::openssl::openssl::x509::X509_FILETYPE_PEM; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `X509_FILETYPE_PEM` in this scope [INFO] [stderr] --> src/platform/config.rs:111:49 [INFO] [stderr] | [INFO] [stderr] 111 | builder.set_private_key_file(cert_key_file, X509_FILETYPE_PEM).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use postgres::tls::openssl::openssl::x509::X509_FILETYPE_PEM; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `OpenSsl` in this scope [INFO] [stderr] --> src/platform/mod.rs:20:10 [INFO] [stderr] | [INFO] [stderr] 20 | ssl: OpenSsl, [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use postgres::tls::openssl::OpenSsl; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: unresolved import [INFO] [stderr] --> src/platform/config.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use openssl::ssl::{SslMethod, SslConnectorBuilder}; [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | unresolved import [INFO] [stderr] | help: a similar path exists: `postgres::tls::openssl` [INFO] [stderr] [INFO] [stderr] error: aborting due to 9 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error[E0433]: failed to resolve: unresolved import [INFO] [stderr] --> src/platform/config.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use openssl::x509::X509_FILETYPE_PEM; [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | unresolved import [INFO] [stderr] | help: a similar path exists: `postgres::tls::openssl` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SslConnectorBuilder` [INFO] [stderr] --> src/platform/config.rs:108:23 [INFO] [stderr] | [INFO] [stderr] 108 | let mut builder = SslConnectorBuilder::new(SslMethod::tls()).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ use of undeclared type or module `SslConnectorBuilder` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `SslMethod` [INFO] [stderr] --> src/platform/config.rs:108:48 [INFO] [stderr] | [INFO] [stderr] 108 | let mut builder = SslConnectorBuilder::new(SslMethod::tls()).unwrap(); [INFO] [stderr] | ^^^^^^^^^ use of undeclared type or module `SslMethod` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `OpenSsl` [INFO] [stderr] --> src/platform/config.rs:112:5 [INFO] [stderr] | [INFO] [stderr] 112 | OpenSsl::from(builder.build()) [INFO] [stderr] | ^^^^^^^ use of undeclared type or module `OpenSsl` [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `OpenSsl` in this scope [INFO] [stderr] --> src/platform/config.rs:107:78 [INFO] [stderr] | [INFO] [stderr] 107 | fn ssl_builder(cert_file: String, cert_key_file: String, ca_file: String) -> OpenSsl { [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use postgres::tls::openssl::OpenSsl; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: Could not compile `hdb`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0425]: cannot find value `X509_FILETYPE_PEM` in this scope [INFO] [stderr] --> src/platform/config.rs:110:45 [INFO] [stderr] | [INFO] [stderr] 110 | builder.set_certificate_file(cert_file, X509_FILETYPE_PEM).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use postgres::tls::openssl::openssl::x509::X509_FILETYPE_PEM; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `X509_FILETYPE_PEM` in this scope [INFO] [stderr] --> src/platform/config.rs:111:49 [INFO] [stderr] | [INFO] [stderr] 111 | builder.set_private_key_file(cert_key_file, X509_FILETYPE_PEM).unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 3 | use postgres::tls::openssl::openssl::x509::X509_FILETYPE_PEM; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `OpenSsl` in this scope [INFO] [stderr] --> src/platform/mod.rs:20:10 [INFO] [stderr] | [INFO] [stderr] 20 | ssl: OpenSsl, [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] help: possible candidate is found in another module, you can import it into scope [INFO] [stderr] | [INFO] [stderr] 1 | use postgres::tls::openssl::OpenSsl; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: aborting due to 9 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: Could not compile `hdb`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "f59a33ba53fd5afdc46a935d49cc375f17b62f70bd23da2b6e8ec559d11c450e"` [INFO] running `"docker" "rm" "-f" "f59a33ba53fd5afdc46a935d49cc375f17b62f70bd23da2b6e8ec559d11c450e"` [INFO] [stdout] f59a33ba53fd5afdc46a935d49cc375f17b62f70bd23da2b6e8ec559d11c450e