We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
coverage
docs
1 parent f6cf19a commit b64a56aCopy full SHA for b64a56a
justfile
@@ -22,3 +22,13 @@ update-template-lockfile:
22
sed -i 's/$proj_name/\{\{ project_name \}\}/' $cargo_lock_path
23
cp $cargo_lock_path cot-cli/src/project_template/Cargo.lock.template
24
rm -rf $tmpdir
25
+
26
+coverage:
27
+ # generate coverage report as HTML
28
+ # requires cargo-llvm-cov installed and nightly toolchain
29
+ cargo llvm-cov --all-features --workspace --branch --doctests --html --open
30
31
+docs:
32
+ # generate docs for the `cot` crate with similar settings to docs.rs
33
+ # requires nightly toolchain
34
+ RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps --all-features --lib
0 commit comments