Uh oh!
There was an error while loading. Please reload this page.
Added rust tool similar to go's go tool - #5014
Merged
Merged
Conversation
Kimundi
commented
Feb 18, 2013
ContributorAuthor
Just noticed that I forgot to actually run Edit: Getting those warnings on I guess I have to modify the makefile definition responsible for those target triples to use |
…tratected doc 'rust'
Kimundi
commented
Feb 19, 2013
ContributorAuthor
Made the warnings go away, letting |
Kimundi
commented
Feb 19, 2013
ContributorAuthor
|
bors added a commit
that referenced
this pull request
Feb 19, 2013
This implements a rust tool similar to go's go tool. It acts as a central hub for the tools rustc, rustdoc, rustpkg, rusti, and also provides shortcuts for directly compiling and running a source file either as a normal or a test executable. Default usage message: ``` The rust tool is a convenience for managing rust source code. It acts as a shortcut for programs of the rust tool chain. Usage: rust <command> [arguments] The commands are: build compile rust source files run build a executable, and run it test build a test executable, and run it doc generate documentation from doc comments pkg download, build, install rust packages sketch run a rust interpreter help show detailed usage of a command Use "rust help <command>" for more information about a command. ```
Closed
bors added a commit
to rust-lang-ci/rust
that referenced
this pull request
May 2, 2020
Fix redundant_clone lint not working with PathBuf and OsString rust-lang/rust-clippy#4825 diabled MIR optimization in clippy, including `rustc_mir::transform::InstCombine` which reduces `&(*x)` to `x`. This PR tries to unwrap `&*` when looking into `mir::Rvalue`s. Fixesrust-lang#5014. --- changelog: fixed `redundant_clone` lint not working with `PathBuf` and `OsString`
RalfJung added a commit
to RalfJung/rust
that referenced
this pull request
May 10, 2026
support chmod and fchmod on unix hosts
U007D pushed a commit
to U007D/rust-mos
that referenced
this pull request
Aug 21, 2026
5014: Use only one code-path for parsing fixtures r=matklad a=matklad This removes leading newlines everywhere, shifting all ranges in tests by one bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This implements a rust tool similar to go's go tool. It acts as a central hub for the tools rustc, rustdoc, rustpkg, rusti, and also provides shortcuts for directly compiling and running a source file either as a normal or a test executable. Default usage message: