[INFO] fetching crate runng-sys 1.1.2-rc.1... [INFO] checking runng-sys-1.1.2-rc.1 against beta-2019-10-27 for pr-65897 [INFO] extracting crate runng-sys 1.1.2-rc.1 into /workspace/builds/worker-12/source [INFO] validating manifest of crates.io crate runng-sys 1.1.2-rc.1 on toolchain beta-2019-10-27 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate runng-sys 1.1.2-rc.1 [INFO] finished tweaking crates.io crate runng-sys 1.1.2-rc.1 [INFO] tweaked toml for crates.io crate runng-sys 1.1.2-rc.1 written to /workspace/builds/worker-12/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-12/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=allow" "-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-10-27" "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] d27184d5b5e9ff9f81c7fcfe3d99e3474f476fb56e16292cd4217b8036350203 [INFO] running `"docker" "start" "-a" "d27184d5b5e9ff9f81c7fcfe3d99e3474f476fb56e16292cd4217b8036350203"` [INFO] [stderr] Compiling cmake v0.1.42 [INFO] [stderr] Compiling runng-sys v1.1.2-rc.1 (/opt/rustwide/workdir) [INFO] [stderr] error[E0432]: unresolved import `nng_sys` [INFO] [stderr] --> tests/tests.rs:4:9 [INFO] [stderr] | [INFO] [stderr] 4 | use nng_sys::*; [INFO] [stderr] | ^^^^^^^ use of undeclared type or module `nng_sys` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `nng_socket` [INFO] [stderr] --> tests/tests.rs:14:34 [INFO] [stderr] | [INFO] [stderr] 14 | let mut rep_socket = nng_socket::default(); [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `nng_socket` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `nng_socket` [INFO] [stderr] --> tests/tests.rs:19:34 [INFO] [stderr] | [INFO] [stderr] 19 | let mut req_socket = nng_socket::default(); [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `nng_socket` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_rep0_open` in this scope [INFO] [stderr] --> tests/tests.rs:15:27 [INFO] [stderr] | [INFO] [stderr] 15 | assert_eq!(0, nng_rep0_open(&mut rep_socket)); [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] 4 | use runng_sys::nng_rep0_open; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_listen` in this scope [INFO] [stderr] --> tests/tests.rs:16:27 [INFO] [stderr] | [INFO] [stderr] 16 | assert_eq!(0, nng_listen(rep_socket, url, null_mut(), 0)); [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] 4 | use runng_sys::nng_listen; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_req0_open` in this scope [INFO] [stderr] --> tests/tests.rs:20:27 [INFO] [stderr] | [INFO] [stderr] 20 | assert_eq!(0, nng_req0_open(&mut req_socket)); [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] 4 | use runng_sys::nng_req0_open; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_dial` in this scope [INFO] [stderr] --> tests/tests.rs:21:27 [INFO] [stderr] | [INFO] [stderr] 21 | assert_eq!(0, nng_dial(req_socket, url, null_mut(), 0)); [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] 4 | use runng_sys::nng_dial; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `nng_msg` in this scope [INFO] [stderr] --> tests/tests.rs:24:35 [INFO] [stderr] | [INFO] [stderr] 24 | let mut req_msg: *mut nng_msg = null_mut(); [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] 4 | use runng_sys::nng_msg; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_msg_alloc` in this scope [INFO] [stderr] --> tests/tests.rs:25:27 [INFO] [stderr] | [INFO] [stderr] 25 | assert_eq!(0, nng_msg_alloc(&mut req_msg, 0)); [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] 4 | use runng_sys::nng_msg_alloc; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_msg_append_u32` in this scope [INFO] [stderr] --> tests/tests.rs:28:27 [INFO] [stderr] | [INFO] [stderr] 28 | assert_eq!(0, nng_msg_append_u32(req_msg, val)); [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] 4 | use runng_sys::nng_msg_append_u32; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_sendmsg` in this scope [INFO] [stderr] --> tests/tests.rs:29:27 [INFO] [stderr] | [INFO] [stderr] 29 | assert_eq!(0, nng_sendmsg(req_socket, req_msg, 0)); [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] 4 | use runng_sys::nng_sendmsg; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `nng_msg` in this scope [INFO] [stderr] --> tests/tests.rs:32:36 [INFO] [stderr] | [INFO] [stderr] 32 | let mut recv_msg: *mut nng_msg = null_mut(); [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] 4 | use runng_sys::nng_msg; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_recvmsg` in this scope [INFO] [stderr] --> tests/tests.rs:33:27 [INFO] [stderr] | [INFO] [stderr] 33 | assert_eq!(0, nng_recvmsg(rep_socket, &mut recv_msg, 0)); [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] 4 | use runng_sys::nng_recvmsg; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_msg_trim_u32` in this scope [INFO] [stderr] --> tests/tests.rs:36:27 [INFO] [stderr] | [INFO] [stderr] 36 | assert_eq!(0, nng_msg_trim_u32(recv_msg, &mut recv_val)); [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] 4 | use runng_sys::nng_msg_trim_u32; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_close` in this scope [INFO] [stderr] --> tests/tests.rs:39:13 [INFO] [stderr] | [INFO] [stderr] 39 | nng_close(req_socket); [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] 4 | use runng_sys::nng_close; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `nng_close` in this scope [INFO] [stderr] --> tests/tests.rs:40:13 [INFO] [stderr] | [INFO] [stderr] 40 | nng_close(rep_socket); [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] 4 | use runng_sys::nng_close; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: aborting due to 16 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0425, E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `runng-sys`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "d27184d5b5e9ff9f81c7fcfe3d99e3474f476fb56e16292cd4217b8036350203"` [INFO] running `"docker" "rm" "-f" "d27184d5b5e9ff9f81c7fcfe3d99e3474f476fb56e16292cd4217b8036350203"` [INFO] [stdout] d27184d5b5e9ff9f81c7fcfe3d99e3474f476fb56e16292cd4217b8036350203