diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..660f195 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +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 'oxker'", + "cargo": { + "args": [ + "build", + "--bin=oxker", + "--package=oxker" + ], + "filter": { + "name": "oxker", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in executable 'oxker'", + "cargo": { + "args": [ + "test", + "--no-run", + "--bin=oxker", + "--package=oxker" + ], + "filter": { + "name": "oxker", + "kind": "bin" + } + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 3e5be83..0f0a62d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/mrjackwills/oxker" homepage = "https://github.com/mrjackwills/oxker" license = "MIT" readme = "README.md" -keywords = ["docker", "tui", "tui-rs", "tokio"] +keywords = ["docker", "tui", "tui-rs", "tokio", "terminal", "podman", "container"] categories = ["command-line-utilities"] [dependencies]