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:
Felix Spöttel
2022-11-29 20:17:00 +01:00
committed by GitHub
parent 9bc635a056
commit d0b923f727
8 changed files with 22 additions and 22 deletions

18
.vscode/launch.json vendored
View File

@@ -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"
}
},