Downloads:
1,015
Downloads of v 2024.1.0:
106
Last Update:
27 May 2024
Package Maintainer(s):
Software Author(s):
- JetBrains s.r.o.
Tags:
rust ide jetbrains admin- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
RustRover
This is not the latest version of RustRover available.
- 1
- 2
- 3
2024.1.0 | Updated: 27 May 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,015
Downloads of v 2024.1.0:
106
Maintainer(s):
Software Author(s):
- JetBrains s.r.o.
RustRover 2024.1.0
This is not the latest version of RustRover available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by JetBrains s.r.o. The inclusion of JetBrains s.r.o. trademark(s), if any, upon this webpage is solely to identify JetBrains s.r.o. goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install RustRover, run the following command from the command line or from PowerShell:
To upgrade RustRover, run the following command from the command line or from PowerShell:
To uninstall RustRover, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download rustrover --internalize --version=2024.1.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade rustrover -y --source="'INTERNAL REPO URL'" --version="'2024.1.0'" [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 rustrover -y --source="'INTERNAL REPO URL'" --version="'2024.1.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install rustrover
win_chocolatey:
name: rustrover
version: '2024.1.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'rustrover' do
action :install
source 'INTERNAL REPO URL'
version '2024.1.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller rustrover
{
Name = "rustrover"
Version = "2024.1.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'rustrover':
ensure => '2024.1.0',
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.
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved by moderator Windos on 29 May 2024.
Jetbrains IDE for Rust.
See https://www.jetbrains.com/rust/ for more information.
Installation Parameters
/AddBinToPath
- whether to add "bin" folder to PATH- Not used by default
/AddToContextMenu
- whether to add "Open Folder as Project" into the context menu- Not used by default
/CreateFileAssoc
- whether to associate with .rs files- Not used by default
/DesktopIcon
- whether to create desktop shortcut- Not used by default
/InstallDir
- where to install binaries- Default value:
"$env:ProgramFiles\JetBrains\RustRover [VERSION]"
- Default value:
Examples
Install into
D:\Rust-IDE
directorychoco install rustrover --params "/InstallDir:D:\Rust-IDE"
Install and use
/AddBinToPath
,/AddToContextMenu
and/InstallDir
choco install rustrover --params "'/AddBinToPath /AddToContextMenu /InstallDir:D:\Rust-IDE'"
Uninstallation Parameters
/DeleteCache
- whether to delete cache and local history- Not used by default
/DeleteSettings
- whether to delete settings and installed plugins- Not used by default
Examples
- Uninstall and delete both cache and settings
choco uninstall rustrover --params "'/DeleteCache /DeleteSettings'"
$ErrorActionPreference = 'Stop'
$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
$ahkFile = "$toolsDir\uninstall.ahk"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'RustRover*'
fileType = 'EXE'
validExitCodes= @(0)
}
$additionalArgs = Get-PackageParameters
if($additionalArgs['DeleteCache']) {
(Get-Content $ahkFile | % { $_ -replace "deleteCache :=.*", "deleteCache := true" }) | Set-Content $ahkFile
}
if($additionalArgs['DeleteSettings']) {
(Get-Content $ahkFile | % { $_ -replace "deleteSettings :=.*", "deleteSettings := true" }) | Set-Content $ahkFile
}
[array]$keys = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($keys.Count -eq 1) {
$packageArgs['file'] = $keys[0].UninstallString
$ahkProcess = Start-Process `
-FilePath 'AutoHotKey' `
-ArgumentList "`"$ahkFile`"" `
-PassThru
Uninstall-ChocolateyPackage @packageArgs
Stop-Process $ahkProcess -Force
} elseif ($keys.Count -eq 0) {
Write-Warning "$($packageArgs['packageName']) has already been uninstalled by other means."
} elseif ($keys.Count -gt 1) {
Write-Warning "$($keys.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$keys | % { Write-Warning "- $($_.DisplayName)" }
}
; Installation mode. It can be user or admin.
; NOTE: for admin mode please use "Run as Administrator" for command prompt to avoid UAC dialog.
mode=admin
; Desktop shortcut for launchers
launcher64=0
; Add launchers path to PATH env variable
updatePath=0
; Add "Open Folder as Project" to context menu
updateContextMenu=0
; List of associations. To create an association change value to 1.
.rs=0
#NoTrayIcon
SetTitleMatchMode(1)
SetControlDelay(-1)
deleteCache := false
deleteSettings := false
winTitle := "RustRover Uninstall"
WinWait(winTitle)
if WinExist(winTitle)
{
WinActivate(winTitle)
if (deleteCache) {
ControlClick("Button5", winTitle,,,, "NA") ; Check cache
}
if (deleteSettings) {
ControlClick("Button6", winTitle,,,, "NA") ; Check settings
}
Sleep(50)
ControlClick("Button2", winTitle,,,, "NA") ; Uninstall
Sleep(100)
while ControlGetEnabled("Button2", winTitle) = 0
{
Sleep(100)
}
Sleep(50)
ControlClick("Button2", winTitle,,,, "NA") ; Close
}
Log in or click on link to see number of positives.
- rustrover.2024.1.0.nupkg (1431305f9180) - ## / 67
- RustRover-2024.1.exe (de3a895305e9) - ## / 35
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 |
---|---|---|---|---|
RustRover 2024.2.5 | 91 | Thursday, November 7, 2024 | Approved | |
RustRover 2024.2.4 | 68 | Thursday, October 24, 2024 | Approved | |
RustRover 2024.2.3 | 79 | Tuesday, October 1, 2024 | Approved | |
RustRover 2024.2.2 | 45 | Wednesday, September 25, 2024 | Approved | |
RustRover 2024.2.1 | 58 | Tuesday, September 17, 2024 | Approved | |
RustRover 2024.2 | 27 | Thursday, November 7, 2024 |
Waiting for Maintainer
|
|
RustRover 2024.1.8 | 81 | Tuesday, August 20, 2024 | Approved | |
RustRover 2024.1.7 | 53 | Wednesday, August 7, 2024 | Approved | |
RustRover 2024.1.6 | 94 | Wednesday, July 24, 2024 | Approved | |
RustRover 2024.1.5 | 66 | Monday, July 15, 2024 | Approved | |
RustRover 2024.1.4 | 38 | Saturday, July 13, 2024 | Exempted | |
RustRover 2024.1.2 | 32 | Saturday, June 15, 2024 | Approved | |
RustRover 2024.1.0 | 106 | Monday, May 27, 2024 | Approved | |
RustRover 241.15989.180 | 108 | Saturday, May 11, 2024 | Approved | |
RustRover 241.15989.101 | 37 | Sunday, April 28, 2024 | Approved | |
RustRover 233.15026.24 | 32 | Friday, April 5, 2024 | Exempted |
JetBrains s.r.o.
-
- autohotkey.portable (≥ 2.0.0)
Ground Rules:
- This discussion is only about RustRover and the RustRover 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 RustRover, 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.