rustfolio 1.0.0

A simple tool for monitoring an investment portfolio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "configurations": {
    "show": {
      "adapter": "CodeLLDB",
      "configuration": {
        "request": "launch",
        "program": "${workspaceRoot}/target/debug/rustfolio"
      }
    },
	"test": {
      "adapter": "CodeLLDB",
      "configuration": {
        "request": "launch",
        "program": ["cargo", "test"]
      }
	}
  }
}