summaryrefslogtreecommitdiffstats
path: root/Makefile.toml
blob: 8e302419a7ba5372d53b988b4d9349e03b7abdb2 (plain)
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
37
38
39
40
41
42
43
[tasks.frontend-copy-bench]
description = "Copy generated bench files"
category = "Docs"
command = "cp"
args = ["-r", "target/criterion", "docs/benches/"]

[tasks.frontend-copy-docs]
description = "Copy generated doc files"
category = "Docs"
command = "cp"
args = ["-r", "target/doc", "docs/doc/"]

[tasks.frontend]
description = "Copy generated files"
category = "Docs"
run_task = [
    { name = "frontend-copy-bench" },
    { name = "frontend-copy-docs" }
]

[tasks.docs]
description = "Build docs"
category = "Documentation"
command = "cargo"
args = ["doc", "--no-deps"]

[tasks.bench]
description = "Run benchmarks"
category = "Test"
command = "cargo"
args = ["bench"]

[tasks.test]
description = "Run tests"
category = "Test"
command = "cargo"
args = ["test"]

[tasks.build]
description = "Runs the rust compiler."
category = "Build"
command = "cargo"
args = ["build", "--all-features"]