summary refs log tree commit diff
path: root/src/cargo
AgeCommit message (Collapse)AuthorLines
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-10-02libstd: Switch off legacy modes in both core and std.Patrick Walton-2/+2
2012-09-28Add allow(deprecated_\*) to syntax, rustc, rustdoc, et alBrian Anderson-0/+2
2012-09-28demode vecNiko Matsakis-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-25use + mode for (almost) everything when not using legacy modesNiko Matsakis-0/+2
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/+4
#[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-22/+22
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-18Add allow(non_camel_case_types) to unconverted cratesBrian Anderson-0/+1
2012-09-13Convert package list to dvec (cc #2280)Niko Matsakis-32/+27
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-4/+4
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-05rustc: "import" -> "use" in .rc filesPatrick Walton-1/+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-30Bump version to 0.4Brian Anderson-5/+5
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-247/+259
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-78/+78
2012-08-01Clean out transitional lint.Graydon Hoare-7/+0
2012-07-31rustc: Parse by-reference pattern bindings with the "ref" keywordPatrick Walton-9/+9