-
Notifications
You must be signed in to change notification settings - Fork 5
/
recipes.json
97 lines (97 loc) · 2.29 KB
/
recipes.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"asteroids": {
"cmd": "cargo run -p asteroids"
},
"deploy-asteroids": {
"cmd": "./scripts/build_asteroids.sh"
},
"check": {
"cmd": "cargo check --all-features --tests --examples"
},
"test-all": {
"cmd": "",
"depends_on": [
"test",
"doc",
"test-nostd"
]
},
"test": {
"cmd": "cargo nextest run -j 1 --all-features",
"kind": "term"
},
"test-miri": {
"cmd": "cargo +nightly miri nextest run -j 8 --no-default-features --features std,serde,flume,derive"
},
"doc": {
"cmd": "cargo doc --all-features --open"
},
"test-nostd": {
"cmd": "cargo nextest run --no-default-features",
"kind": "term"
},
"build": {
"cmd": "cargo build --examples"
},
"mdbook-build": {
"cmd": "mdbook build",
"kind": "term",
"cwd": "guide"
},
"mdbook-serve": {
"cmd": "mdbook serve --open",
"cwd": "guide"
},
"example-guide": {
"cmd": "cargo run --example guide",
"kind": "term",
"keep_open": true
},
"example-query": {
"cmd": "cargo run --example query",
"opts": {
"auto_close": false
},
"kind": "term"
},
"example-builder": {
"cmd": "cargo run --example builder",
"opts": {
"auto_close": false
},
"kind": "term"
},
"example-query-advanced": {
"cmd": "cargo run --example query_advanced",
"opts": {
"auto_close": false
},
"kind": "term"
},
"debug-query-advanced": {
"cmd": "cargo build --example query_advanced",
"kind": "dap",
"components": {
"dap": {
"program": "./target/debug/examples/query_advanced",
"adapter": "rust"
}
}
},
"example-relations": {
"cmd": "cargo run --example relations",
"opts": {
"auto_close": false
},
"kind": "term"
},
"debug-relations": {
"cmd": "./target/debug/examples/relations",
"kind": "dap",
"depends_on": [
{
"cmd": "cargo build --example relations"
}
]
}
}