executors 0.5.3

A collection of high-performance task executors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set +e

echo "%%%%%% Testing default features %%%%%%"
cargo test
echo "%%%%%% Finished testing default features %%%%%%"

echo "%%%%%% Testing feature ws-no-park %%%%%%"
cargo test --features ws-no-park
echo "%%%%%% Finished testing feature ws-no-park %%%%%%"

echo "%%%%%% Testing feature !ws-timed-fairness %%%%%%"
cargo test --no-default-features --features threadpool-exec, cb-channel-exec, workstealing-exec, defaults
echo "%%%%%% Finished testing feature !ws-timed-fairness %%%%%%"