Skip to content

Commit ba1a549

Browse files
chore(vscode): add tasks.json (#5)
Signed-off-by: scepter914 <scepter914@gmail.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent fca3bf5 commit ba1a549

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "cargo install (local)",
6+
"type": "shell",
7+
"command": "cargo",
8+
"args": [
9+
"install",
10+
"--path",
11+
"."
12+
],
13+
"options": {
14+
"cwd": "${workspaceFolder}"
15+
},
16+
"problemMatcher": [
17+
"$rustc"
18+
],
19+
"group": {
20+
"kind": "build",
21+
"isDefault": true
22+
}
23+
}
24+
]
25+
}

src/bin/ml-cellar.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
// TODO: implement CLI logic
3+
}

0 commit comments

Comments
 (0)