From dd2d82d114537e09dbeb12f360157f0e68e7846e Mon Sep 17 00:00:00 2001 From: Jack Wills <32690432+mrjackwills@users.noreply.github.com> Date: Thu, 28 Jul 2022 17:18:00 +0000 Subject: [PATCH] fix: toml keywords --- .vscode/launch.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 46 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json 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]