about summary refs log tree commit diff
path: root/src/cargo/cargo.rs
AgeCommit message (Collapse)AuthorLines
2012-11-03library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as ↵Daniel Patterson-1941/+0
per #3543
2012-10-22Merge remote-tracking branch 'original/incoming' into incomingSimon BD-22/+21
2012-10-17Fix long linesTim Chevalier-10/+10
2012-10-14Use gpgv for signature verification in cargoLuca Bruno-19/+18
Parsing gpg output for signature verification is not recommended, as it can break easily (and doesn't work with i18n). This patch makes use of gpgv, as suggested by gpg authors: http://lists.gnupg.org/pipermail/gnupg-users/2004-August/023141.html This closes #3762. Signed-off-by: Luca Bruno <lucab@debian.org>
2012-10-12Make moves explicit in cargoTim Chevalier-3/+3
2012-10-06Merge remote-tracking branch 'original/incoming' into incomingSimon BD-1/+2
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-10-03Merge remote-tracking branch 'original/incoming' into incomingSimon BD-146/+138
Conflicts: src/libstd/json.rs src/libstd/sort.rs
2012-10-02libstd: Switch off legacy modes in both core and std.Patrick Walton-2/+2
2012-09-28demode vecNiko Matsakis-1/+1
2012-09-27Put function argument last in sort function. Fixes #3265.Simon BD-1/+1
2012-09-26Fix fuzzer/cargo breakageBrian Anderson-2/+2
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-2/+2
2012-09-26libstd: port json over to serialization2Erick Tryzelaar-60/+59
2012-09-26cargo: capcase typesErick Tryzelaar-81/+74
2012-09-25Demode core::resultBrian Anderson-5/+5
2012-09-23Register snapshots. Remove redundant Eq impls, Makefile hacksBrian Anderson-33/+0
2012-09-23core: Demode optionBrian Anderson-4/+4
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-3/+3
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+2
#[legacy_exports];
2012-09-20Revert "syntax: Make attributes sendable for rustdoc's benefit"Brian Anderson-3/+3
This reverts commit 90e3665fa79d32c3188169cfa992516fb36b81a8.
2012-09-20syntax: Make attributes sendable for rustdoc's benefitBrian Anderson-3/+3
2012-09-20rustc: De-mode all overloaded operatorsPatrick Walton-0/+33
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-21/+21
2012-09-19Remove redundant hashmap constructor functions.Graydon Hoare-5/+5
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-6/+7
Note that the method foo.each() is not de-moded, nor the other vec routines.
2012-09-18cargo: Fix copiesBrian Anderson-32/+34
2012-09-18make filetype() include the "." (fixes #3412)Niko Matsakis-1/+1
2012-09-13Convert package list to dvec (cc #2280)Niko Matsakis-32/+27
2012-09-10Convert std::map to camel caseBrian Anderson-5/+5
2012-09-07Convert 'again' to 'loop'. Remove 'again' keywordBrian Anderson-1/+1
2012-09-07rustc: Add an "ne" method to the Eq trait, and implement it everywherePatrick Walton-0/+1
2012-09-05cargo: "import" -> "use"Patrick Walton-12/+12
2012-09-04Remove 'with'Brian Anderson-1/+1
2012-09-01Demode sort.rsKevin Cantu-1/+2
2012-08-30cargo: Fix some lack of knowledge of basic algebraic identitiesPatrick Walton-18/+3
2012-08-29rustc: Make `<=`, `>=`, and `>` use traits as wellPatrick Walton-0/+18
2012-08-29rustc: Make `<` and `=` into traitsPatrick Walton-0/+25
2012-08-28CamelCasify lots of stdBen Striegel-28/+28
2012-08-27Convert core::result to camel caseBrian Anderson-16/+16
2012-08-26Camel case the option typeBrian Anderson-95/+95
2012-08-25Fix some unused variable warningsBrian Anderson-26/+20
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-235/+242
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-74/+74
2012-08-22intern identifiersPaul Stansifer-15/+17
2012-08-14Convert more core types to camel caseBrian Anderson-1/+1
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-67/+67
2012-08-05Switch alts to use arrowsBrian Anderson-174/+166
2012-08-02Remove modes from map API and replace with regions.Niko Matsakis-1/+1
API is (for now) mostly by value, there are options to use it by reference if you like. Hash and equality functions must be pure and by reference (forward looking to the day when something like send_map becomes the standard map).
2012-08-01Convert ret to returnBrian Anderson-75/+75