Skip to content

Commit abbbfdc

Browse files
authored
feat: POC implementation (#1)
1 parent 6f5259a commit abbbfdc

13 files changed

Lines changed: 940 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target/

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "lldb",
6+
"request": "launch",
7+
"name": "Debug",
8+
"program": "${workspaceFolder}/target/debug/whip-analyzer",
9+
"preLaunchTask": "build:whip-analyzer",
10+
"args": [
11+
"--path",
12+
"TODO: insert the path to your collection in here"
13+
]
14+
}
15+
]
16+
}

.vscode/tasks.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "shell",
6+
"label": "build:whip-analyzer",
7+
"command": "cargo",
8+
"args": [
9+
"build"
10+
],
11+
"options": {
12+
"cwd": "${workspaceFolder}/src"
13+
}
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)