cargo tarpaulin but without new compiling in rust

To run Tarpaulin without triggering a new compilation, you can use the following command:

cargo tarpaulin --release --out Xml --run-types Tests -- --lib
63 chars
2 lines

This command runs Tarpaulin on the already compiled release binary without triggering a new compilation.

related categories

gistlibby LogSnag