-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrecipes.json
73 lines (73 loc) · 1.85 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
{
"check": {
"cmd": "cargo check --all-targets --all-features --workspace"
},
"run demo": {
"cmd": "cargo run --package violet-demo"
},
"run demo release": {
"cmd": "cargo run --package violet-demo --release"
},
"run basic": {
"cmd": "cargo run --package violet --example basic"
},
"debug basic": {
"cmd": "cargo build --package violet --example basic",
"components": {
"dap": {
"program": "./target/debug/examples/basic",
"adapter": "rust"
}
},
"env": {
"RUST_BACKTRACE": "1",
"RUST_LOG": "violet=debug,wgpu=warn,info"
}
},
"debug flow": {
"cmd": "cargo build --example flow",
"components": {
"dap": {
"program": "./target/debug/examples/flow",
"adapter": "rust"
}
},
"env": {
"RUST_BACKTRACE": "1",
"RUST_LOG": "violet=debug,wgpu=warn,info"
}
},
"test-miri": {
"cmd": [
"cargo",
"+nightly",
"miri",
"test"
]
},
"test": {
"cmd": [
"cargo",
"nextest",
"run",
"--all-features",
"--workspace"
]
},
"build web": {
"cmd": "wasm-pack build --target web --dev --out-dir ./public/pkg",
"cwd": "./violet-demo/"
},
"build web profile": {
"cmd": "wasm-pack build --target web --profiling --out-dir ./public/pkg",
"cwd": "./violet-demo/"
},
"build web release": {
"cmd": "wasm-pack build --target web --out-dir ./public/pkg",
"cwd": "./violet-demo/"
},
"host": {
"cmd": "python3 -m http.server 8080",
"cwd": "./violet-demo/public"
}
}