cepstrum-extractor 0.2.1

An easy-to-use crate to compute the cepstrum of a signal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

test() {
    export RUSTFLAGS="-Zsanitizer=$1"

    cargo +nightly test -Zbuild-std --target x86_64-unknown-linux-gnu --test tests
    cargo +nightly run -Zbuild-std --target x86_64-unknown-linux-gnu --example concurrent
}

echo "Running Address sanitiser..." &&
test address &&
echo "Running Leak sanitiser..." &&
test leak &&
echo "Running Memory sanitiser..." &&
test memory &&
echo "Running Thread sanitiser..." &&
test thread