functional prototype

update docs and structs, add actual logic, now it actually works
This commit is contained in:
askiiart 2024-12-29 16:31:56 -06:00
parent acf4c9e84d
commit df0cf3b93d
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30
10 changed files with 322 additions and 24 deletions

49
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,49 @@
{
// 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 'gregory'",
"cargo": {
"args": [
"build",
"--bin=gregory",
"--package=gregory",
],
"filter": {
"name": "gregory",
"kind": "bin"
}
},
"args": [
"run",
"-c",
"gregory.example.yml"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'gregory'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=gregory",
"--package=gregory"
],
"filter": {
"name": "gregory",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}