| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-07-11 | Fix some version numbers. | Graydon Hoare | -5/+5 | |
| 2012-07-09 | Switch 'cont' to 'again' everywhere. Close #2229. | Graydon Hoare | -4/+4 | |
| 2012-07-06 | cargo: Fix building dependencies | Erick Tryzelaar | -2/+2 | |
| 2012-07-05 | Mostly change TODOs to FIXMEs and annotate them | Tim Chevalier | -5/+7 | |
| But, one change in io to implement a TODO suggestion (using a const u8) | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -44/+42 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -4/+4 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -63/+63 | |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -52/+56 | |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -11/+12 | |
| 2012-06-21 | Remove some singleton vector appends. | Eric Holk | -2/+2 | |
| 2012-06-21 | Comments only: annotate FIXMEs in cargo | Tim Chevalier | -4/+5 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -2/+2 | |
| 2012-06-15 | Add the interner to parse_sess. | Paul Stansifer | -9/+1 | |
| 2012-06-13 | Merge remote-tracking branch 'erickt/master' into incoming | Brian Anderson | -13/+13 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -16/+16 | |
| 2012-06-13 | cargo: Recursively copy install fragments | Erick Tryzelaar | -1/+1 | |
| This is useful on OS X in order to handle the .dSYM files. | ||||
| 2012-06-13 | Fix cargo not making ./.cargo dir | Erick Tryzelaar | -1/+1 | |
| 2012-06-13 | Make cargo a little more ideomatic | Erick Tryzelaar | -11/+11 | |
| 2012-06-12 | Fix json no-implicit-copy warnings | Erick Tryzelaar | -21/+21 | |
| 2012-06-12 | Clean up cargo imports. | Erick Tryzelaar | -3/+0 | |
| 2012-06-12 | std: Add a to_str impl for json::error. | Erick Tryzelaar | -3/+4 | |
| 2012-06-12 | cargo: remove leading underscores | Erick Tryzelaar | -24/+24 | |
| 2012-06-10 | cargo: Do builds under ./.cargo/work in local mode | Brian Anderson | -1/+1 | |
| Doing builds outside of the cwd is breaking rustc's logic for locating crates in ./.cargo/lib. Ideally, cargo would not be changing directories at all. | ||||
| 2012-06-09 | cargo: Update for recent language changes | Brian Anderson | -95/+91 | |
| 2012-06-09 | Merge remote-tracking branch 'z0w0/cargo-deps' | Brian Anderson | -249/+1004 | |
| Conflicts: src/cargo/cargo.rs | ||||
| 2012-06-09 | Revert "Merge remote-tracking branch 'z0w0/cargo-deps'" | Brian Anderson | -1004/+249 | |
| This reverts commit 106fe8b5e8f97e824c18694410c7b64c0afc6589, reversing changes made to 748bd12dc787a486e102be5ae19b2b1fb3263c0c. | ||||
| 2012-06-09 | Revert "cargo: Add a FIXME about immutability" | Brian Anderson | -2/+0 | |
| This reverts commit 978ff7972c828e2a2e4b39ed503f05be76f3424f. | ||||
| 2012-06-09 | cargo: Add a FIXME about immutability | Brian Anderson | -0/+2 | |
| 2012-06-09 | Merge remote-tracking branch 'z0w0/cargo-deps' | Brian Anderson | -249/+1004 | |
| Conflicts: src/cargo/cargo.rs | ||||
| 2012-06-07 | Cargo: Added experimental dependency support (solves from crate files) | Zack Corr | -95/+291 | |
| 2012-06-06 | avoid unnecessary by-mut-ref in cargo | Niko Matsakis | -3/+3 | |
| 2012-06-06 | Cargo: Added new source scheme, added sources CLI management, added source ↵ | Zack Corr | -189/+748 | |
| dumping | ||||
| 2012-06-04 | Make vecs implicitly copyable for all of our projects. | Michael Sullivan | -2/+2 | |
| 2012-06-04 | Get rid of warnings from instantiating typarams with non-implicitly copyable ↵ | Michael Sullivan | -1/+3 | |
| types. | ||||
| 2012-06-02 | cargo: Require hexidecimals in uuids | Brian Anderson | -6/+18 | |
| 2012-06-02 | cargo: Add test for is_uuid | Brian Anderson | -0/+10 | |
| 2012-06-02 | Fix cargo to uninstall binaries by name correctly | Zack Corr | -4/+23 | |
| 2012-06-02 | Fix cargo to install from archives correctly | Zack Corr | -17/+16 | |
| 2012-06-02 | Correct cargo usage line going over 78 chars | Zack Corr | -2/+2 | |
| 2012-06-02 | Cargo revamp: root in home directory, automatic init & sync for first time ↵ | Zack Corr | -157/+342 | |
| usage, uninstallation, improved installation usage and other usage changes. Closes #2475. Closes #1353. | ||||
| 2012-05-31 | Rename librustsyntax to libsyntax | Kevin Cantu | -1/+1 | |
| Per issue #2418. | ||||
| 2012-05-29 | rustc: Move filesearch into metadata mod | Brian Anderson | -2/+2 | |
| It's not that related to metadata, but metadata needs it and it will probably be useful for doing dynamic loading. | ||||
| 2012-05-28 | Allow installing arbitrary git cargos | Erick Tryzelaar | -0/+20 | |
| 2012-05-28 | (cargo) fix old typo for installation to libdir | Kevin Cantu | -1/+1 | |
| 2012-05-27 | (cargo) added a rough fix for installed exe permissions | Kevin Cantu | -1/+1 | |
| Since `os::copy_file` wasn't preserving the executable permissions, this reverts back to `run::run_program` and `cp` to install the packages. | ||||
| 2012-05-27 | (cargo) fixed a package installation bug, cleaned up usage | Kevin Cantu | -57/+81 | |
| This fixes a bug where os::copy_file was called with a directory name, and updates the command line options and usage messages for clarity. | ||||
| 2012-05-25 | Get rid of many implicit copies as a preliminary to Issue #2448. | Michael Sullivan | -6/+6 | |
| 2012-05-19 | Remove some dead code. | Erick Tryzelaar | -7/+0 | |
| 2012-05-18 | Using const vector slices for more vec functions. | Eric Holk | -10/+12 | |
| 2012-05-13 | rustc: Eliminate some indirection to the syntax crate | Brian Anderson | -3/+4 | |
