Skip to content

Commit

Permalink
remove migrations env variable, update deps (#63)
Browse files Browse the repository at this point in the history
* prettier, update deps, fix

* remove migrations env variable
  • Loading branch information
wiiznokes authored Jul 24, 2024
1 parent 7f7fd67 commit 5bdf107
Show file tree
Hide file tree
Showing 6 changed files with 158 additions and 154 deletions.
86 changes: 43 additions & 43 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
// 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 'cosmic-ext-applet-clipboard-manager'",
"cargo": {
"args": [
"build",
"--bin=cosmic-ext-applet-clipboard-manager",
"--package=cosmic-ext-applet-clipboard-manager"
],
"filter": {
"name": "cosmic-ext-applet-clipboard-manager",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'cosmic-ext-applet-clipboard-manager'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=cosmic-ext-applet-clipboard-manager",
"--package=cosmic-ext-applet-clipboard-manager"
],
"filter": {
"name": "cosmic-ext-applet-clipboard-manager",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
// 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 'cosmic-ext-applet-clipboard-manager'",
"cargo": {
"args": [
"build",
"--bin=cosmic-ext-applet-clipboard-manager",
"--package=cosmic-ext-applet-clipboard-manager"
],
"filter": {
"name": "cosmic-ext-applet-clipboard-manager",
"kind": "bin"
}
]
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'cosmic-ext-applet-clipboard-manager'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=cosmic-ext-applet-clipboard-manager",
"--package=cosmic-ext-applet-clipboard-manager"
],
"filter": {
"name": "cosmic-ext-applet-clipboard-manager",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"rust-analyzer.checkOnSave": true
}
"rust-analyzer.checkOnSave": true
}
Loading

0 comments on commit 5bdf107

Please sign in to comment.