Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

53,940

Downloads of v 2020.9.17-nightly:

130

Last Update:

18 Sep 2020

Package Maintainer(s):

Software Author(s):

  • Ferrous Systems

Tags:

rust programming language server protocol code analyzer linter ide rls

Rust Analyzer (Portable)

This is a prerelease version of Rust Analyzer (Portable).

  • 1
  • 2
  • 3

2020.9.17-nightly | Updated: 18 Sep 2020

Downloads:

53,940

Downloads of v 2020.9.17-nightly:

130

Maintainer(s):

Software Author(s):

  • Ferrous Systems

Rust Analyzer (Portable) 2020.9.17-nightly

This is a prerelease version of Rust Analyzer (Portable).

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Failed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Rust Analyzer (Portable), run the following command from the command line or from PowerShell:

>

To upgrade Rust Analyzer (Portable), run the following command from the command line or from PowerShell:

>

To uninstall Rust Analyzer (Portable), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade rust-analyzer -y --source="'INTERNAL REPO URL'" --version="'2020.9.17-nightly'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade rust-analyzer -y --source="'INTERNAL REPO URL'" --version="'2020.9.17-nightly'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install rust-analyzer
  win_chocolatey:
    name: rust-analyzer
    version: '2020.9.17-nightly'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'rust-analyzer' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2020.9.17-nightly'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller rust-analyzer
{
    Name        = "rust-analyzer"
    Version     = "2020.9.17-nightly"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'rust-analyzer':
  ensure          => '2020.9.17-nightly',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

rust-analyzer is an experimental modular compiler frontend for the Rust language. It is a part of a larger rls-2.0 effort to create excellent IDE support for Rust.


legal\LICENSE.txt
MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

-----------------------------------------------------------------------

                              Apache License
                        Version 2.0, January 2004
                     http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

   "License" shall mean the terms and conditions for use, reproduction,
   and distribution as defined by Sections 1 through 9 of this document.

   "Licensor" shall mean the copyright owner or entity authorized by
   the copyright owner that is granting the License.

   "Legal Entity" shall mean the union of the acting entity and all
   other entities that control, are controlled by, or are under common
   control with that entity. For the purposes of this definition,
   "control" means (i) the power, direct or indirect, to cause the
   direction or management of such entity, whether by contract or
   otherwise, or (ii) ownership of fifty percent (50%) or more of the
   outstanding shares, or (iii) beneficial ownership of such entity.

   "You" (or "Your") shall mean an individual or Legal Entity
   exercising permissions granted by this License.

   "Source" form shall mean the preferred form for making modifications,
   including but not limited to software source code, documentation
   source, and configuration files.

   "Object" form shall mean any form resulting from mechanical
   transformation or translation of a Source form, including but
   not limited to compiled object code, generated documentation,
   and conversions to other media types.

   "Work" shall mean the work of authorship, whether in Source or
   Object form, made available under the License, as indicated by a
   copyright notice that is included in or attached to the work
   (an example is provided in the Appendix below).

   "Derivative Works" shall mean any work, whether in Source or Object
   form, that is based on (or derived from) the Work and for which the
   editorial revisions, annotations, elaborations, or other modifications
   represent, as a whole, an original work of authorship. For the purposes
   of this License, Derivative Works shall not include works that remain
   separable from, or merely link (or bind by name) to the interfaces of,
   the Work and Derivative Works thereof.

   "Contribution" shall mean any work of authorship, including
   the original version of the Work and any modifications or additions
   to that Work or Derivative Works thereof, that is intentionally
   submitted to Licensor for inclusion in the Work by the copyright owner
   or by an individual or Legal Entity authorized to submit on behalf of
   the copyright owner. For the purposes of this definition, "submitted"
   means any form of electronic, verbal, or written communication sent
   to the Licensor or its representatives, including but not limited to
   communication on electronic mailing lists, source code control systems,
   and issue tracking systems that are managed by, or on behalf of, the
   Licensor for the purpose of discussing and improving the Work, but
   excluding communication that is conspicuously marked or otherwise
   designated in writing by the copyright owner as "Not a Contribution."

   "Contributor" shall mean Licensor and any individual or Legal Entity
   on behalf of whom a Contribution has been received by Licensor and
   subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of
   this License, each Contributor hereby grants to You a perpetual,
   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   copyright license to reproduce, prepare Derivative Works of,
   publicly display, publicly perform, sublicense, and distribute the
   Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of
   this License, each Contributor hereby grants to You a perpetual,
   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
   (except as stated in this section) patent license to make, have made,
   use, offer to sell, sell, import, and otherwise transfer the Work,
   where such license applies only to those patent claims licensable
   by such Contributor that are necessarily infringed by their
   Contribution(s) alone or by combination of their Contribution(s)
   with the Work to which such Contribution(s) was submitted. If You
   institute patent litigation against any entity (including a
   cross-claim or counterclaim in a lawsuit) alleging that the Work
   or a Contribution incorporated within the Work constitutes direct
   or contributory patent infringement, then any patent licenses
   granted to You under this License for that Work shall terminate
   as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the
   Work or Derivative Works thereof in any medium, with or without
   modifications, and in Source or Object form, provided that You
   meet the following conditions:

   (a) You must give any other recipients of the Work or
       Derivative Works a copy of this License; and

   (b) You must cause any modified files to carry prominent notices
       stating that You changed the files; and

   (c) You must retain, in the Source form of any Derivative Works
       that You distribute, all copyright, patent, trademark, and
       attribution notices from the Source form of the Work,
       excluding those notices that do not pertain to any part of
       the Derivative Works; and

   (d) If the Work includes a "NOTICE" text file as part of its
       distribution, then any Derivative Works that You distribute must
       include a readable copy of the attribution notices contained
       within such NOTICE file, excluding those notices that do not
       pertain to any part of the Derivative Works, in at least one
       of the following places: within a NOTICE text file distributed
       as part of the Derivative Works; within the Source form or
       documentation, if provided along with the Derivative Works; or,
       within a display generated by the Derivative Works, if and
       wherever such third-party notices normally appear. The contents
       of the NOTICE file are for informational purposes only and
       do not modify the License. You may add Your own attribution
       notices within Derivative Works that You distribute, alongside
       or as an addendum to the NOTICE text from the Work, provided
       that such additional attribution notices cannot be construed
       as modifying the License.

   You may add Your own copyright statement to Your modifications and
   may provide additional or different license terms and conditions
   for use, reproduction, or distribution of Your modifications, or
   for any such Derivative Works as a whole, provided Your use,
   reproduction, and distribution of the Work otherwise complies with
   the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade
   names, trademarks, service marks, or product names of the Licensor,
   except as required for reasonable and customary use in describing the
   origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or
   agreed to in writing, Licensor provides the Work (and each
   Contributor provides its Contributions) on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
   implied, including, without limitation, any warranties or conditions
   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
   PARTICULAR PURPOSE. You are solely responsible for determining the
   appropriateness of using or redistributing the Work and assume any
   risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory,
   whether in tort (including negligence), contract, or otherwise,
   unless required by applicable law (such as deliberate and grossly
   negligent acts) or agreed to in writing, shall any Contributor be
   liable to You for damages, including any direct, indirect, special,
   incidental, or consequential damages of any character arising as a
   result of this License or out of the use or inability to use the
   Work (including but not limited to damages for loss of goodwill,
   work stoppage, computer failure or malfunction, or any and all
   other commercial damages or losses), even if such Contributor
   has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing
   the Work or Derivative Works thereof, You may choose to offer,
   and charge a fee for, acceptance of support, warranty, indemnity,
   or other liability obligations and/or rights consistent with this
   License. However, in accepting such obligations, You may act only
   on Your own behalf and on Your sole responsibility, not on behalf
   of any other Contributor, and only if You agree to indemnify,
   defend, and hold each Contributor harmless for any liability
   incurred by, or claims asserted against, such Contributor by reason
   of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

   To apply the Apache License to your work, attach the following
   boilerplate notice, with the fields enclosed by brackets "[]"
   replaced with your own identifying information. (Don't include
   the brackets!)  The text should be enclosed in the appropriate
   comment syntax for the file format. We also recommend that a
   file or class name and description of purpose be included on the
   same "printed page" as the copyright notice for easier
   identification within third-party archives.

Copyright [yyyy] [name of copyright owner]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

	http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Package can be verified like this:

1. Go to https://github.com/rust-analyzer/rust-analyzer, enter to releases and download from there.

   x64: https://github.com/rust-analyzer/rust-analyzer/releases/download/nightly/rust-analyzer-windows.exe

   to download the zip files. You may wish to rename one of the files.

2. You can use one of the following methods to obtain the SHA512 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum64: 33ba2e6f5ee9c5513e96786f2a19df0e1bdffaf9b2149eb99e40a3f9aa5860271617c2b204253b11d06185fde26d6d006fd6936e161e529b702869af2b21cba7

File 'LICENSE.txt' obtained from:
   https://github.com/rust-analyzer/rust-analyzer/blob/nightly/LICENSE-MIT
and
	https://github.com/rust-analyzer/rust-analyzer/blob/nightly/LICENSE-APACHE
tools\rust-analyzer.exe
md5: 174AC0CF352B1AB538DC56E8EE9A74F1 | sha1: 806AB5807726139839C6931D86CC55AFFF8FCB8F | sha256: 9334E3BC0F40B761CC8A516E5C45F270BF8F1717A658E695EF3B0E132F5E98BA | sha512: 33BA2E6F5EE9C5513E96786F2A19DF0E1BDFFAF9B2149EB99E40A3F9AA5860271617C2B204253B11D06185FDE26D6D006FD6936E161E529B702869AF2B21CBA7

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Rust Analyzer (Portable) 2024.3.27-nightly 5 Wednesday, March 27, 2024 Approved
Rust Analyzer (Portable) 2024.3.25-nightly 7 Monday, March 25, 2024 Approved
Rust Analyzer (Portable) 2024.3.21-nightly 11 Thursday, March 21, 2024 Approved
Rust Analyzer (Portable) 2024.3.18 69 Wednesday, March 20, 2024 Approved
Rust Analyzer (Portable) 2024.3.18-nightly 7 Wednesday, March 20, 2024 Approved
Rust Analyzer (Portable) 2024.3.16-nightly 12 Tuesday, March 19, 2024 Approved
Rust Analyzer (Portable) 2024.3.14-nightly 11 Monday, March 18, 2024 Approved
Rust Analyzer (Portable) 2024.3.11 52 Saturday, March 16, 2024 Approved
Rust Analyzer (Portable) 2024.3.11-nightly 10 Saturday, March 16, 2024 Approved
Rust Analyzer (Portable) 2024.3.7-nightly 12 Thursday, March 14, 2024 Approved
Rust Analyzer (Portable) 2024.3.4 39 Thursday, March 14, 2024 Approved
Rust Analyzer (Portable) 2024.3.1-nightly 17 Friday, March 1, 2024 Approved
Rust Analyzer (Portable) 2024.2.26 38 Monday, March 11, 2024 Approved
Rust Analyzer (Portable) 2024.2.19 60 Thursday, March 7, 2024 Approved
Rust Analyzer (Portable) 2024.2.12 48 Friday, March 1, 2024 Approved
Rust Analyzer (Portable) 2024.2.8-nightly 18 Friday, February 9, 2024 Approved
Rust Analyzer (Portable) 2024.2.5 97 Wednesday, February 14, 2024 Approved
Rust Analyzer (Portable) 2024.2.5-nightly 15 Thursday, February 8, 2024 Approved
Rust Analyzer (Portable) 2024.1.29 65 Friday, February 9, 2024 Approved
Rust Analyzer (Portable) 2024.1.22 37 Thursday, February 8, 2024 Approved
Rust Analyzer (Portable) 2024.1.15 46 Monday, February 5, 2024 Approved
Rust Analyzer (Portable) 2024.1.8 11 Thursday, February 8, 2024 Approved
Rust Analyzer (Portable) 2024.1.8-nightly 30 Monday, February 5, 2024 Approved
Rust Analyzer (Portable) 2024.1.6-nightly 20 Thursday, January 11, 2024 Approved
Rust Analyzer (Portable) 2024.1.2-nightly 16 Tuesday, January 9, 2024 Approved
Rust Analyzer (Portable) 2024.1.1 118 Thursday, January 11, 2024 Approved
Rust Analyzer (Portable) 2023.12.25 50 Tuesday, January 9, 2024 Approved
Rust Analyzer (Portable) 2023.12.18 76 Tuesday, January 2, 2024 Approved
Rust Analyzer (Portable) 2023.12.17-nightly 13 Tuesday, January 2, 2024 Approved
Rust Analyzer (Portable) 2023.12.14-nightly 20 Tuesday, December 19, 2023 Approved
Rust Analyzer (Portable) 2023.12.11 82 Tuesday, December 19, 2023 Approved
Rust Analyzer (Portable) 2023.12.6-nightly 15 Sunday, January 7, 2024 Approved
Rust Analyzer (Portable) 2023.12.4 14 Sunday, January 7, 2024 Approved
Rust Analyzer (Portable) 2023.11.29-nightly 17 Sunday, December 17, 2023 Approved
Rust Analyzer (Portable) 2023.11.27 39 Sunday, December 17, 2023 Approved
Rust Analyzer (Portable) 2023.11.25-nightly 20 Thursday, December 14, 2023 Approved
Rust Analyzer (Portable) 2023.11.20 44 Thursday, December 14, 2023 Approved
Rust Analyzer (Portable) 2023.11.18-nightly 23 Saturday, November 25, 2023 Approved
Rust Analyzer (Portable) 2023.11.13 98 Saturday, November 25, 2023 Approved
Rust Analyzer (Portable) 2023.11.11-nightly 21 Saturday, November 11, 2023 Approved
Rust Analyzer (Portable) 2023.11.10-nightly 23 Friday, November 10, 2023 Approved
Rust Analyzer (Portable) 2023.11.6 93 Friday, November 10, 2023 Approved
Rust Analyzer (Portable) 2023.11.5-nightly 21 Tuesday, November 7, 2023 Approved
Rust Analyzer (Portable) 2023.11.4-nightly 32 Monday, November 6, 2023 Approved
Rust Analyzer (Portable) 2023.11.1-nightly 27 Sunday, November 5, 2023 Approved
Rust Analyzer (Portable) 2023.10.31-nightly 23 Saturday, November 4, 2023 Approved
Rust Analyzer (Portable) 2023.10.30 65 Saturday, November 4, 2023 Approved
Rust Analyzer (Portable) 2023.10.23 76 Tuesday, October 31, 2023 Approved
Rust Analyzer (Portable) 2023.10.23-nightly 18 Tuesday, October 31, 2023 Approved
Rust Analyzer (Portable) 2023.10.21-nightly 323 Monday, October 23, 2023 Approved
Rust Analyzer (Portable) 2023.10.20-nightly 20 Saturday, October 21, 2023 Approved
Rust Analyzer (Portable) 2023.10.16 72 Monday, October 23, 2023 Approved
Rust Analyzer (Portable) 2023.10.13-nightly 26 Friday, October 20, 2023 Approved
Rust Analyzer (Portable) 2023.10.11-nightly 21 Wednesday, October 11, 2023 Approved
Rust Analyzer (Portable) 2023.10.9 98 Wednesday, October 11, 2023 Approved
Rust Analyzer (Portable) 2023.10.3-nightly 27 Tuesday, October 3, 2023 Approved
Rust Analyzer (Portable) 2023.10.2 79 Tuesday, October 3, 2023 Approved
Rust Analyzer (Portable) 2023.9.28-nightly 546 Friday, September 29, 2023 Exempted
Rust Analyzer (Portable) 2023.9.25 50 Friday, September 29, 2023 Approved
Rust Analyzer (Portable) 2023.9.24-nightly 21 Sunday, September 24, 2023 Approved
Rust Analyzer (Portable) 2023.9.18 470 Friday, September 22, 2023 Approved
Rust Analyzer (Portable) 2023.9.18-nightly 44 Friday, September 22, 2023 Approved
Rust Analyzer (Portable) 2023.9.12-nightly 717 Monday, September 18, 2023 Approved
Rust Analyzer (Portable) 2023.9.11 654 Monday, September 18, 2023 Approved
Rust Analyzer (Portable) 2023.9.8-nightly 30 Friday, September 8, 2023 Approved
Rust Analyzer (Portable) 2023.9.4 98 Friday, September 8, 2023 Approved
Rust Analyzer (Portable) 2023.9.2-nightly 30 Saturday, September 2, 2023 Approved
Rust Analyzer (Portable) 2023.8.28 74 Saturday, September 2, 2023 Approved
Rust Analyzer (Portable) 2023.8.21 90 Friday, August 25, 2023 Approved
Rust Analyzer (Portable) 2023.8.21-nightly 32 Friday, August 25, 2023 Approved
Rust Analyzer (Portable) 2023.8.19-nightly 25 Thursday, August 24, 2023 Approved
Rust Analyzer (Portable) 2023.8.16-nightly 34 Monday, August 21, 2023 Approved
Rust Analyzer (Portable) 2023.8.14 97 Saturday, August 19, 2023 Approved
Rust Analyzer (Portable) 2023.8.8-nightly 28 Monday, August 21, 2023 Approved
Rust Analyzer (Portable) 2023.8.7 59 Wednesday, August 16, 2023 Approved
Rust Analyzer (Portable) 2023.8.4-nightly 28 Saturday, August 19, 2023 Approved
Rust Analyzer (Portable) 2023.8.2-nightly 25 Wednesday, August 16, 2023 Approved
Rust Analyzer (Portable) 2023.8.1-nightly 33 Wednesday, August 9, 2023 Approved
Rust Analyzer (Portable) 2023.7.31 85 Wednesday, August 9, 2023 Approved
Rust Analyzer (Portable) 2023.7.30-nightly 30 Saturday, August 5, 2023 Approved
Rust Analyzer (Portable) 2023.7.24 77 Saturday, August 5, 2023 Approved
Rust Analyzer (Portable) 2023.7.19-nightly 32 Wednesday, August 2, 2023 Approved
Rust Analyzer (Portable) 2023.7.17 72 Wednesday, August 2, 2023 Approved
Rust Analyzer (Portable) 2023.7.10 34 Tuesday, August 1, 2023 Approved
Rust Analyzer (Portable) 2023.7.3 21 Friday, August 4, 2023 Approved
Rust Analyzer (Portable) 2023.6.26 28 Monday, July 31, 2023 Approved
Rust Analyzer (Portable) 2023.6.24-nightly 31 Wednesday, July 19, 2023 Approved
Rust Analyzer (Portable) 2023.6.19 104 Wednesday, July 19, 2023 Approved
Rust Analyzer (Portable) 2023.6.12 145 Sunday, June 25, 2023 Approved
Rust Analyzer (Portable) 2023.6.5 60 Saturday, June 24, 2023 Approved
Rust Analyzer (Portable) 2023.6.4-nightly 20 Saturday, June 24, 2023 Approved
Rust Analyzer (Portable) 2023.5.31-nightly 47 Monday, June 5, 2023 Approved
Rust Analyzer (Portable) 2023.05.29 146 Wednesday, May 31, 2023 Approved
Rust Analyzer (Portable) 2023.5.23-nightly 40 Wednesday, May 24, 2023 Approved
Rust Analyzer (Portable) 2023.05.22 103 Wednesday, May 24, 2023 Approved
Rust Analyzer (Portable) 2023.5.17-nightly 34 Tuesday, May 23, 2023 Approved
Rust Analyzer (Portable) 2023.05.15 107 Wednesday, May 17, 2023 Approved
Rust Analyzer (Portable) 2023.5.15-nightly 110 Wednesday, May 17, 2023 Approved
Rust Analyzer (Portable) 2023.05.08 117 Monday, May 8, 2023 Approved
Rust Analyzer (Portable) 2023.5.8-nightly 36 Monday, May 15, 2023 Approved
Rust Analyzer (Portable) 2023.5.5-nightly 34 Monday, May 8, 2023 Approved
Rust Analyzer (Portable) 2023.05.01 129 Friday, May 5, 2023 Approved
Rust Analyzer (Portable) 2023.4.29-nightly 93 Tuesday, May 2, 2023 Approved
Rust Analyzer (Portable) 2023.04.24 79 Monday, May 1, 2023 Approved
Rust Analyzer (Portable) 2023.4.23-nightly 37 Saturday, April 29, 2023 Approved
Rust Analyzer (Portable) 2023.04.17 110 Sunday, April 23, 2023 Approved
Rust Analyzer (Portable) 2023.4.11-nightly 38 Sunday, April 23, 2023 Approved
Rust Analyzer (Portable) 2023.04.10 70 Thursday, April 20, 2023 Approved
Rust Analyzer (Portable) 2023.4.9-nightly 43 Tuesday, April 18, 2023 Approved
Rust Analyzer (Portable) 2023.04.04 59 Tuesday, April 18, 2023 Approved
Rust Analyzer (Portable) 2023.4.4-nightly 61 Sunday, April 16, 2023 Approved
Rust Analyzer (Portable) 2023.04.03 68 Sunday, April 16, 2023 Approved
Rust Analyzer (Portable) 2023.4.2-nightly 39 Tuesday, April 11, 2023 Approved
Rust Analyzer (Portable) 2023.4.1-nightly 20 Sunday, April 9, 2023 Approved
Rust Analyzer (Portable) 2023.3.31-nightly 42 Tuesday, April 4, 2023 Approved
Rust Analyzer (Portable) 2023.03.27 138 Sunday, April 2, 2023 Approved
Rust Analyzer (Portable) 2023.3.27-nightly 52 Sunday, April 2, 2023 Approved
Rust Analyzer (Portable) 2023.3.25-nightly 38 Saturday, April 1, 2023 Approved
Rust Analyzer (Portable) 2023.3.24-nightly 48 Friday, March 31, 2023 Approved
Rust Analyzer (Portable) 2023.3.21-nightly 38 Friday, March 31, 2023 Approved
Rust Analyzer (Portable) 2023.03.20 110 Monday, March 27, 2023 Approved
Rust Analyzer (Portable) 2023.3.16-nightly 65 Sunday, March 26, 2023 Approved
Rust Analyzer (Portable) 2023.3.15-nightly 46 Friday, March 24, 2023 Approved
Rust Analyzer (Portable) 2023.3.14-nightly 42 Tuesday, March 21, 2023 Approved
Rust Analyzer (Portable) 2023.03.13 146 Monday, March 13, 2023 Approved
Rust Analyzer (Portable) 2023.3.13-nightly 39 Thursday, March 16, 2023 Approved
Rust Analyzer (Portable) 2023.3.12-nightly 27 Wednesday, March 15, 2023 Approved
Rust Analyzer (Portable) 2023.3.11-nightly 49 Tuesday, March 14, 2023 Approved
Rust Analyzer (Portable) 2023.3.10-nightly 39 Monday, March 13, 2023 Approved
Rust Analyzer (Portable) 2023.3.8-nightly 45 Sunday, March 12, 2023 Approved
Rust Analyzer (Portable) 2023.3.7-nightly 111 Saturday, March 11, 2023 Approved
Rust Analyzer (Portable) 2023.03.06 70 Saturday, March 11, 2023 Approved
Rust Analyzer (Portable) 2023.02.27 39 Saturday, March 11, 2023 Approved
Rust Analyzer (Portable) 2023.02.20 92 Wednesday, March 8, 2023 Approved
Rust Analyzer (Portable) 2023.2.19-nightly 46 Wednesday, March 8, 2023 Approved
Rust Analyzer (Portable) 2023.2.14-nightly 112 Sunday, February 19, 2023 Approved
Rust Analyzer (Portable) 2023.02.13 57 Tuesday, March 7, 2023 Approved
Rust Analyzer (Portable) 2023.02.06 124 Sunday, February 19, 2023 Approved
Rust Analyzer (Portable) 2023.2.5-nightly 50 Sunday, February 5, 2023 Approved
Rust Analyzer (Portable) 2023.01.30 90 Tuesday, February 14, 2023 Approved
Rust Analyzer (Portable) 2023.01.23 104 Sunday, February 5, 2023 Approved
Rust Analyzer (Portable) 2023.1.22-nightly 48 Sunday, January 22, 2023 Approved
Rust Analyzer (Portable) 2023.01.16 135 Sunday, January 22, 2023 Approved
Rust Analyzer (Portable) 2023.1.15-nightly 48 Sunday, January 15, 2023 Approved
Rust Analyzer (Portable) 2023.01.09 75 Sunday, January 15, 2023 Approved
Rust Analyzer (Portable) 2023.1.7-nightly 49 Saturday, January 7, 2023 Approved
Rust Analyzer (Portable) 2023.01.02 98 Saturday, January 7, 2023 Approved
Rust Analyzer (Portable) 2022.12.31-nightly 51 Saturday, December 31, 2022 Approved
Rust Analyzer (Portable) 2022.12.26 99 Saturday, December 31, 2022 Approved
Rust Analyzer (Portable) 2022.12.24-nightly 45 Saturday, December 24, 2022 Approved
Rust Analyzer (Portable) 2022.12.19 92 Saturday, December 24, 2022 Approved
Rust Analyzer (Portable) 2022.12.18-nightly 32 Sunday, December 18, 2022 Approved
Rust Analyzer (Portable) 2022.12.12 79 Sunday, December 18, 2022 Approved
Rust Analyzer (Portable) 2022.12.9-nightly 43 Monday, December 12, 2022 Approved
Rust Analyzer (Portable) 2022.12.05 102 Monday, December 12, 2022 Approved
Rust Analyzer (Portable) 2022.11.28 79 Friday, December 9, 2022 Approved
Rust Analyzer (Portable) 2022.11.28-nightly 52 Monday, November 28, 2022 Approved
Rust Analyzer (Portable) 2022.11.21 108 Monday, November 28, 2022 Approved
Rust Analyzer (Portable) 2022.11.20-nightly 46 Sunday, November 20, 2022 Approved
Rust Analyzer (Portable) 2022.11.19-nightly 31 Saturday, November 19, 2022 Approved
Rust Analyzer (Portable) 2022.11.14 104 Saturday, November 19, 2022 Approved
Rust Analyzer (Portable) 2022.11.13-nightly 40 Saturday, November 19, 2022 Approved
Rust Analyzer (Portable) 2022.11.12-nightly 44 Sunday, November 13, 2022 Approved
Rust Analyzer (Portable) 2022.11.07 122 Monday, November 7, 2022 Approved
Rust Analyzer (Portable) 2022.11.7-nightly 37 Monday, November 7, 2022 Approved
Rust Analyzer (Portable) 2022.11.6-nightly 43 Sunday, November 6, 2022 Approved
Rust Analyzer (Portable) 2022.11.5-nightly 56 Saturday, November 5, 2022 Approved
Rust Analyzer (Portable) 2022.11.4-nightly 49 Friday, November 4, 2022 Approved
Rust Analyzer (Portable) 2022.11.2-nightly 47 Wednesday, November 2, 2022 Approved
Rust Analyzer (Portable) 2022.10.31 105 Monday, October 31, 2022 Approved
Rust Analyzer (Portable) 2022.10.31-nightly 41 Monday, October 31, 2022 Approved
Rust Analyzer (Portable) 2022.10.29-nightly 54 Saturday, October 29, 2022 Approved
Rust Analyzer (Portable) 2022.10.28-nightly 50 Friday, October 28, 2022 Approved
Rust Analyzer (Portable) 2022.10.25-nightly 45 Wednesday, October 26, 2022 Approved
Rust Analyzer (Portable) 2022.10.24 100 Tuesday, October 25, 2022 Approved
Rust Analyzer (Portable) 2022.10.24-nightly 47 Tuesday, October 25, 2022 Approved
Rust Analyzer (Portable) 2022.10.21-nightly 56 Monday, October 24, 2022 Approved
Rust Analyzer (Portable) 2022.10.19-nightly 38 Friday, October 21, 2022 Approved
Rust Analyzer (Portable) 2022.10.17 71 Friday, October 21, 2022 Approved
Rust Analyzer (Portable) 2022.10.17-nightly 45 Wednesday, October 19, 2022 Approved
Rust Analyzer (Portable) 2022.10.15-nightly 33 Wednesday, October 19, 2022 Approved
Rust Analyzer (Portable) 2022.10.14-nightly 50 Monday, October 17, 2022 Approved
Rust Analyzer (Portable) 2022.10.13-nightly 32 Sunday, October 16, 2022 Approved
Rust Analyzer (Portable) 2022.10.10 105 Saturday, October 15, 2022 Approved
Rust Analyzer (Portable) 2022.10.8-nightly 41 Friday, October 14, 2022 Approved
Rust Analyzer (Portable) 2022.10.03 74 Thursday, October 13, 2022 Approved
Rust Analyzer (Portable) 2022.09.26 64 Wednesday, October 12, 2022 Approved
Rust Analyzer (Portable) 2022.09.19 88 Sunday, October 9, 2022 Approved
Rust Analyzer (Portable) 2022.09.12 45 Saturday, October 8, 2022 Approved
Rust Analyzer (Portable) 2022.9.12-nightly 47 Tuesday, September 20, 2022 Approved
Rust Analyzer (Portable) 2022.9.11-nightly 45 Sunday, September 11, 2022 Approved
Rust Analyzer (Portable) 2022.9.7-nightly 41 Wednesday, September 7, 2022 Approved
Rust Analyzer (Portable) 2022.09.05 191 Wednesday, September 7, 2022 Approved
Rust Analyzer (Portable) 2022.8.30-nightly 58 Tuesday, August 30, 2022 Approved
Rust Analyzer (Portable) 2022.08.29 107 Tuesday, August 30, 2022 Approved
Rust Analyzer (Portable) 2022.08.22 106 Monday, August 22, 2022 Approved
Rust Analyzer (Portable) 2022.8.22-nightly 49 Monday, August 22, 2022 Approved
Rust Analyzer (Portable) 2022.8.18-nightly 45 Thursday, August 18, 2022 Approved
Rust Analyzer (Portable) 2022.08.15 96 Thursday, August 18, 2022 Approved
Rust Analyzer (Portable) 2022.8.9-nightly 54 Tuesday, August 9, 2022 Approved
Rust Analyzer (Portable) 2022.08.08 124 Monday, August 8, 2022 Approved
Rust Analyzer (Portable) 2022.8.8-nightly 52 Monday, August 8, 2022 Approved
Rust Analyzer (Portable) 2022.8.7-nightly 52 Sunday, August 7, 2022 Approved
Rust Analyzer (Portable) 2022.8.4-nightly 62 Thursday, August 4, 2022 Approved
Rust Analyzer (Portable) 2022.08.01 119 Monday, August 1, 2022 Approved
Rust Analyzer (Portable) 2022.8.1-nightly 40 Monday, August 1, 2022 Approved
Rust Analyzer (Portable) 2022.7.31-nightly 45 Sunday, July 31, 2022 Exempted
Rust Analyzer (Portable) 2022.07.25 70 Sunday, July 31, 2022 Approved
Rust Analyzer (Portable) 2022.7.23-nightly 80 Saturday, July 23, 2022 Approved
Rust Analyzer (Portable) 2022.7.20-nightly 54 Wednesday, July 20, 2022 Approved
Rust Analyzer (Portable) 2022.07.18 125 Wednesday, July 20, 2022 Approved
Rust Analyzer (Portable) 2022.7.12-nightly 46 Tuesday, July 12, 2022 Approved
Rust Analyzer (Portable) 2022.07.11 108 Tuesday, July 12, 2022 Approved
Rust Analyzer (Portable) 2022.7.9-nightly 67 Saturday, July 9, 2022 Approved
Rust Analyzer (Portable) 2022.07.04 72 Saturday, July 9, 2022 Approved
Rust Analyzer (Portable) 2022.06.27 125 Monday, June 27, 2022 Approved
Rust Analyzer (Portable) 2022.6.27-nightly 41 Monday, June 27, 2022 Approved
Rust Analyzer (Portable) 2022.6.26-nightly 43 Sunday, June 26, 2022 Approved
Rust Analyzer (Portable) 2022.6.22-nightly 54 Wednesday, June 22, 2022 Approved
Rust Analyzer (Portable) 2022.6.21-nightly 65 Tuesday, June 21, 2022 Approved
Rust Analyzer (Portable) 2022.06.20 114 Wednesday, June 22, 2022 Approved
Rust Analyzer (Portable) 2022.6.19-nightly 42 Sunday, June 19, 2022 Approved
Rust Analyzer (Portable) 2022.6.14-nightly 46 Tuesday, June 14, 2022 Approved
Rust Analyzer (Portable) 2022.06.13 111 Tuesday, June 14, 2022 Approved
Rust Analyzer (Portable) 2022.6.11-nightly 63 Saturday, June 11, 2022 Approved
Rust Analyzer (Portable) 2022.6.7-nightly 57 Tuesday, June 7, 2022 Approved
Rust Analyzer (Portable) 2022.06.06 113 Tuesday, June 7, 2022 Approved
Rust Analyzer (Portable) 2022.6.2-nightly 67 Thursday, June 2, 2022 Approved
Rust Analyzer (Portable) 2022.05.30 104 Tuesday, May 31, 2022 Approved
Rust Analyzer (Portable) 2022.5.30-nightly 57 Tuesday, May 31, 2022 Approved
Rust Analyzer (Portable) 2022.5.28-nightly 51 Saturday, May 28, 2022 Approved
Rust Analyzer (Portable) 2022.5.24-nightly 56 Tuesday, May 24, 2022 Approved
Rust Analyzer (Portable) 2022.05.23 105 Tuesday, May 24, 2022 Approved
Rust Analyzer (Portable) 2022.5.19-nightly 62 Thursday, May 19, 2022 Approved
Rust Analyzer (Portable) 2022.05.17 103 Thursday, May 19, 2022 Approved
Rust Analyzer (Portable) 2022.05.16 59 Thursday, May 19, 2022 Approved
Rust Analyzer (Portable) 2022.5.12-nightly 57 Friday, May 13, 2022 Approved
Rust Analyzer (Portable) 2022.5.10-nightly 64 Tuesday, May 10, 2022 Approved
Rust Analyzer (Portable) 2022.05.09 110 Tuesday, May 10, 2022 Approved
Rust Analyzer (Portable) 2022.5.8-nightly 54 Sunday, May 8, 2022 Approved
Rust Analyzer (Portable) 2022.5.7-nightly 62 Saturday, May 7, 2022 Approved
Rust Analyzer (Portable) 2022.5.5-nightly 64 Friday, May 6, 2022 Approved
Rust Analyzer (Portable) 2022.5.4-nightly 58 Wednesday, May 4, 2022 Approved
Rust Analyzer (Portable) 2022.05.02 130 Monday, May 2, 2022 Approved
Rust Analyzer (Portable) 2022.5.2-nightly 50 Monday, May 2, 2022 Approved
Rust Analyzer (Portable) 2022.4.28-nightly 50 Thursday, April 28, 2022 Approved
Rust Analyzer (Portable) 2022.04.25 97 Thursday, April 28, 2022 Approved
Rust Analyzer (Portable) 2022.4.24-nightly 60 Sunday, April 24, 2022 Approved
Rust Analyzer (Portable) 2022.4.21-nightly 59 Thursday, April 21, 2022 Approved
Rust Analyzer (Portable) 2022.04.18 130 Thursday, April 21, 2022 Approved
Rust Analyzer (Portable) 2022.4.12-nightly 61 Wednesday, April 13, 2022 Approved
Rust Analyzer (Portable) 2022.04.11 113 Wednesday, April 13, 2022 Approved
Rust Analyzer (Portable) 2022.4.10-nightly 103 Sunday, April 10, 2022 Approved
Rust Analyzer (Portable) 2022.4.8-nightly 61 Friday, April 8, 2022 Approved
Rust Analyzer (Portable) 2022.4.7-nightly 70 Thursday, April 7, 2022 Exempted
Rust Analyzer (Portable) 2022.04.04 142 Monday, April 4, 2022 Approved
Rust Analyzer (Portable) 2022.4.4-nightly 80 Monday, April 4, 2022 Approved
Rust Analyzer (Portable) 2022.4.3-nightly 59 Sunday, April 3, 2022 Approved
Rust Analyzer (Portable) 2022.4.2-nightly 65 Saturday, April 2, 2022 Approved
Rust Analyzer (Portable) 2022.3.30-nightly 59 Wednesday, March 30, 2022 Approved
Rust Analyzer (Portable) 2022.03.28 123 Tuesday, March 29, 2022 Approved
Rust Analyzer (Portable) 2022.3.28-nightly 55 Tuesday, March 29, 2022 Approved
Rust Analyzer (Portable) 2022.03.21 52 Tuesday, March 29, 2022 Approved
Rust Analyzer (Portable) 2022.3.18-nightly 61 Friday, March 18, 2022 Approved
Rust Analyzer (Portable) 2022.03.14 123 Friday, March 18, 2022 Approved
Rust Analyzer (Portable) 2022.3.12-nightly 72 Saturday, March 12, 2022 Approved
Rust Analyzer (Portable) 2022.3.8-nightly 81 Tuesday, March 8, 2022 Approved
Rust Analyzer (Portable) 2022.03.07 143 Tuesday, March 8, 2022 Approved
Rust Analyzer (Portable) 2022.3.1-nightly 96 Tuesday, March 1, 2022 Approved
Rust Analyzer (Portable) 2022.02.28 107 Tuesday, March 1, 2022 Approved
Rust Analyzer (Portable) 2022.02.22 76 Tuesday, March 1, 2022 Approved
Rust Analyzer (Portable) 2022.02.21 47 Tuesday, March 1, 2022 Approved
Rust Analyzer (Portable) 2022.2.18-nightly 74 Friday, February 18, 2022 Approved
Rust Analyzer (Portable) 2022.02.14 137 Friday, February 18, 2022 Approved
Rust Analyzer (Portable) 2022.2.13-nightly 67 Sunday, February 13, 2022 Approved
Rust Analyzer (Portable) 2022.02.07 146 Sunday, February 13, 2022 Approved
Rust Analyzer (Portable) 2022.2.5-nightly 70 Saturday, February 5, 2022 Approved
Rust Analyzer (Portable) 2022.2.4-nightly 69 Friday, February 4, 2022 Approved
Rust Analyzer (Portable) 2022.2.2-nightly 54 Wednesday, February 2, 2022 Approved
Rust Analyzer (Portable) 2022.01.31 132 Wednesday, February 2, 2022 Approved
Rust Analyzer (Portable) 2022.1.28-nightly 63 Friday, January 28, 2022 Approved
Rust Analyzer (Portable) 2022.1.25-nightly 61 Wednesday, January 26, 2022 Approved
Rust Analyzer (Portable) 2022.01.24 109 Wednesday, January 26, 2022 Approved
Rust Analyzer (Portable) 2022.1.19-nightly 77 Wednesday, January 19, 2022 Approved
Rust Analyzer (Portable) 2022.01.17 116 Wednesday, January 19, 2022 Approved
Rust Analyzer (Portable) 2022.1.15-nightly 77 Saturday, January 15, 2022 Approved
Rust Analyzer (Portable) 2022.1.13-nightly 65 Thursday, January 13, 2022 Approved
Rust Analyzer (Portable) 2022.01.10 105 Thursday, January 13, 2022 Approved
Rust Analyzer (Portable) 2022.1.8-nightly 66 Saturday, January 8, 2022 Approved
Rust Analyzer (Portable) 2022.1.5-nightly 82 Wednesday, January 5, 2022 Approved
Rust Analyzer (Portable) 2022.01.03 142 Wednesday, January 5, 2022 Approved
Rust Analyzer (Portable) 2021.12.27 76 Wednesday, January 5, 2022 Approved
Rust Analyzer (Portable) 2021.12.23-nightly 68 Thursday, December 23, 2021 Approved
Rust Analyzer (Portable) 2021.12.21-nightly 55 Tuesday, December 21, 2021 Approved
Rust Analyzer (Portable) 2021.12.20 153 Monday, December 20, 2021 Approved
Rust Analyzer (Portable) 2021.12.20-nightly 73 Monday, December 20, 2021 Approved
Rust Analyzer (Portable) 2021.12.16-nightly 52 Monday, December 20, 2021 Approved
Rust Analyzer (Portable) 2021.12.13 61 Monday, December 20, 2021 Approved
Rust Analyzer (Portable) 2021.12.06 99 Thursday, December 16, 2021 Approved
Rust Analyzer (Portable) 2021.12.3-nightly 81 Friday, December 3, 2021 Approved
Rust Analyzer (Portable) 2021.11.30-nightly 67 Tuesday, November 30, 2021 Approved
Rust Analyzer (Portable) 2021.11.29 147 Monday, November 29, 2021 Approved
Rust Analyzer (Portable) 2021.11.29-nightly 64 Monday, November 29, 2021 Approved
Rust Analyzer (Portable) 2021.11.28-nightly 64 Sunday, November 28, 2021 Approved
Rust Analyzer (Portable) 2021.11.27-nightly 52 Saturday, November 27, 2021 Approved
Rust Analyzer (Portable) 2021.11.25-nightly 66 Thursday, November 25, 2021 Approved
Rust Analyzer (Portable) 2021.11.23-nightly 71 Tuesday, November 23, 2021 Approved
Rust Analyzer (Portable) 2021.11.22 109 Tuesday, November 23, 2021 Approved
Rust Analyzer (Portable) 2021.11.21-nightly 61 Sunday, November 21, 2021 Approved
Rust Analyzer (Portable) 2021.11.19-nightly 122 Friday, November 19, 2021 Approved
Rust Analyzer (Portable) 2021.11.16-nightly 64 Tuesday, November 16, 2021 Approved
Rust Analyzer (Portable) 2021.11.15 108 Tuesday, November 16, 2021 Approved
Rust Analyzer (Portable) 2021.11.12-nightly 67 Friday, November 12, 2021 Approved
Rust Analyzer (Portable) 2021.11.08 87 Friday, November 12, 2021 Approved
Rust Analyzer (Portable) 2021.11.7-nightly 58 Friday, November 12, 2021 Approved
Rust Analyzer (Portable) 2021.11.5-nightly 71 Friday, November 5, 2021 Approved
Rust Analyzer (Portable) 2021.11.01 107 Wednesday, November 3, 2021 Approved
Rust Analyzer (Portable) 2021.10.27-nightly 81 Wednesday, October 27, 2021 Approved
Rust Analyzer (Portable) 2021.10.25 111 Wednesday, October 27, 2021 Approved
Rust Analyzer (Portable) 2021.10.21-nightly 66 Thursday, October 21, 2021 Approved
Rust Analyzer (Portable) 2021.10.18 113 Thursday, October 21, 2021 Approved
Rust Analyzer (Portable) 2021.10.17-nightly 57 Sunday, October 17, 2021 Exempted
Rust Analyzer (Portable) 2021.10.15-nightly 71 Friday, October 15, 2021 Exempted
Rust Analyzer (Portable) 2021.10.14-nightly 64 Thursday, October 14, 2021 Approved
Rust Analyzer (Portable) 2021.10.11 196 Monday, October 11, 2021 Approved
Rust Analyzer (Portable) 2021.10.11-nightly 77 Monday, October 11, 2021 Approved
Rust Analyzer (Portable) 2021.10.9-nightly 60 Saturday, October 9, 2021 Approved
Rust Analyzer (Portable) 2021.10.8-nightly 72 Friday, October 8, 2021 Approved
Rust Analyzer (Portable) 2021.10.6-nightly 77 Wednesday, October 6, 2021 Approved
Rust Analyzer (Portable) 2021.10.5-nightly 69 Tuesday, October 5, 2021 Approved
Rust Analyzer (Portable) 2021.10.04 105 Tuesday, October 5, 2021 Approved
Rust Analyzer (Portable) 2021.10.3-nightly 67 Sunday, October 3, 2021 Exempted
Rust Analyzer (Portable) 2021.10.2-nightly 82 Saturday, October 2, 2021 Approved
Rust Analyzer (Portable) 2021.10.1-nightly 64 Friday, October 1, 2021 Approved
Rust Analyzer (Portable) 2021.9.28-nightly 71 Tuesday, September 28, 2021 Approved
Rust Analyzer (Portable) 2021.09.27 97 Monday, September 27, 2021 Approved
Rust Analyzer (Portable) 2021.9.27-nightly 72 Monday, September 27, 2021 Approved
Rust Analyzer (Portable) 2021.9.23-nightly 76 Thursday, September 23, 2021 Approved
Rust Analyzer (Portable) 2021.9.22-nightly 87 Thursday, September 23, 2021 Approved
Rust Analyzer (Portable) 2021.09.20 116 Thursday, September 23, 2021 Approved
Rust Analyzer (Portable) 2021.9.20-nightly 96 Monday, September 20, 2021 Approved
Rust Analyzer (Portable) 2021.9.18-nightly 90 Saturday, September 18, 2021 Approved
Rust Analyzer (Portable) 2021.9.16-nightly 69 Thursday, September 16, 2021 Approved
Rust Analyzer (Portable) 2021.9.15-nightly 76 Wednesday, September 15, 2021 Approved
Rust Analyzer (Portable) 2021.9.14-nightly 72 Tuesday, September 14, 2021 Approved
Rust Analyzer (Portable) 2021.09.13 121 Monday, September 13, 2021 Approved
Rust Analyzer (Portable) 2021.9.13-nightly 100 Monday, September 13, 2021 Approved
Rust Analyzer (Portable) 2021.9.12-nightly 78 Monday, September 13, 2021 Approved
Rust Analyzer (Portable) 2021.9.11-nightly 97 Saturday, September 11, 2021 Approved
Rust Analyzer (Portable) 2021.9.10-nightly 81 Friday, September 10, 2021 Approved
Rust Analyzer (Portable) 2021.9.8-nightly 89 Wednesday, September 8, 2021 Approved
Rust Analyzer (Portable) 2021.09.06 103 Wednesday, September 8, 2021 Approved
Rust Analyzer (Portable) 2021.9.6-nightly 139 Monday, September 6, 2021 Approved
Rust Analyzer (Portable) 2021.9.4-nightly 130 Saturday, September 4, 2021 Approved
Rust Analyzer (Portable) 2021.9.2-nightly 104 Thursday, September 2, 2021 Exempted
Rust Analyzer (Portable) 2021.9.1-nightly 165 Wednesday, September 1, 2021 Approved
Rust Analyzer (Portable) 2021.8.31-nightly 61 Tuesday, August 31, 2021 Exempted
Rust Analyzer (Portable) 2021.08.30 135 Monday, August 30, 2021 Approved
Rust Analyzer (Portable) 2021.8.30-nightly 75 Monday, August 30, 2021 Approved
Rust Analyzer (Portable) 2021.8.29-nightly 99 Sunday, August 29, 2021 Approved
Rust Analyzer (Portable) 2021.8.28-nightly 71 Saturday, August 28, 2021 Approved
Rust Analyzer (Portable) 2021.8.27-nightly 68 Friday, August 27, 2021 Approved
Rust Analyzer (Portable) 2021.8.26-nightly 83 Thursday, August 26, 2021 Exempted
Rust Analyzer (Portable) 2021.8.25-nightly 52 Wednesday, August 25, 2021 Approved
Rust Analyzer (Portable) 2021.8.24-nightly 69 Tuesday, August 24, 2021 Approved
Rust Analyzer (Portable) 2021.08.23 148 Monday, August 23, 2021 Approved
Rust Analyzer (Portable) 2021.8.23-nightly 86 Monday, August 23, 2021 Approved
Rust Analyzer (Portable) 2021.8.22-nightly 72 Sunday, August 22, 2021 Approved
Rust Analyzer (Portable) 2021.8.21-nightly 64 Saturday, August 21, 2021 Approved
Rust Analyzer (Portable) 2021.8.19-nightly 59 Thursday, August 19, 2021 Approved
Rust Analyzer (Portable) 2021.8.17-nightly 81 Tuesday, August 17, 2021 Approved
Rust Analyzer (Portable) 2021.08.16 95 Monday, August 16, 2021 Approved
Rust Analyzer (Portable) 2021.8.16-nightly 79 Monday, August 16, 2021 Approved
Rust Analyzer (Portable) 2021.8.15-nightly 78 Sunday, August 15, 2021 Exempted
Rust Analyzer (Portable) 2021.8.11-nightly 70 Wednesday, August 11, 2021 Approved
Rust Analyzer (Portable) 2021.8.10-nightly 69 Tuesday, August 10, 2021 Exempted
Rust Analyzer (Portable) 2021.08.09 99 Monday, August 9, 2021 Approved
Rust Analyzer (Portable) 2021.8.9-nightly 97 Monday, August 9, 2021 Approved
Rust Analyzer (Portable) 2021.8.8-nightly 68 Sunday, August 8, 2021 Approved
Rust Analyzer (Portable) 2021.8.4-nightly 78 Wednesday, August 4, 2021 Approved
Rust Analyzer (Portable) 2021.8.3-nightly 73 Tuesday, August 3, 2021 Approved
Rust Analyzer (Portable) 2021.08.02 101 Tuesday, August 3, 2021 Approved
Rust Analyzer (Portable) 2021.7.31-nightly 93 Saturday, July 31, 2021 Approved
Rust Analyzer (Portable) 2021.7.28-nightly 69 Wednesday, July 28, 2021 Approved
Rust Analyzer (Portable) 2021.7.27-nightly 91 Tuesday, July 27, 2021 Approved
Rust Analyzer (Portable) 2021.07.26 126 Tuesday, July 27, 2021 Approved
Rust Analyzer (Portable) 2021.7.20-nightly 86 Tuesday, July 20, 2021 Approved
Rust Analyzer (Portable) 2021.07.19 162 Tuesday, July 20, 2021 Approved
Rust Analyzer (Portable) 2021.7.17-nightly 94 Saturday, July 17, 2021 Exempted
Rust Analyzer (Portable) 2021.7.13-nightly 93 Tuesday, July 13, 2021 Approved
Rust Analyzer (Portable) 2021.07.12 119 Tuesday, July 13, 2021 Approved
Rust Analyzer (Portable) 2021.7.11-nightly 127 Sunday, July 11, 2021 Approved
Rust Analyzer (Portable) 2021.7.7-nightly 80 Wednesday, July 7, 2021 Exempted
Rust Analyzer (Portable) 2021.7.6-nightly 92 Tuesday, July 6, 2021 Approved
Rust Analyzer (Portable) 2021.07.05 100 Tuesday, July 6, 2021 Approved
Rust Analyzer (Portable) 2021.7.2-nightly 74 Friday, July 2, 2021 Approved
Rust Analyzer (Portable) 2021.06.28 97 Friday, July 2, 2021 Approved
Rust Analyzer (Portable) 2021.6.26-nightly 81 Saturday, June 26, 2021 Approved
Rust Analyzer (Portable) 2021.6.24-nightly 85 Thursday, June 24, 2021 Approved
Rust Analyzer (Portable) 2021.06.21 120 Monday, June 21, 2021 Approved
Rust Analyzer (Portable) 2021.6.21-nightly 88 Monday, June 21, 2021 Approved
Rust Analyzer (Portable) 2021.6.20-nightly 91 Sunday, June 20, 2021 Approved
Rust Analyzer (Portable) 2021.6.19-nightly 76 Saturday, June 19, 2021 Approved
Rust Analyzer (Portable) 2021.6.17-nightly 80 Thursday, June 17, 2021 Approved
Rust Analyzer (Portable) 2021.6.15-nightly 94 Tuesday, June 15, 2021 Approved
Rust Analyzer (Portable) 2021.06.14 118 Tuesday, June 15, 2021 Approved
Rust Analyzer (Portable) 2021.6.13-nightly 84 Sunday, June 13, 2021 Approved
Rust Analyzer (Portable) 2021.6.9-nightly 94 Wednesday, June 9, 2021 Approved
Rust Analyzer (Portable) 2021.06.07 124 Monday, June 7, 2021 Approved
Rust Analyzer (Portable) 2021.6.7-nightly 101 Monday, June 7, 2021 Approved
Rust Analyzer (Portable) 2021.6.6-nightly 92 Sunday, June 6, 2021 Approved
Rust Analyzer (Portable) 2021.6.4-nightly 88 Friday, June 4, 2021 Approved
Rust Analyzer (Portable) 2021.05.31 106 Friday, June 4, 2021 Approved
Rust Analyzer (Portable) 2021.5.30-nightly 97 Sunday, May 30, 2021 Approved
Rust Analyzer (Portable) 2021.5.25-nightly 90 Sunday, May 30, 2021 Approved
Rust Analyzer (Portable) 2021.05.24 124 Monday, May 24, 2021 Approved
Rust Analyzer (Portable) 2021.5.24-nightly 84 Monday, May 24, 2021 Approved
Rust Analyzer (Portable) 2021.5.22-nightly 108 Saturday, May 22, 2021 Approved
Rust Analyzer (Portable) 2021.5.20-nightly 83 Thursday, May 20, 2021 Approved
Rust Analyzer (Portable) 2021.5.19-nightly 93 Wednesday, May 19, 2021 Approved
Rust Analyzer (Portable) 2021.05.17 106 Monday, May 17, 2021 Approved
Rust Analyzer (Portable) 2021.5.17-nightly 80 Monday, May 17, 2021 Approved
Rust Analyzer (Portable) 2021.5.16-nightly 91 Sunday, May 16, 2021 Approved
Rust Analyzer (Portable) 2021.5.15-nightly 94 Saturday, May 15, 2021 Approved
Rust Analyzer (Portable) 2021.5.14-nightly 81 Friday, May 14, 2021 Approved
Rust Analyzer (Portable) 2021.5.13-nightly 88 Thursday, May 13, 2021 Approved
Rust Analyzer (Portable) 2021.5.12-nightly 101 Wednesday, May 12, 2021 Approved
Rust Analyzer (Portable) 2021.05.10 122 Monday, May 10, 2021 Approved
Rust Analyzer (Portable) 2021.5.10-nightly 84 Monday, May 10, 2021 Approved
Rust Analyzer (Portable) 2021.5.4-nightly 109 Tuesday, May 4, 2021 Approved
Rust Analyzer (Portable) 2021.05.03 108 Tuesday, May 4, 2021 Approved
Rust Analyzer (Portable) 2021.4.29-nightly 85 Thursday, April 29, 2021 Approved
Rust Analyzer (Portable) 2021.04.26 157 Thursday, April 29, 2021 Approved
Rust Analyzer (Portable) 2021.4.24-nightly 91 Saturday, April 24, 2021 Approved
Rust Analyzer (Portable) 2021.4.22-nightly 80 Thursday, April 22, 2021 Exempted
Rust Analyzer (Portable) 2021.04.19 122 Thursday, April 22, 2021 Approved
Rust Analyzer (Portable) 2021.4.16-nightly 100 Friday, April 16, 2021 Approved
Rust Analyzer (Portable) 2021.4.14-nightly 106 Thursday, April 15, 2021 Approved
Rust Analyzer (Portable) 2021.04.12 129 Thursday, April 15, 2021 Approved
Rust Analyzer (Portable) 2021.4.12-nightly 107 Monday, April 12, 2021 Approved
Rust Analyzer (Portable) 2021.4.10-nightly 102 Saturday, April 10, 2021 Approved
Rust Analyzer (Portable) 2021.4.9-nightly 111 Friday, April 9, 2021 Approved
Rust Analyzer (Portable) 2021.4.6-nightly 103 Tuesday, April 6, 2021 Approved
Rust Analyzer (Portable) 2021.04.05 130 Tuesday, April 6, 2021 Approved
Rust Analyzer (Portable) 2021.4.4-nightly 88 Sunday, April 4, 2021 Approved
Rust Analyzer (Portable) 2021.4.3-nightly 90 Saturday, April 3, 2021 Approved
Rust Analyzer (Portable) 2021.4.2-nightly 97 Friday, April 2, 2021 Approved
Rust Analyzer (Portable) 2021.03.29 113 Monday, March 29, 2021 Approved
Rust Analyzer (Portable) 2021.3.29-nightly 112 Monday, March 29, 2021 Approved
Rust Analyzer (Portable) 2021.3.25-nightly 108 Friday, March 26, 2021 Approved
Rust Analyzer (Portable) 2021.03.22 162 Tuesday, March 23, 2021 Approved
Rust Analyzer (Portable) 2021.3.22-nightly 124 Friday, March 26, 2021 Approved
Rust Analyzer (Portable) 2021.3.20-nightly 117 Saturday, March 20, 2021 Exempted
Rust Analyzer (Portable) 2021.3.19-nightly 142 Friday, March 19, 2021 Approved
Rust Analyzer (Portable) 2021.3.18-nightly 108 Thursday, March 18, 2021 Approved
Rust Analyzer (Portable) 2021.3.17-nightly 125 Wednesday, March 17, 2021 Approved
Rust Analyzer (Portable) 2021.3.16-nightly 110 Tuesday, March 16, 2021 Exempted
Rust Analyzer (Portable) 2021.03.15 132 Monday, March 15, 2021 Approved
Rust Analyzer (Portable) 2021.3.15-nightly 130 Monday, March 15, 2021 Exempted
Rust Analyzer (Portable) 2021.3.13-nightly 112 Saturday, March 13, 2021 Approved
Rust Analyzer (Portable) 2021.03.08 114 Saturday, March 13, 2021 Approved
Rust Analyzer (Portable) 2021.3.7-nightly 108 Monday, March 8, 2021 Exempted
Rust Analyzer (Portable) 2021.3.4-nightly 98 Thursday, March 4, 2021 Exempted
Rust Analyzer (Portable) 2021.03.01 145 Thursday, March 4, 2021 Approved
Rust Analyzer (Portable) 2021.02.22 101 Thursday, March 4, 2021 Approved
Rust Analyzer (Portable) 2021.2.18-nightly 101 Thursday, February 18, 2021 Exempted
Rust Analyzer (Portable) 2021.02.15 90 Thursday, February 18, 2021 Approved
Rust Analyzer (Portable) 2021.02.08 91 Thursday, February 18, 2021 Approved
Rust Analyzer (Portable) 2021.2.6-nightly 120 Saturday, February 6, 2021 Approved
Rust Analyzer (Portable) 2021.02.01 126 Saturday, February 6, 2021 Approved
Rust Analyzer (Portable) 2021.1.31-nightly 92 Sunday, January 31, 2021 Exempted
Rust Analyzer (Portable) 2021.1.26-nightly 116 Tuesday, January 26, 2021 Approved
Rust Analyzer (Portable) 2021.01.25 112 Tuesday, January 26, 2021 Approved
Rust Analyzer (Portable) 2021.1.24-nightly 98 Tuesday, January 26, 2021 Exempted
Rust Analyzer (Portable) 2021.01.18 150 Tuesday, January 26, 2021 Approved
Rust Analyzer (Portable) 2021.1.17-nightly 107 Monday, January 18, 2021 Approved
Rust Analyzer (Portable) 2021.1.15-nightly 113 Friday, January 15, 2021 Approved
Rust Analyzer (Portable) 2021.1.12-nightly 102 Wednesday, January 13, 2021 Approved
Rust Analyzer (Portable) 2021.01.11 155 Tuesday, January 12, 2021 Approved
Rust Analyzer (Portable) 2021.1.11-nightly 124 Tuesday, January 12, 2021 Approved
Rust Analyzer (Portable) 2021.1.10-nightly 98 Monday, January 11, 2021 Approved
Rust Analyzer (Portable) 2021.1.8-nightly 112 Friday, January 8, 2021 Approved
Rust Analyzer (Portable) 2021.1.5-nightly 119 Wednesday, January 6, 2021 Approved
Rust Analyzer (Portable) 2021.01.04 134 Wednesday, January 6, 2021 Approved
Rust Analyzer (Portable) 2021.1.1-nightly 175 Saturday, January 2, 2021 Approved
Rust Analyzer (Portable) 2020.12.28 128 Monday, December 28, 2020 Approved
Rust Analyzer (Portable) 2020.12.28-nightly 143 Monday, December 28, 2020 Approved
Rust Analyzer (Portable) 2020.12.25-nightly 109 Friday, December 25, 2020 Approved
Rust Analyzer (Portable) 2020.12.22-nightly 133 Tuesday, December 22, 2020 Approved
Rust Analyzer (Portable) 2020.12.21 131 Tuesday, December 22, 2020 Approved
Rust Analyzer (Portable) 2020.12.20-nightly 115 Sunday, December 20, 2020 Approved
Rust Analyzer (Portable) 2020.12.18-nightly 133 Friday, December 18, 2020 Approved
Rust Analyzer (Portable) 2020.12.16-nightly 116 Wednesday, December 16, 2020 Approved
Rust Analyzer (Portable) 2020.12.14 148 Monday, December 14, 2020 Approved
Rust Analyzer (Portable) 2020.12.14-nightly 113 Monday, December 14, 2020 Approved
Rust Analyzer (Portable) 2020.12.07 109 Monday, December 14, 2020 Approved
Rust Analyzer (Portable) 2020.12.1-nightly 133 Tuesday, December 1, 2020 Exempted
Rust Analyzer (Portable) 2020.11.30 129 Monday, November 30, 2020 Approved
Rust Analyzer (Portable) 2020.11.30-nightly 101 Monday, November 30, 2020 Approved
Rust Analyzer (Portable) 2020.11.25-nightly 139 Wednesday, November 25, 2020 Approved
Rust Analyzer (Portable) 2020.11.23 127 Wednesday, November 25, 2020 Approved
Rust Analyzer (Portable) 2020.11.23-nightly 116 Monday, November 23, 2020 Approved
Rust Analyzer (Portable) 2020.11.19-nightly 135 Friday, November 20, 2020 Approved
Rust Analyzer (Portable) 2020.11.17-nightly 128 Tuesday, November 17, 2020 Approved
Rust Analyzer (Portable) 2020.11.16 140 Tuesday, November 17, 2020 Approved
Rust Analyzer (Portable) 2020.11.15-nightly 119 Sunday, November 15, 2020 Approved
Rust Analyzer (Portable) 2020.11.13-nightly 118 Saturday, November 14, 2020 Approved
Rust Analyzer (Portable) 2020.11.09 138 Saturday, November 14, 2020 Approved
Rust Analyzer (Portable) 2020.11.5-nightly 129 Thursday, November 5, 2020 Approved
Rust Analyzer (Portable) 2020.11.4-nightly 114 Wednesday, November 4, 2020 Approved
Rust Analyzer (Portable) 2020.11.02 148 Wednesday, November 4, 2020 Approved
Rust Analyzer (Portable) 2020.11.2-nightly 133 Monday, November 2, 2020 Approved
Rust Analyzer (Portable) 2020.10.27-nightly 129 Tuesday, October 27, 2020 Approved
Rust Analyzer (Portable) 2020.10.26 148 Tuesday, October 27, 2020 Approved
Rust Analyzer (Portable) 2020.10.19 160 Monday, October 19, 2020 Approved
Rust Analyzer (Portable) 2020.10.19-nightly 115 Monday, October 19, 2020 Approved
Rust Analyzer (Portable) 2020.10.16-nightly 121 Friday, October 16, 2020 Approved
Rust Analyzer (Portable) 2020.10.14-nightly 112 Wednesday, October 14, 2020 Exempted
Rust Analyzer (Portable) 2020.10.12 140 Monday, October 12, 2020 Approved
Rust Analyzer (Portable) 2020.10.12-nightly 145 Monday, October 12, 2020 Approved
Rust Analyzer (Portable) 2020.10.6-nightly 115 Tuesday, October 6, 2020 Exempted
Rust Analyzer (Portable) 2020.10.05 160 Tuesday, October 6, 2020 Approved
Rust Analyzer (Portable) 2020.10.2-nightly 136 Friday, October 2, 2020 Approved
Rust Analyzer (Portable) 2020.10.1-nightly 124 Thursday, October 1, 2020 Exempted
Rust Analyzer (Portable) 2020.9.29-nightly 124 Tuesday, September 29, 2020 Exempted
Rust Analyzer (Portable) 2020.09.28 154 Tuesday, September 29, 2020 Approved
Rust Analyzer (Portable) 2020.9.23-nightly 127 Wednesday, September 23, 2020 Exempted
Rust Analyzer (Portable) 2020.09.21 146 Monday, September 21, 2020 Approved
Rust Analyzer (Portable) 2020.9.21-nightly 120 Monday, September 21, 2020 Exempted
Rust Analyzer (Portable) 2020.9.19-nightly 139 Saturday, September 19, 2020 Exempted
Rust Analyzer (Portable) 2020.9.17-nightly 130 Friday, September 18, 2020 Exempted
Rust Analyzer (Portable) 2020.9.16-nightly 118 Thursday, September 17, 2020 Exempted
Rust Analyzer (Portable) 2020.09.14 137 Thursday, September 17, 2020 Approved
Rust Analyzer (Portable) 2020.9.13-nightly 125 Monday, September 14, 2020 Exempted
Rust Analyzer (Portable) 2020.9.12-nightly 126 Sunday, September 13, 2020 Approved
Rust Analyzer (Portable) 2020.9.11-nightly 124 Friday, September 11, 2020 Exempted
Rust Analyzer (Portable) 2020.9.9-nightly 127 Friday, September 11, 2020 Exempted
Rust Analyzer (Portable) 2020.9.8-nightly 144 Friday, September 11, 2020 Exempted
Rust Analyzer (Portable) 2020.09.07 154 Friday, September 11, 2020 Approved
Rust Analyzer (Portable) 2020.9.6-nightly 138 Sunday, September 6, 2020 Approved
Rust Analyzer (Portable) 2020.9.5-nightly 128 Saturday, September 5, 2020 Exempted
Rust Analyzer (Portable) 2020.9.4-nightly 125 Friday, September 4, 2020 Exempted
Rust Analyzer (Portable) 2020.9.2-nightly 108 Wednesday, September 2, 2020 Approved
Rust Analyzer (Portable) 2020.9.1-nightly 152 Tuesday, September 1, 2020 Approved
Rust Analyzer (Portable) 2020.08.31 147 Tuesday, September 1, 2020 Approved
Rust Analyzer (Portable) 2020.08.24 141 Sunday, August 30, 2020 Approved
Rust Analyzer (Portable) 2020.08.17 133 Sunday, August 23, 2020 Approved
Rust Analyzer (Portable) 2020.08.10 133 Thursday, August 13, 2020 Approved
Rust Analyzer (Portable) 2020.08.04 142 Thursday, August 13, 2020 Approved
Rust Analyzer (Portable) 2020.08.03 133 Thursday, August 13, 2020 Approved
Rust Analyzer (Portable) 2020.07.27 170 Tuesday, August 4, 2020 Approved
Rust Analyzer (Portable) 2020.07.20 135 Monday, August 3, 2020 Approved
Rust Analyzer (Portable) 2020.07.13 120 Monday, August 3, 2020 Approved
Rust Analyzer (Portable) 2020.7.9-nightly 161 Friday, July 10, 2020 Exempted
Rust Analyzer (Portable) 2020.7.8-nightly 140 Wednesday, July 8, 2020 Exempted
Rust Analyzer (Portable) 2020.7.7-nightly 162 Tuesday, July 7, 2020 Exempted
Rust Analyzer (Portable) 2020.07.06 174 Tuesday, July 7, 2020 Approved
Rust Analyzer (Portable) 2020.7.1-nightly 142 Thursday, July 2, 2020 Exempted
Rust Analyzer (Portable) 2020.06.29 131 Tuesday, July 7, 2020 Approved
Rust Analyzer (Portable) 2020.06.22 133 Thursday, July 2, 2020 Approved
Rust Analyzer (Portable) 2020.06.15 134 Wednesday, July 1, 2020 Approved
Rust Analyzer (Portable) 2020.06.08 134 Wednesday, July 1, 2020 Approved
Rust Analyzer (Portable) 2020.6.2-nightly 149 Tuesday, June 2, 2020 Exempted
Rust Analyzer (Portable) 2020.06.01 151 Tuesday, June 2, 2020 Approved
Rust Analyzer (Portable) 2020.6.1-nightly 146 Tuesday, June 2, 2020 Exempted
Rust Analyzer (Portable) 2020.5.27-nightly 128 Wednesday, May 27, 2020 Exempted
Rust Analyzer (Portable) 2020.05.25 144 Monday, May 25, 2020 Approved
Rust Analyzer (Portable) 2020.5.25-nightly 143 Monday, May 25, 2020 Approved
Rust Analyzer (Portable) 2020.5.24-nightly 122 Sunday, May 24, 2020 Exempted
Rust Analyzer (Portable) 2020.05.18 126 Sunday, May 24, 2020 Approved
Rust Analyzer (Portable) 2020.5.18-nightly 132 Monday, May 18, 2020 Exempted
Rust Analyzer (Portable) 2020.05.11 142 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.05.04 133 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.04.27 148 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.04.20 127 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.04.13 128 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.04.06 143 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.03.30 110 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.03.23 133 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.03.16 159 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.03.09 130 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.03.02 122 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.02.24 141 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.02.17 119 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.02.11 129 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.02.10 146 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.02.03 128 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.01.29 127 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.01.27 123 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.01.20 121 Sunday, May 17, 2020 Approved
Rust Analyzer (Portable) 2020.01.13 126 Sunday, May 17, 2020 Approved

Discussion for the Rust Analyzer (Portable) Package

Ground Rules:

  • This discussion is only about Rust Analyzer (Portable) and the Rust Analyzer (Portable) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Rust Analyzer (Portable), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus