[INFO] updating cached repository https://github.com/dzcarter/rust-ps1 [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] dc3493c0804bf7a3bc5c79696360ea463de00968 [INFO] testing dzcarter/rust-ps1 against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fdzcarter%2Frust-ps1" "work/builds/worker-0/source"` [INFO] [stderr] Cloning into 'work/builds/worker-0/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/dzcarter/rust-ps1 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/dzcarter/rust-ps1 [INFO] finished tweaking git repo https://github.com/dzcarter/rust-ps1 [INFO] tweaked toml for git repo https://github.com/dzcarter/rust-ps1 written to work/builds/worker-0/source/Cargo.toml [INFO] crate git repo https://github.com/dzcarter/rust-ps1 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] running `"docker" "create" "-v" "/big/crater/work/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-0/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] 415250abf2a0a1ee348008f5d67cb898a9e404ff292e92451d6cd1cf215a45c1 [INFO] running `"docker" "start" "-a" "415250abf2a0a1ee348008f5d67cb898a9e404ff292e92451d6cd1cf215a45c1"` [INFO] [stderr] Compiling ps1 v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error: expected one of `)`, `,`, `.`, `?`, or an operator, found `{` [INFO] [stderr] --> src/main.rs:30:44 [INFO] [stderr] | [INFO] [stderr] 30 | Ok(mut stream) => spawn(proc() { [INFO] [stderr] | ^ expected one of `)`, `,`, `.`, `?`, or an operator here [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `net` [INFO] [stderr] --> src/main.rs:22:24 [INFO] [stderr] | [INFO] [stderr] 22 | let mut acceptor = net::tcp::TcpListener::bind(addr).listen(); [INFO] [stderr] | ^^^ use of undeclared type or module `net` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `spawn` in this scope [INFO] [stderr] --> src/main.rs:30:31 [INFO] [stderr] | [INFO] [stderr] 30 | Ok(mut stream) => spawn(proc() { [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] 16 | use std::thread::spawn; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `proc` in this scope [INFO] [stderr] --> src/main.rs:30:37 [INFO] [stderr] | [INFO] [stderr] 30 | Ok(mut stream) => spawn(proc() { [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> src/main.rs:14:1 [INFO] [stderr] | [INFO] [stderr] 14 | #![feature(globs)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/main.rs:36:35 [INFO] [stderr] | [INFO] [stderr] 36 | let mut buf = [0, ..500]; [INFO] [stderr] | ^^^^^ expected integer, found struct `std::ops::RangeTo` [INFO] [stderr] | [INFO] [stderr] = note: expected type `{integer}` [INFO] [stderr] found type `std::ops::RangeTo<{integer}>` [INFO] [stderr] [INFO] [stderr] error[E0277]: `std::result::Result<&str, std::str::Utf8Error>` doesn't implement `std::fmt::Display` [INFO] [stderr] --> src/main.rs:39:52 [INFO] [stderr] | [INFO] [stderr] 39 | println!("Received request :\n{}", request_str); [INFO] [stderr] | ^^^^^^^^^^^ `std::result::Result<&str, std::str::Utf8Error>` cannot be formatted with the default formatter [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::fmt::Display` is not implemented for `std::result::Result<&str, std::str::Utf8Error>` [INFO] [stderr] = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead [INFO] [stderr] = note: required by `std::fmt::Display::fmt` [INFO] [stderr] [INFO] [stderr] warning: unused import: `std::io` [INFO] [stderr] --> src/main.rs:16:5 [INFO] [stderr] | [INFO] [stderr] 16 | use std::io::*; [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error: aborting due to 7 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0425, E0433, E0554. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `ps1`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "415250abf2a0a1ee348008f5d67cb898a9e404ff292e92451d6cd1cf215a45c1"` [INFO] running `"docker" "rm" "-f" "415250abf2a0a1ee348008f5d67cb898a9e404ff292e92451d6cd1cf215a45c1"` [INFO] [stdout] 415250abf2a0a1ee348008f5d67cb898a9e404ff292e92451d6cd1cf215a45c1