feat(teipe): initial commit

This commit is contained in:
2024-08-18 17:43:59 +02:00
commit 7f2dac5a61
30 changed files with 3390 additions and 0 deletions

24
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "codelldb",
"request": "launch",
"name": "Debug teipe",
"program": "target/debug/teipe",
"cargo": {
"args": [
"build",
"--bin=teipe",
"--package=teipe"
],
"filter": {
"name": "teipe",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}