evar 0.2.0

Modern ergonomic math calculator inspired by eva
{
  // 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 unit tests in library 'seva'",
      "cargo": {
        "args": ["test", "--no-run", "--lib", "--package=seva"],
        "filter": {
          "name": "seva",
          "kind": "lib"
        }
      },
      "args": [],
      "cwd": "${workspaceFolder}"
    },
    {
      "type": "lldb",
      "request": "launch",
      "name": "Debug executable 'seva'",
      "cargo": {
        "args": ["build", "--bin=seva", "--package=seva"],
        "filter": {
          "name": "seva",
          "kind": "bin"
        }
      },
      "args": [],
      "cwd": "${workspaceFolder}"
    },
    {
      "type": "lldb",
      "request": "launch",
      "name": "Debug unit tests in executable 'seva'",
      "cargo": {
        "args": ["test", "--no-run", "--bin=seva", "--package=seva"],
        "filter": {
          "name": "seva",
          "kind": "bin"
        }
      },
      "args": [],
      "cwd": "${workspaceFolder}"
    }
  ]
}