We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd3edb9 commit ee96965Copy full SHA for ee96965
.gitignore
@@ -1,3 +1,4 @@
1
/target
2
/tarpaulin-report.html
3
fuzz-*.log
4
+/cargo-timing*.html
Justfile
@@ -18,6 +18,11 @@ export DOG_DEBUG := ""
18
cargo build --release --verbose
19
strip "${CARGO_TARGET_DIR:-target}/release/dog"
20
21
+# produce an HTML chart of compilation timings
22
+@build-time:
23
+ cargo +nightly clean
24
+ cargo +nightly build -Z timings
25
+
26
# compile the dog binary (without some features)
27
@build-quick:
28
cargo build --no-default-features
0 commit comments