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
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.