fix: rename package to advent_of_code (#13)
`aoc` shadowed the `aoc-cli` binary which could lead to issues. closes #12
This commit is contained in:
18
.vscode/launch.json
vendored
18
.vscode/launch.json
vendored
@@ -7,11 +7,11 @@
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in executable 'aoc'",
|
||||
"name": "Debug unit tests in executable 'advent_of_code'",
|
||||
"cargo": {
|
||||
"args": ["test", "--no-run", "--bin=aoc", "--package=aoc"],
|
||||
"args": ["test", "--no-run", "--bin=advent_of_code", "--package=advent_of_code"],
|
||||
"filter": {
|
||||
"name": "aoc",
|
||||
"name": "advent_of_code",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
@@ -21,11 +21,11 @@
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug executable 'aoc'",
|
||||
"name": "Debug executable 'advent_of_code'",
|
||||
"cargo": {
|
||||
"args": ["build", "--bin=aoc", "--package=aoc"],
|
||||
"args": ["build", "--bin=advent_of_code", "--package=advent_of_code"],
|
||||
"filter": {
|
||||
"name": "aoc",
|
||||
"name": "advent_of_code",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
@@ -35,11 +35,11 @@
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in library 'aoc'",
|
||||
"name": "Debug unit tests in library 'advent_of_code'",
|
||||
"cargo": {
|
||||
"args": ["test", "--no-run", "--lib", "--package=aoc"],
|
||||
"args": ["test", "--no-run", "--lib", "--package=advent_of_code"],
|
||||
"filter": {
|
||||
"name": "aoc",
|
||||
"name": "advent_of_code",
|
||||
"kind": "lib"
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user