Compare commits

..

2 Commits

Author SHA1 Message Date
3ba2eadf3e ignores 2025-08-17 15:58:09 +01:00
184fb9eda3 0.2.4: fix length defines 2025-08-17 15:52:13 +01:00
2 changed files with 3 additions and 36 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
# Cargo
target/
# Slop
.vscode/

36
.vscode/launch.json vendored
View File

@ -1,36 +0,0 @@
{
// 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 'bin2hpp'",
"cargo": {
"args": ["build", "--bin=bin2hpp", "--package=bin2hpp"],
"filter": {
"name": "bin2hpp",
"kind": "bin"
}
},
"args": ["-i", "/home/adam/my_library.dll"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'bin2hpp'",
"cargo": {
"args": ["test", "--no-run", "--bin=bin2hpp", "--package=bin2hpp"],
"filter": {
"name": "bin2hpp",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}