test_executors 0.4.1

Simple async executors for testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"

WARN_FLAGS="-D warnings"
if [[ " $* " =~ " --relaxed " ]]; then
    WARN_FLAGS=""
fi
RUSTDOCFLAGS="$WARN_FLAGS" cargo doc

# Run proc crate docs
cd "$REPO_ROOT/test_executors_proc"
"$REPO_ROOT/test_executors_proc/scripts/native/docs" "$@"