-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile.toml
48 lines (38 loc) · 917 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
37
38
39
40
41
42
43
44
45
46
47
48
[tasks.build]
command = "cargo"
args = ["build"]
[tasks.example_async]
command = "cargo"
args = ["run", "--example", "demo_async"]
[tasks.example_duration]
command = "cargo"
args = ["run", "--example", "demo_duration"]
[tasks.example_main]
command = "cargo"
args = ["run", "--example", "demo_main"]
[tasks.example_main_info]
command = "cargo"
args = ["run", "--example", "demo_main_info"]
[tasks.example_main_nested]
command = "cargo"
args = ["run", "--example", "demo_main_nested"]
[tasks.example_tracing]
command = "cargo"
args = ["run", "--example", "demo_tracing"]
[tasks.example_statistics]
command = "cargo"
args = ["run", "--example", "demo_statistics"]
[tasks.tests]
command = "cargo"
args = ["test"]
[tasks.all]
dependencies = [
"build",
"tests",
"example_async",
"example_main",
"example_main_info",
"example_main_nested",
"example_tracing",
"example_statistics",
]