-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.toml
73 lines (61 loc) · 1.54 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tasks.clean]
command = "cargo"
args = ["clean"]
[tasks.test]
[tasks.doc]
[tasks.format]
description = "Format rust codebase."
command = "cargo"
args = ["fmt"]
[tasks.format-check]
description = "Check format of rust codebase."
workspace = false
command = "cargo"
args = ["fmt", "--all", "--", "--check"]
[tasks.lint]
description = "Lint rust codebase with clippy tool."
workspace = false
command = "cargo"
args = ["clippy"]
[tasks.build-cli]
description = "Build CLI application in debug mode."
workspace = false
dependencies = [
{ name = "build", path = "bin/xrf-cli" },
]
[tasks.build-cli-release]
description = "Build CLI application in release mode."
workspace = false
dependencies = [
{ name = "build-release", path = "bin/xrf-cli" },
]
[tasks.build-app]
description = "Build UI application in debug mode."
workspace = false
dependencies = [
{ name = "build", path = "bin/xrf-app" },
]
[tasks.build-app-release]
description = "Build UI application in release mode."
workspace = false
dependencies = [
{ name = "build-release", path = "bin/xrf-app" },
]
[tasks.dev-app]
description = "Run UI application backend and frontend in watch mode."
workspace = false
dependencies = [
{ name = "dev", path = "bin/xrf-app" },
]
[tasks.serve-backend]
description = "Run UI application backend in watch mode."
workspace = false
dependencies = [
{ name = "serve-backend", path = "bin/xrf-app" },
]
[tasks.serve-ui]
description = "Run UI application frontend in watch mode."
workspace = false
dependencies = [
{ name = "serve-ui", path = "bin/xrf-app" },
]