diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..997f237 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,11 @@ +[build] +target = "x86_64-unknown-linux-musl" + +# Flags to enable code-coverage for all builds. +# These can be removed later. +rustflags = ["-Cinstrument-coverage"] +incremental = true + +[env] +# Name of coverage instrumentation log file. +LLVM_PROFILE_FILE="target/cargo-test-%p-%m.profraw"