next-gen 0.1.1

Safe generators on stable Rust.
pub(in crate)
use {
    ::{
        core::{
            cell::Cell,
            future::Future,
            marker::PhantomPinned,
            ops::Not,
            pin::Pin,
            task::{
                Context,
                Poll,
            },
        },
    },
    crate::{
        generator::{
            Generator,
            GeneratorState,
        },
        generator_fn::{
            GeneratorFn,
        },
        utils::{
            macros,
            poll_fn,
        },
    },
};

#[cfg(all(feature = "std", doc))]
pub(in crate) use ::std::prelude::v1::*;