-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.toml
36 lines (29 loc) · 1014 Bytes
/
Makefile.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Use cargo make to run scripts in this file. Most scripts are used to provide safe defaults for
# standard operations (generate docs with mermaid and KaTeX support, run benchmarks with shilds_up
# disabled, ...)
# Enable docs with Mermaid, KaTeX and some small design tweaks.
[tasks.rich-doc-dev]
env = { "RUSTDOCFLAGS" = "--html-in-header docs-head.html" }
command = "cargo"
args = ["doc", "--no-deps", "--document-private-items"]
[tasks.rich-doc]
env = { "RUSTDOCFLAGS" = "--html-in-header docs-head.html" }
command = "cargo"
args = ["doc", "--no-deps"]
[tasks.all]
dependencies = [
"docs",
"doc-katex",
]
# Run benchmark tests with shields_up disabled.
[tasks.bench-unsafe]
command = "cargo"
args = ["bench" , "--no-default-features"]
# Make a release build with shields_up disabled.
[tasks.build-release-unsafe]
command = "cargo"
args = ["build", "--release", "--no-default-features"]
# CAV 2020 benchmarks
[tasks.experiment]
command = "cargo"
args = ["run", "--release", "--bin", "experiment"]