We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fca3bf5 commit ba1a549Copy full SHA for ba1a549
2 files changed
.vscode/tasks.json
@@ -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
@@ -0,0 +1,3 @@
+fn main() {
+ // TODO: implement CLI logic
0 commit comments