some_executor 0.7.2

A trait for libraries that abstract over any executor
Documentation
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e
WARN_FLAGS="-D warnings"
if [[ " $* " =~ " --relaxed " ]]; then
    WARN_FLAGS=""
fi
# The `exfiltrate` feature adds the task registry and its providers; without
# a second pass none of that is built by the gate at all.
RUSTFLAGS="$WARN_FLAGS" cargo check --all --all-targets
RUSTFLAGS="$WARN_FLAGS" cargo check --all --all-targets --features exfiltrate