Skip to content

Commit b473377

Browse files
authored
remove ssl from debugger configs (#6644)
1 parent bdd036e commit b473377

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

.vscode/launch.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,6 @@
1616
},
1717
"cwd": "${workspaceFolder}"
1818
},
19-
{
20-
"type": "lldb",
21-
"request": "launch",
22-
"name": "Debug executable 'rustpython' without SSL",
23-
"preLaunchTask": "Build RustPython Debug without SSL",
24-
"program": "target/debug/rustpython",
25-
"args": [],
26-
"env": {
27-
"RUST_BACKTRACE": "1"
28-
},
29-
"cwd": "${workspaceFolder}"
30-
},
3119
{
3220
"type": "lldb",
3321
"request": "launch",

.vscode/tasks.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,12 @@
11
{
22
"version": "2.0.0",
33
"tasks": [
4-
{
5-
"label": "Build RustPython Debug without SSL",
6-
"type": "shell",
7-
"command": "cargo",
8-
"args": [
9-
"build",
10-
],
11-
"problemMatcher": [
12-
"$rustc",
13-
],
14-
"group": {
15-
"kind": "build",
16-
"isDefault": true,
17-
},
18-
},
194
{
205
"label": "Build RustPython Debug",
216
"type": "shell",
227
"command": "cargo",
238
"args": [
249
"build",
25-
"--features=ssl"
2610
],
2711
"problemMatcher": [
2812
"$rustc",

0 commit comments

Comments
 (0)