-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathossacip-bot.code-workspace
74 lines (74 loc) · 1.56 KB
/
ossacip-bot.code-workspace
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
{
"folders": [
{
"name": "Rust",
"path": "ossacip_rs"
},
{
"name": "Processing",
"path": "Ossacip"
},
{
"name": "Ossacip bot",
"path": "bot"
},
{
"name": "Home",
"path": "."
}
],
"settings": {
"python.pythonPath": "/home/politburo/.pyenv/versions/OssacipBot/bin/python",
"files.exclude": {
"bot/": true,
"Ossacip/": true,
"ossacip_rs/": true
}
},
"launch": {
// https://github.com/vadimcn/vscode-lldb/blob/v1.6.10/MANUAL.md
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Rust: Run Target",
"program": "${fileWorkspaceFolder}/target/release/ossacip_rs",
"args": [],
"cwd": "${fileWorkspaceFolder}"
},
{
"type": "shell",
"name": "Rust: Run Program",
"request": "launch",
"command": "cargo", // Could be any other shell command
"args": ["run", "--release"],
"options": {
"cwd": "${fileWorkspaceFolder}"
}
},
// {
// "type": "lldb",
// "request": "launch",
// "name": "Run Program",
// "cargo": {
// "args": ["test", "--no-run", "--lib"], // Cargo command line to build the debug target
// // "args": ["build", "--bin=foo"] is another possibility
// "filter": {
// // Filter applied to compilation artifacts (optional)
// "name": "mylib",
// "kind": "lib"
// }
// }
// },
{
"group": "Python",
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
}