futures-preview 0.3.0-alpha.2.1

An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces.
Build #112475 2018-08-13T05:21:33.937118+00:00
# rustc version
rustc 1.28.0-dev (b9bf4f162 2018-06-02)
# docs.rs version
cratesfyi 0.5.0 (579f83b 2018-03-05)

# build log
Updating registry `https://github.com/rust-lang/crates.io-index`
Downloading futures-preview v0.3.0-alpha.2.1
Fresh slab v0.4.1
Fresh pin-utils v0.1.0-alpha.1
Fresh libc v0.2.43
Fresh version_check v0.1.4
Fresh either v1.5.0
Fresh num_cpus v1.8.0
Fresh iovec v0.1.2
Compiling futures-core-preview v0.3.0-alpha.2
Running `rustc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg 'feature="either"' --cfg 'feature="std"' -C metadata=09e37521a82c1413 -C extra-filename=-09e37521a82c1413 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0 --cap-lints allow`
Fresh lazy_static v1.1.0
error[E0432]: unresolved import `core::future`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/future.rs:6:15
|
6 | pub use core::future::{Future, FutureObj, LocalFutureObj, UnsafeFutureObj};
|               ^^^^^^ Could not find `future` in `core`

error[E0432]: unresolved import `core::task`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/task.rs:3:15
|
3 | pub use core::task::{
|               ^^^^ Could not find `task` in `core`

error[E0432]: unresolved import `std::task`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/task.rs:10:18
|
10 |     pub use std::task::{Wake, local_waker, local_waker_from_nonlocal};
|                  ^^^^ Could not find `task` in `std`

error[E0433]: failed to resolve. Use of undeclared type or module `Poll`
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:170:13
|
170 |             Poll::Ready(self.pop_front())
|             ^^^^ Use of undeclared type or module `Poll`

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/future.rs:25:10
|
25 |     ) -> Poll<Result<Self::Ok, Self::Error>>;
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/future.rs:35:64
|
35 |     fn try_poll(self: PinMut<Self>, cx: &mut task::Context) -> Poll<F::Output> {
|                                                                ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:54:10
|
54 |     ) -> Poll<Option<Self::Item>>;
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:63:10
|
63 |     ) -> Poll<Option<Self::Item>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:74:10
|
74 |     ) -> Poll<Option<Self::Item>> {
|          ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:86:65
|
86 |     fn poll_next(self: PinMut<Self>, cx: &mut task::Context) -> Poll<Option<A::Item>> {
|                                                                 ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:111:12
|
111 |         -> Poll<Option<Result<Self::Ok, Self::Error>>>;
|            ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:121:12
|
121 |         -> Poll<Option<Result<Self::Ok, Self::Error>>>
|            ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:136:14
|
136 |         ) -> Poll<Option<Self::Item>> {
|              ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:147:14
|
147 |         ) -> Poll<Option<Self::Item>> {
|              ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:158:14
|
158 |         ) -> Poll<Option<S::Item>> {
|              ^^^^ not found in this scope

error[E0412]: cannot find type `Poll` in this scope
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:169:14
|
169 |         ) -> Poll<Option<Self::Item>> {
|              ^^^^ not found in this scope

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs:18:24
|
18 | #[doc(hidden)] pub use crate::future::Future;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs:19:24
|
19 | #[doc(hidden)] pub use crate::future::TryFuture;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs:21:24
|
21 | #[doc(hidden)] pub use crate::stream::Stream;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs:22:24
|
22 | #[doc(hidden)] pub use crate::stream::TryStream;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs:24:24
|
24 | #[doc(hidden)] pub use crate::task::Poll;
|                        ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/future.rs:3:5
|
3 | use crate::task::{self, Poll};
|     ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error[E0658]: `crate` in paths is experimental (see issue #45477)
--> .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/stream.rs:3:5
|
3 | use crate::task::{self, Poll};
|     ^^^^^
|
= help: add #![feature(crate_in_paths)] to the crate attributes to enable

error: aborting due to 23 previous errors

Some errors occurred: E0412, E0432, E0433, E0658.
For more information about an error, try `rustc --explain E0412`.
thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not compile `futures-core-preview`.,
cause: process didn't exit successfully: `rustc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs --crate-type lib --emit=dep-info,link -C debuginfo=2 --cfg feature="either" --cfg feature="std" -C metadata=09e37521a82c1413 -C extra-filename=-09e37521a82c1413 --out-dir /home/cratesfyi/cratesfyi/debug/deps -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0 --cap-lints allow` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.