
* Tuneable Stage, Scheduler, and Mutators * rename * fix build * get rid of prelude * fmt * Reworked tunable, fixed stuff, add testcase * clippy * further fixes * fix typo, fmt
8 lines
433 B
Bash
Executable File
8 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Script to find .rs files that don't get built.
|
|
|
|
cargo +nightly build --examples --all-features --tests --examples --benches
|
|
|
|
# Find all files in deps, then compare to all actual .d files. Ignore a range of files.
|
|
grep --no-filename '^[^/].*\.rs:$' target/debug/deps/*.d | sed 's/:$//' | sort -u | diff - <(find . -name '*.rs' | sed 's/\.\///' | sort -u) | grep -Ev '(target/|scripts/|symcc_runtime/|build.rs|fuzzers/)' |