[go: up one dir, main page]

rayon 0.8.1

Simple work-stealing parallelism for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

echo "INFO: There Can Be Only One!" >&2

if cargo build --manifest-path "$DIR/highlander/Cargo.toml"; then
    echo "ERROR: we built with multiple rayon-core!" >&2
    exit 1
fi

echo "PASS: using multiple rayon-core failed." >&2