about summary refs log tree commit diff
path: root/src/rust-installer
AgeCommit message (Collapse)AuthorLines
2017-05-14Update to the oxidized rust-installerJosh Stone-0/+0
2017-05-05Update rust-installer to fix rust-lang-nursery/rustup.rs#1092Brian Anderson-0/+0
2017-05-03Emit information about XZ packages in manifestAndrea Canciani-0/+0
2016-10-05Update rust-installer. Fixes #36451Brian Anderson-0/+0
2016-08-23Update rust-installer. Fixes #35840Brian Anderson-0/+0
2015-07-10Upgrade rust-installer. Fixes install on Fedora-based Linuxes.Brian Anderson-0/+0
2015-07-08Update the installer to support netbsdAlex HotShot Newman-0/+0
2015-06-18updating installer to fix install issues on bitrigDave Huseby-0/+0
2015-05-11Update rust-installerBrian Anderson-0/+0
2015-05-10Update AUTHORS.txt and RELEASES.md for 1.0Brian Anderson-0/+0
2015-04-22Update rust-installer. Fixes problems with CDPATHBrian Anderson-0/+0
2015-04-02Upgrade rust-installerBrian Anderson-0/+0
2015-03-26Update rust-installer. Fixes --help and interop with NixOSBrian Anderson-0/+0
2015-02-12Upgrade rust-installerBrian Anderson-0/+0
2015-01-09Fix revert of rust-installerBrian Anderson-0/+0
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-0/+0
fmt::Show is for debugging, and can and should be implemented for all public types. This trait is used with `{:?}` syntax. There still exists #[derive(Show)]. fmt::String is for types that faithfully be represented as a String. Because of this, there is no way to derive fmt::String, all implementations must be purposeful. It is used by the default format syntax, `{}`. This will break most instances of `{}`, since that now requires the type to impl fmt::String. In most cases, replacing `{}` with `{:?}` is the correct fix. Types that were being printed specifically for users should receive a fmt::String implementation to fix this. Part of #20013 [breaking-change]
2015-01-03Update rust-installer. Fixes #20479Brian Anderson-0/+0
2014-12-29Upgrade rust-installer to v2Brian Anderson-0/+0
2014-12-11Use rust-installer for installationBrian Anderson-0/+0
This is just a refactoring of the current installer so that Rust and Cargo use the same codebase. cc #16456