Skip to content

Commit

Permalink
fix rename bin name
Browse files Browse the repository at this point in the history
  • Loading branch information
l-y committed Aug 29, 2022
1 parent 44312e9 commit eb7993f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'stock_tracker'",
"name": "Debug executable 'stock-tracker'",
"cargo": {
"args": [
"build",
"--bin=stock_tracker",
"--package=stock_tracker"
"--bin=stock-tracker",
"--package=stock-tracker"
],
"filter": {
"name": "stock_tracker",
"name": "stock-tracker",
"kind": "bin"
}
},
Expand All @@ -25,16 +25,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'stock_tracker'",
"name": "Debug unit tests in executable 'stock-tracker'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=stock_tracker",
"--package=stock_tracker"
"--bin=stock-tracker",
"--package=stock-tracker"
],
"filter": {
"name": "stock_tracker",
"name": "stock-tracker",
"kind": "bin"
}
},
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "stock_tracker"
name = "stock-tracker"
version = "0.1.0"
edition = "2021"

Expand Down

0 comments on commit eb7993f

Please sign in to comment.