Skip to content

Commit

Permalink
2022_07: rust solution(part 1)
Browse files Browse the repository at this point in the history
  • Loading branch information
MellKam committed Dec 9, 2022
1 parent a4a527b commit f76c1b0
Show file tree
Hide file tree
Showing 10 changed files with 1,297 additions and 135 deletions.
144 changes: 10 additions & 134 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,7 @@
"request": "launch",
"name": "Debug executable 'rust_2022_01'",
"cargo": {
"args": [
"build",
"--bin=rust_2022_01",
"--package=rust_2022_01"
],
"filter": {
"name": "rust_2022_01",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust_2022_01'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust_2022_01",
"--package=rust_2022_01"
],
"args": ["build", "--bin=rust_2022_01", "--package=rust_2022_01"],
"filter": {
"name": "rust_2022_01",
"kind": "bin"
Expand All @@ -46,30 +23,7 @@
"request": "launch",
"name": "Debug executable 'rust_2022_02'",
"cargo": {
"args": [
"build",
"--bin=rust_2022_02",
"--package=rust_2022_02"
],
"filter": {
"name": "rust_2022_02",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust_2022_02'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust_2022_02",
"--package=rust_2022_02"
],
"args": ["build", "--bin=rust_2022_02", "--package=rust_2022_02"],
"filter": {
"name": "rust_2022_02",
"kind": "bin"
Expand All @@ -83,30 +37,7 @@
"request": "launch",
"name": "Debug executable 'rust_2022_03'",
"cargo": {
"args": [
"build",
"--bin=rust_2022_03",
"--package=rust_2022_03"
],
"filter": {
"name": "rust_2022_03",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust_2022_03'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust_2022_03",
"--package=rust_2022_03"
],
"args": ["build", "--bin=rust_2022_03", "--package=rust_2022_03"],
"filter": {
"name": "rust_2022_03",
"kind": "bin"
Expand All @@ -120,30 +51,7 @@
"request": "launch",
"name": "Debug executable 'rust_2022_04'",
"cargo": {
"args": [
"build",
"--bin=rust_2022_04",
"--package=rust_2022_04"
],
"filter": {
"name": "rust_2022_04",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust_2022_04'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust_2022_04",
"--package=rust_2022_04"
],
"args": ["build", "--bin=rust_2022_04", "--package=rust_2022_04"],
"filter": {
"name": "rust_2022_04",
"kind": "bin"
Expand All @@ -157,30 +65,7 @@
"request": "launch",
"name": "Debug executable 'rust_2022_05'",
"cargo": {
"args": [
"build",
"--bin=rust_2022_05",
"--package=rust_2022_05"
],
"filter": {
"name": "rust_2022_05",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust_2022_05'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust_2022_05",
"--package=rust_2022_05"
],
"args": ["build", "--bin=rust_2022_05", "--package=rust_2022_05"],
"filter": {
"name": "rust_2022_05",
"kind": "bin"
Expand All @@ -194,11 +79,7 @@
"request": "launch",
"name": "Debug executable 'rust_2022_06'",
"cargo": {
"args": [
"build",
"--bin=rust_2022_06",
"--package=rust_2022_06"
],
"args": ["build", "--bin=rust_2022_06", "--package=rust_2022_06"],
"filter": {
"name": "rust_2022_06",
"kind": "bin"
Expand All @@ -210,21 +91,16 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'rust_2022_06'",
"name": "Debug executable 'rust_2022_07'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=rust_2022_06",
"--package=rust_2022_06"
],
"args": ["build", "--bin=rust_2022_07", "--package=rust_2022_07"],
"filter": {
"name": "rust_2022_06",
"name": "rust_2022_07",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
}
Loading

0 comments on commit f76c1b0

Please sign in to comment.