1
0
Fork 0

[TUTORIEL4] Buffers finish

This commit is contained in:
Florian RICHER 2022-06-09 22:49:49 +02:00
parent e9c4e9e681
commit 460dbc5a77
8 changed files with 2019 additions and 1827 deletions

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

@ -0,0 +1,45 @@
{
// Utilisez IntelliSense pour en savoir plus sur les attributs possibles.
// Pointez pour afficher la description des attributs existants.
// Pour plus d'informations, visitez : https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tuto1'",
"cargo": {
"args": [
"build",
"--bin=tuto1",
"--package=tuto1"
],
"filter": {
"name": "tuto1",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tuto1'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tuto1",
"--package=tuto1"
],
"filter": {
"name": "tuto1",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}