From 846c529fd54c8fbb36e9b078df036416035eceb5 Mon Sep 17 00:00:00 2001 From: Chuck Ries Date: Tue, 21 Jun 2022 10:41:04 -0700 Subject: [PATCH 1/2] Contribute breakpoints for the "rust" language Since rust code can be debugged with this extension, contribute breakpoints for the "rust" language such that the workaround of "allow breakpoints in all files" is no longer required. --- Extension/package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Extension/package.json b/Extension/package.json index d807563e0..5ed277654 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -3953,6 +3953,9 @@ }, { "language": "cuda" + }, + { + "language": "rust" } ], "jsonValidation": [ @@ -4582,4 +4585,4 @@ "y18n": "^5.0.5", "minimist": "^1.2.6" } -} \ No newline at end of file +} From 6374efe24e8560e3052c9f524f3ebd2e005dbd8b Mon Sep 17 00:00:00 2001 From: Chuck Ries Date: Tue, 21 Jun 2022 11:00:40 -0700 Subject: [PATCH 2/2] contribute debuggers.languages for rust --- Extension/package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Extension/package.json b/Extension/package.json index 5ed277654..e3157a79d 100644 --- a/Extension/package.json +++ b/Extension/package.json @@ -2871,7 +2871,8 @@ "languages": [ "c", "cpp", - "cuda-cpp" + "cuda-cpp", + "rust" ], "_aiKeyComment": "Ignore 'Property aiKey is not allowed'. See https://github.com/microsoft/vscode/issues/76493", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", @@ -3549,7 +3550,8 @@ "languages": [ "c", "cpp", - "cuda-cpp" + "cuda-cpp", + "rust" ], "_aiKeyComment": "Ignore 'Property aiKey is not allowed'. See https://github.com/microsoft/vscode/issues/76493", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",