[INFO] fetching crate safina 0.7.0... [INFO] building safina-0.7.0 against try#d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6 for pr-146237-1 [INFO] extracting crate safina 0.7.0 into /workspace/builds/worker-0-tc2/source [INFO] started tweaking crates.io crate safina 0.7.0 [INFO] removed 0 missing tests [INFO] finished tweaking crates.io crate safina 0.7.0 [INFO] tweaked toml for crates.io crate safina 0.7.0 written to /workspace/builds/worker-0-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate safina 0.7.0 on toolchain d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate safina 0.7.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] d82d29cfa509c4614db790b2beb6234e075d8cd0e6e6428eebcef64954a429ef [INFO] running `Command { std: "docker" "start" "-a" "d82d29cfa509c4614db790b2beb6234e075d8cd0e6e6428eebcef64954a429ef", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "d82d29cfa509c4614db790b2beb6234e075d8cd0e6e6428eebcef64954a429ef", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "d82d29cfa509c4614db790b2beb6234e075d8cd0e6e6428eebcef64954a429ef", kill_on_drop: false }` [INFO] [stdout] d82d29cfa509c4614db790b2beb6234e075d8cd0e6e6428eebcef64954a429ef [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] bfdf3b0b3dd245c71f1c1c55a0d137018c19ce8820137b23235719a692271364 [INFO] running `Command { std: "docker" "start" "-a" "bfdf3b0b3dd245c71f1c1c55a0d137018c19ce8820137b23235719a692271364", kill_on_drop: false }` [INFO] [stderr] Compiling safina v0.7.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 329 - pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] 329 + pub fn spawn(self: &Arc, fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:344:52 [INFO] [stdout] | [INFO] [stdout] 344 | pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 344 - pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 344 + pub fn spawn_unpin(self: &Arc, fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:379:52 [INFO] [stdout] | [INFO] [stdout] 379 | pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 379 - pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] 379 + pub fn block_on(self: &Arc, fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:398:19 [INFO] [stdout] | [INFO] [stdout] 398 | fut: impl (Future) + Unpin + 'static, [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 398 - fut: impl (Future) + Unpin + 'static, [INFO] [stdout] 398 + fut: impl Future + Unpin + 'static, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:519:24 [INFO] [stdout] | [INFO] [stdout] 519 | pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 519 - pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] 519 + pub fn spawn(fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:536:30 [INFO] [stdout] | [INFO] [stdout] 536 | pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 536 - pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 536 + pub fn spawn_unpin(fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:584:30 [INFO] [stdout] | [INFO] [stdout] 584 | pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 584 - pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] 584 + pub fn block_on(fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:602:40 [INFO] [stdout] | [INFO] [stdout] 602 | pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 602 - pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] 602 + pub fn block_on_unpin(mut fut: impl Future + Unpin + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.89s [INFO] running `Command { std: "docker" "inspect" "bfdf3b0b3dd245c71f1c1c55a0d137018c19ce8820137b23235719a692271364", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "bfdf3b0b3dd245c71f1c1c55a0d137018c19ce8820137b23235719a692271364", kill_on_drop: false }` [INFO] [stdout] bfdf3b0b3dd245c71f1c1c55a0d137018c19ce8820137b23235719a692271364 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+d79d87d4c0f7f0d0785ad6e493cf8cf718ed89a6" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 6ffc1b018fe3131a8f7d5a98aa22c2a17ce25e36af33a840b263d51183e43701 [INFO] running `Command { std: "docker" "start" "-a" "6ffc1b018fe3131a8f7d5a98aa22c2a17ce25e36af33a840b263d51183e43701", kill_on_drop: false }` [INFO] [stderr] Compiling tempfile v3.20.0 [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 329 - pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] 329 + pub fn spawn(self: &Arc, fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:344:52 [INFO] [stdout] | [INFO] [stdout] 344 | pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 344 - pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 344 + pub fn spawn_unpin(self: &Arc, fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:379:52 [INFO] [stdout] | [INFO] [stdout] 379 | pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 379 - pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] 379 + pub fn block_on(self: &Arc, fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:398:19 [INFO] [stdout] | [INFO] [stdout] 398 | fut: impl (Future) + Unpin + 'static, [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 398 - fut: impl (Future) + Unpin + 'static, [INFO] [stdout] 398 + fut: impl Future + Unpin + 'static, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:519:24 [INFO] [stdout] | [INFO] [stdout] 519 | pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 519 - pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] 519 + pub fn spawn(fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:536:30 [INFO] [stdout] | [INFO] [stdout] 536 | pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 536 - pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 536 + pub fn spawn_unpin(fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:584:30 [INFO] [stdout] | [INFO] [stdout] 584 | pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 584 - pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] 584 + pub fn block_on(fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:602:40 [INFO] [stdout] | [INFO] [stdout] 602 | pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 602 - pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] 602 + pub fn block_on_unpin(mut fut: impl Future + Unpin + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rusty-fork v0.3.0 [INFO] [stderr] Compiling safina v0.7.0 (/opt/rustwide/workdir) [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/sync_mutex_test.rs:4:5 [INFO] [stdout] | [INFO] [stdout] 4 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/net_tcp_listener_test.rs:3:5 [INFO] [stdout] | [INFO] [stdout] 3 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::threadpool::INTERNAL_MAX_THREADS` [INFO] [stdout] --> tests/threadpool_sequential_test.rs:3:26 [INFO] [stdout] | [INFO] [stdout] 3 | use safina::threadpool::{INTERNAL_MAX_THREADS, NewThreadPoolError, ThreadPool, TryScheduleError}; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^ no `INTERNAL_MAX_THREADS` in `threadpool` [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/threadpool/mod.rs:99:12 [INFO] [stdout] | [INFO] [stdout] 97 | #[cfg(feature = "testing")] [INFO] [stdout] | ------------------- the item is gated behind the `testing` feature [INFO] [stdout] 98 | #[doc(hidden)] [INFO] [stdout] 99 | pub static INTERNAL_MAX_THREADS: core::sync::atomic::AtomicUsize = [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 329 - pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] 329 + pub fn spawn(self: &Arc, fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:344:52 [INFO] [stdout] | [INFO] [stdout] 344 | pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 344 - pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 344 + pub fn spawn_unpin(self: &Arc, fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:379:52 [INFO] [stdout] | [INFO] [stdout] 379 | pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 379 - pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] 379 + pub fn block_on(self: &Arc, fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:398:19 [INFO] [stdout] | [INFO] [stdout] 398 | fut: impl (Future) + Unpin + 'static, [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 398 - fut: impl (Future) + Unpin + 'static, [INFO] [stdout] 398 + fut: impl Future + Unpin + 'static, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:519:24 [INFO] [stdout] | [INFO] [stdout] 519 | pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 519 - pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] 519 + pub fn spawn(fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:536:30 [INFO] [stdout] | [INFO] [stdout] 536 | pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 536 - pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 536 + pub fn spawn_unpin(fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:584:30 [INFO] [stdout] | [INFO] [stdout] 584 | pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 584 - pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] 584 + pub fn block_on(fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:602:40 [INFO] [stdout] | [INFO] [stdout] 602 | pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 602 - pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] 602 + pub fn block_on_unpin(mut fut: impl Future + Unpin + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/net_tcp_stream_test.rs:3:5 [INFO] [stdout] | [INFO] [stdout] 3 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/async_test_test.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "net_tcp_listener_test") due to 1 previous error [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `num_live_threads_fn` found for struct `ThreadPool` in the current scope [INFO] [stdout] --> tests/threadpool_sequential_test.rs:125:36 [INFO] [stdout] | [INFO] [stdout] 125 | let num_live_threads_fn = pool.num_live_threads_fn(); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: there is a method `num_live_threads` with a similar name [INFO] [stdout] | [INFO] [stdout] 125 - let num_live_threads_fn = pool.num_live_threads_fn(); [INFO] [stdout] 125 + let num_live_threads_fn = pool.num_live_threads(); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0432, E0599. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "async_test_test") due to 1 previous error [INFO] [stderr] error: could not compile `safina` (test "sync_mutex_test") due to 1 previous error [INFO] [stderr] error: could not compile `safina` (test "threadpool_sequential_test") due to 2 previous errors [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "net_tcp_stream_test") due to 1 previous error [INFO] running `Command { std: "docker" "inspect" "6ffc1b018fe3131a8f7d5a98aa22c2a17ce25e36af33a840b263d51183e43701", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "6ffc1b018fe3131a8f7d5a98aa22c2a17ce25e36af33a840b263d51183e43701", kill_on_drop: false }` [INFO] [stdout] 6ffc1b018fe3131a8f7d5a98aa22c2a17ce25e36af33a840b263d51183e43701