Reformat with cargo fmt

This commit is contained in:
fdenef 2022-11-18 11:17:56 +01:00
commit fbf3d3815c
4 changed files with 103 additions and 75 deletions

17
.fleet/run.json Normal file
View file

@ -0,0 +1,17 @@
{
"configurations": [
{
"type": "cargo",
"name": "Run Release",
"workingDir": ".",
"cargoArgs": ["run", "--release"],
},
{
"type": "cargo",
"name": "Build Release",
"cargoArgs": ["build", "--release"],
},
]
}