first commit

This commit is contained in:
Elaina Claus
2023-02-28 22:17:21 -05:00
commit 42e43c107c
11 changed files with 2874 additions and 0 deletions

45
.vscode/launch.json vendored Executable file
View File

@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rfile'",
"cargo": {
"args": [
"build",
"--bin=rfile",
"--package=rfile"
],
"filter": {
"name": "rfile",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}/target/debug/"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rfile'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rfile",
"--package=rfile"
],
"filter": {
"name": "rfile",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}