futures-core-preview 0.3.0-alpha.2

The core traits and types in for the `futures` library.
Build #110482 2018-07-30T11:04:42.379735+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`
Fresh either v1.5.0
Documenting futures-core-preview v0.3.0-alpha.2
Running `rustdoc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg 'feature="std"' --cfg 'feature="default"' --cfg 'feature="either"' -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.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[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

thread 'main' panicked at 'Error(
CargoError(
ChainedError {
error: Could not document `futures-core-preview`.,
cause: process didn't exit successfully: `rustdoc --crate-name futures_core .cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-preview-0.3.0-alpha.2/src/lib.rs -o /home/cratesfyi/cratesfyi/doc --cfg feature="std" --cfg feature="default" --cfg feature="either" -Z unstable-options --resource-suffix -20180602-1.28.0-dev-b9bf4f162 -L dependency=/home/cratesfyi/cratesfyi/debug/deps --extern either=/home/cratesfyi/cratesfyi/debug/deps/libeither-48a8c7d9b027fbd8.rlib --extern-version either=either,1.5.0` (exit code: 101)
}
),
State {
next_error: None,
backtrace: None
}
)', src/bin/cratesfyi.rs:142:13
note: Run with `RUST_BACKTRACE=1` for a backtrace.