Initial commit

This commit is contained in:
Guilleag01
2023-08-06 17:40:50 +02:00
commit cd6624be37
42 changed files with 796 additions and 0 deletions

3
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,3 @@
{
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"]
}

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"emmet.includeLanguages": {
"rust": "html"
}
}

17
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"tasks": [
{
"label": "cargo tauri dev",
"type": "shell",
"command": "cargo", // note: full path to the cargo
"args": [
"tauri",
"dev"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}