From b2aca43e64c18d055785f1c14d45c079a35113bb Mon Sep 17 00:00:00 2001 From: Ming-Wei Shih Date: Thu, 9 Feb 2023 19:36:34 +0000 Subject: [PATCH] Add missing config.toml Signed-off-by: Ming-Wei Shih --- .cargo/config.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .cargo/config.toml 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"