[INFO] crate heim-runtime 0.1.0-alpha.1 is already in cache
[INFO] checking heim-runtime-0.1.0-alpha.1 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] extracting crate heim-runtime 0.1.0-alpha.1 into /workspace/builds/worker-5/source
[INFO] validating manifest of crates.io crate heim-runtime 0.1.0-alpha.1 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate heim-runtime 0.1.0-alpha.1
[INFO] finished tweaking crates.io crate heim-runtime 0.1.0-alpha.1
[INFO] tweaked toml for crates.io crate heim-runtime 0.1.0-alpha.1 written to /workspace/builds/worker-5/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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=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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "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] eaae967296ca5a3806c53aaf4177be0c3cbf980bed3cb6d3b1d404d78b68400e
[INFO] running `"docker" "start" "-a" "eaae967296ca5a3806c53aaf4177be0c3cbf980bed3cb6d3b1d404d78b68400e"`
[INFO] [stderr]    Compiling syn v1.0.17
[INFO] [stderr]    Compiling futures-macro v0.3.4
[INFO] [stderr]     Checking futures-util v0.3.4
[INFO] [stderr]     Checking heim-runtime v0.1.0-alpha.1 (/opt/rustwide/workdir)
[INFO] [stderr] error: None of the async runtime support features were enabled!
[INFO] [stderr]   --> src/lib.rs:71:9
[INFO] [stderr]    |
[INFO] [stderr] 71 |         compile_error!("None of the async runtime support features were enabled!");
[INFO] [stderr]    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error: None of the async runtime support features were enabled!
[INFO] [stderr]   --> src/lib.rs:71:9
[INFO] [stderr]    |
[INFO] [stderr] 71 |         compile_error!("None of the async runtime support features were enabled!");
[INFO] [stderr]    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `super::runtime`
[INFO] [stderr]  --> src/fs.rs:9:5
[INFO] [stderr]   |
[INFO] [stderr] 9 | use super::runtime;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^ no `runtime` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: maybe a missing crate `runtime`?
[INFO] [stderr]   --> src/task.rs:12:12
[INFO] [stderr]    |
[INFO] [stderr] 12 |     crate::runtime::task::spawn_blocking(f).await
[INFO] [stderr]    |            ^^^^^^^ maybe a missing crate `runtime`?
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `read_to_string` in this scope
[INFO] [stderr]   --> src/fs.rs:19:20
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[INFO] [stderr]    |                    ^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use std::fs::read_to_string;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `read_lines` in this scope
[INFO] [stderr]   --> src/fs.rs:32:17
[INFO] [stderr]    |
[INFO] [stderr] 13 | / pub async fn read_into<T, R, E>(path: T) -> Result<R, E>
[INFO] [stderr] 14 | | where
[INFO] [stderr] 15 | |     T: AsRef<Path> + Send,
[INFO] [stderr] 16 | |     R: FromStr,
[INFO] [stderr] ...  |
[INFO] [stderr] 21 | |     R::from_str(&contents).map_err(Into::into)
[INFO] [stderr] 22 | | }
[INFO] [stderr]    | |_- similarly named function `read_into` defined here
[INFO] [stderr] ...
[INFO] [stderr] 32 |       let lines = read_lines(path).await?;
[INFO] [stderr]    |                   ^^^^^^^^^^ help: a function with a similar name exists: `read_into`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `read_lines` in this scope
[INFO] [stderr]   --> src/fs.rs:46:21
[INFO] [stderr]    |
[INFO] [stderr] 13 | / pub async fn read_into<T, R, E>(path: T) -> Result<R, E>
[INFO] [stderr] 14 | | where
[INFO] [stderr] 15 | |     T: AsRef<Path> + Send,
[INFO] [stderr] 16 | |     R: FromStr,
[INFO] [stderr] ...  |
[INFO] [stderr] 21 | |     R::from_str(&contents).map_err(Into::into)
[INFO] [stderr] 22 | | }
[INFO] [stderr]    | |_- similarly named function `read_into` defined here
[INFO] [stderr] ...
[INFO] [stderr] 46 |       let mut lines = read_lines(path).await?;
[INFO] [stderr]    |                       ^^^^^^^^^^ help: a function with a similar name exists: `read_into`
[INFO] [stderr] 
[INFO] [stderr] error[E0432]: unresolved import `super::runtime`
[INFO] [stderr]  --> src/fs.rs:9:5
[INFO] [stderr]   |
[INFO] [stderr] 9 | use super::runtime;
[INFO] [stderr]   |     ^^^^^^^^^^^^^^ no `runtime` in the root
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:19:9
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: all local variables must have a statically known size
[INFO] [stderr]    = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:19:20
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: all local variables must have a statically known size
[INFO] [stderr]    = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:19:46
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: required by `std::prelude::v1::Err`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:36:20
[INFO] [stderr]    |
[INFO] [stderr] 36 |         .and_then(|line| ready(R::from_str(&line).map_err(E::from)));
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: all local variables must have a statically known size
[INFO] [stderr]    = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 10 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0277, E0425, E0432, E0433.
[INFO] [stderr] For more information about an error, try `rustc --explain E0277`.
[INFO] [stderr] error: could not compile `heim-runtime`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error[E0433]: failed to resolve: maybe a missing crate `runtime`?
[INFO] [stderr]   --> src/task.rs:12:12
[INFO] [stderr]    |
[INFO] [stderr] 12 |     crate::runtime::task::spawn_blocking(f).await
[INFO] [stderr]    |            ^^^^^^^ maybe a missing crate `runtime`?
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `read_to_string` in this scope
[INFO] [stderr]   --> src/fs.rs:19:20
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[INFO] [stderr]    |                    ^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use std::fs::read_to_string;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `read_lines` in this scope
[INFO] [stderr]   --> src/fs.rs:32:17
[INFO] [stderr]    |
[INFO] [stderr] 13 | / pub async fn read_into<T, R, E>(path: T) -> Result<R, E>
[INFO] [stderr] 14 | | where
[INFO] [stderr] 15 | |     T: AsRef<Path> + Send,
[INFO] [stderr] 16 | |     R: FromStr,
[INFO] [stderr] ...  |
[INFO] [stderr] 21 | |     R::from_str(&contents).map_err(Into::into)
[INFO] [stderr] 22 | | }
[INFO] [stderr]    | |_- similarly named function `read_into` defined here
[INFO] [stderr] ...
[INFO] [stderr] 32 |       let lines = read_lines(path).await?;
[INFO] [stderr]    |                   ^^^^^^^^^^ help: a function with a similar name exists: `read_into`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `read_lines` in this scope
[INFO] [stderr]   --> src/fs.rs:46:21
[INFO] [stderr]    |
[INFO] [stderr] 13 | / pub async fn read_into<T, R, E>(path: T) -> Result<R, E>
[INFO] [stderr] 14 | | where
[INFO] [stderr] 15 | |     T: AsRef<Path> + Send,
[INFO] [stderr] 16 | |     R: FromStr,
[INFO] [stderr] ...  |
[INFO] [stderr] 21 | |     R::from_str(&contents).map_err(Into::into)
[INFO] [stderr] 22 | | }
[INFO] [stderr]    | |_- similarly named function `read_into` defined here
[INFO] [stderr] ...
[INFO] [stderr] 46 |       let mut lines = read_lines(path).await?;
[INFO] [stderr]    |                       ^^^^^^^^^^ help: a function with a similar name exists: `read_into`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:19:9
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: all local variables must have a statically known size
[INFO] [stderr]    = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:19:20
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: all local variables must have a statically known size
[INFO] [stderr]    = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:19:46
[INFO] [stderr]    |
[INFO] [stderr] 19 |     let contents = read_to_string(path).await?;
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: required by `syn::export::Err`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the size for values of type `str` cannot be known at compilation time
[INFO] [stderr]   --> src/fs.rs:36:20
[INFO] [stderr]    |
[INFO] [stderr] 36 |         .and_then(|line| ready(R::from_str(&line).map_err(E::from)));
[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 `str`
[INFO] [stderr]    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
[INFO] [stderr]    = note: all local variables must have a statically known size
[INFO] [stderr]    = help: unsized locals are gated as an unstable feature
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 10 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0277, E0425, E0432, E0433.
[INFO] [stderr] For more information about an error, try `rustc --explain E0277`.
[INFO] [stderr] error: could not compile `heim-runtime`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "eaae967296ca5a3806c53aaf4177be0c3cbf980bed3cb6d3b1d404d78b68400e"`
[INFO] running `"docker" "rm" "-f" "eaae967296ca5a3806c53aaf4177be0c3cbf980bed3cb6d3b1d404d78b68400e"`
[INFO] [stdout] eaae967296ca5a3806c53aaf4177be0c3cbf980bed3cb6d3b1d404d78b68400e
