Skip to content

Commit 3d82cce

Browse files
general bookkeeping & prep for further work
1 parent 5d1d3cf commit 3d82cce

File tree

7 files changed

+14
-10
lines changed

7 files changed

+14
-10
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"editor.tabSize": 2,
66
"editor.insertSpaces": true,
7-
"editor.renderWhitespace": "boundary",
7+
"editor.renderWhitespace": "none",
88
"editor.rulers": [120],
99
"editor.formatOnSave": false,
1010
"files.encoding": "utf8",

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44

55
# rust-analyzer.vs - Rust language support for Visual Studio 2022
66

7-
> This extension is not affiliated with [rust-lang/rust-analyzer](https://github.com/rust-lang/rust-analyzer/), and just uses rust-analyzer as an LSP server, together with the installed Rust toolchain. For a list of features, please see the [official site and manual](https://rust-analyzer.github.io/manual.html).
7+
> [!IMPORTANT]
8+
> I wrote this extension for my pet Rust projects. Features / fixes implemented as & when I need them. That is the entire scope of the project. But made it free & OSS just in case anyone finds it useful.
9+
> Of late have been getting 'requests' from woke entitled retards (eg [this](https://github.com/kitamstudios/rust-analyzer.vs/issues/56) & [this](https://github.com/user-attachments/assets/185a78cb-d04d-46b7-b68d-745802258597)). If you have similar attitude, don't use this extension.
10+
>
11+
> You can contribute to the project with working code OR pay me to build your fav features. Either ways lose the attitude & quit bitching.
812
913
[![Discord](https://img.shields.io/discord/1060697970426773584?color=5965F2&label=ask%20for%20help)](https://discord.gg/JyK55EsACr) [![CDP](https://github.com/kitamstudios/rust-analyzer.vs/actions/workflows/cdp.yml/badge.svg)](https://github.com/kitamstudios/rust-analyzer.vs/actions/workflows/cdp.yml) [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg?label=license)](https://creativecommons.org/licenses/by-nc-sa/4.0/) [![Release](https://img.shields.io/github/release/kitamstudios/rust-analyzer.vs.svg?label=release)](https://github.com/kitamstudios/rust-analyzer.vs/releases) [![Visual Studio Marketplace Downloads](https://img.shields.io/visual-studio-marketplace/i/kitamstudios.RustAnalyzer?color=A0A22A)](https://marketplace.visualstudio.com/items?itemName=kitamstudios.RustAnalyzer) [![Visual Studio Marketplace Rating](https://img.shields.io/visual-studio-marketplace/r/kitamstudios.RustAnalyzer?color=C0442E)](https://marketplace.visualstudio.com/items?itemName=kitamstudios.RustAnalyzer&ssr=false\#review-details) [![Repo stars](https://img.shields.io/github/stars/kitamstudios/rust-analyzer.vs?label=repo%20stars&style=flat)](https://github.com/kitamstudios/rust-analyzer.vs/stargazers)
1014

src/RustAnalyzer.TestAdapter/Constants.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace KS.RustAnalyzer.TestAdapter;
55

66
public static class Constants
77
{
8-
public const string ReleaseSummary = "Toolchain install / switch & other utilities under Tools > Rust Tools + Rust Toolbar + Build / clean entire workspace + Bug fixes. Please report any issues you face. Consider giving 5⭐ if you find this extension useful.";
8+
public const string ReleaseSummary = "Bug fixes. Consider giving 5⭐ if you find this extension useful.";
99
public const string ReleaseNotesUrl = $"https://github.com/kitamstudios/rust-analyzer.vs/releases/{Vsix.Version}";
1010
public const string DiscordUrl = "https://discord.gg/JyK55EsACr";
1111
public const string TestExperienceDemoUrl = "https://youtu.be/pE1Vr2zVCbg?t=170";
@@ -31,8 +31,8 @@ public static class Constants
3131
public const string TestsContainerExtension = ".rusttests";
3232
public const string TestContainersSearchPattern = $"*{TestsContainerExtension}";
3333

34-
public const string RlsLatestInPackageVersion = "2024-08-27";
35-
public static readonly Version MinimumRequiredVsVersion = new(17, 11);
34+
public const string RlsLatestInPackageVersion = "2024-11-25";
35+
public static readonly Version MinimumRequiredVsVersion = new(17, 12);
3636

3737
public static readonly PathEx TestsContainerExtension2 = (PathEx)TestsContainerExtension;
3838
public static readonly PathEx ManifestFileName2 = (PathEx)ManifestFileName;

src/RustAnalyzer/RustAnalyzer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@
107107
</ItemGroup>
108108
<ItemGroup>
109109
<Content Include="..\external\rust-analyzer.exe">
110-
<Link>2024-08-27\rust-analyzer.exe</Link>
110+
<Link>2024-11-25\rust-analyzer.exe</Link>
111111
<IncludeInVSIX>true</IncludeInVSIX>
112112
</Content>
113113
<Content Include="..\external\rust_analyzer.pdb">
114-
<Link>2024-08-27\rust_analyzer.pdb</Link>
114+
<Link>2024-11-25\rust_analyzer.pdb</Link>
115115
<IncludeInVSIX>true</IncludeInVSIX>
116116
</Content>
117117
<Content Include="languages.pkgdef">

src/RustDevelopmentPack/source.extension.vsixmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<Tags>Rust;Development;Testing;Debugging</Tags>
1616
</Metadata>
1717
<Installation>
18-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0, 18.0)">
18+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.13, 18.0)">
1919
<ProductArchitecture>amd64</ProductArchitecture>
2020
</InstallationTarget>
21-
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.0, 18.0)">
21+
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[17.13, 18.0)">
2222
<ProductArchitecture>amd64</ProductArchitecture>
2323
</InstallationTarget>
24-
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.0, 18.0)">
24+
<InstallationTarget Id="Microsoft.VisualStudio.Enterprise" Version="[17.13, 18.0)">
2525
<ProductArchitecture>amd64</ProductArchitecture>
2626
</InstallationTarget>
2727
</Installation>

src/external/rust-analyzer.exe

1.99 MB
Binary file not shown.

src/external/rust_analyzer.pdb

60 KB
Binary file not shown.

0 commit comments

Comments
 (0)