commit 6e6d914621b75ad2ead74c8b380c361ec1910e5c Author: OMGeeky <39029799+OMGeeky@users.noreply.github.com> Date: Fri Dec 15 13:44:55 2023 +0000 first commit diff --git a/.devcontainer/.devcontainer.json b/.devcontainer/.devcontainer.json new file mode 100644 index 0000000..5732b4c --- /dev/null +++ b/.devcontainer/.devcontainer.json @@ -0,0 +1,21 @@ +{ + "name": "Rust", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/rust:bullseye", + "features": { + "ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "rust-lang.rust-analyzer", + "GitHub.copilot-chat", + "tamasfe.even-better-toml", + "GitHub.copilot-labs", + "GitHub.copilot", + "yzhang.markdown-all-in-one", + "alexcvzz.vscode-sqlite" + ] + } + } +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b2d6c39 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,32 @@ +{ + "version": "0.2.0" + ,"configurations": [ + { + "type": "lldb", + "request": "launch", + "name": "Debug unit tests in lib", + "cargo": { + "args":[ + "test", + "--no-run", + "--lib" + ] + }, + "args": [], + "cwd": "${workspaceFolder}" + }, + { + "type": "lldb", + "request": "launch", + "name": "Debug executable", + "cargo": { + "args":[ + "build", + "--bin" + ] + }, + "args": [], + "cwd": "${workspaceFolder}" + } + ] +} \ No newline at end of file