forked from rust-mcp-stack/rust-mcp-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.toml
More file actions
49 lines (40 loc) · 941 Bytes
/
Makefile.toml
File metadata and controls
49 lines (40 loc) · 941 Bytes
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
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
[tasks.fmt]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--all", "--", "--check"]
[tasks.clippy]
command = "cargo"
args = [
"clippy",
"--workspace",
"--lib",
"--bins",
"--examples",
"--",
"-D",
"warnings",
]
[tasks.test]
install_crate = "nextest"
command = "cargo"
args = ["nextest", "run", "--no-tests=pass"]
[tasks.doc-test]
workspace = false
command = "cargo"
args = ["test", "--doc", "-p", "rust-mcp-sdk"]
dependencies = ["doc-test-macros", "doc-test-transport"]
[tasks.doc-test-transport]
workspace = false
command = "cargo"
args = ["test", "--doc", "-p", "rust-mcp-sdk"]
[tasks.doc-test-macros]
workspace = false
command = "cargo"
args = ["test", "--doc", "-p", "rust-mcp-macros"]
[tasks.check]
dependencies = ["fmt", "clippy", "test", "doc-test"]
[tasks.clippy-fix]
command = "cargo"
args = ["clippy", "--fix", "--allow-dirty"]