async-spawner

Executor independent task spawner.

```rust use core::future::Future; use core::pin::Pin;

[async_std::main]

async fn main() { fn asyncstdspawn(future: Pin>) { asyncstd::task::spawn(future); } asyncspawn::registerspawner(asyncstdspawn); asyncspawn::spawn(async { println!("spawned on async-std"); }); } ```

```rust use core::future::Future; use core::pin::Pin;

[tokio::main]

async fn main() { fn tokiospawn(future: Pin>) { tokio::spawn(future); } asyncspawn::registerspawner(tokiospawn); async_spawn::spawn(async { println!("spawned on tokio"); }); } ```

License

This project is licensed under either of

at your option.