async_executors 0.7.0

Implements Spawn, SpawnLocal and SpawnHandle for commonly used executors.
Documentation
#!/usr/bin/bash

# fail fast
#
set -e

# print each command before it's executed
#
set -x

export RUSTFLAGS="-D warnings"

# --no-default-features is needed to turn of notwasm so this won't try to compile examples
# features don't work in wasm-pack, so using cargo test directly here
#
wasm-pack test --firefox --headless -- --no-default-features
wasm-pack test --firefox --headless -- --no-default-features --features "bindgen"
wasm-pack test --firefox --headless -- --no-default-features --features "async_std"
wasm-pack test --firefox --headless -- --no-default-features --features "async_global"
wasm-pack test --firefox --headless -- --no-default-features --features "timer bindgen async_std async_global"