]> git.lizzy.rs Git - rust.git/history - src
rustc: Better error when loading invalid libraries
[rust.git] / src /
2014-03-02 Alex Crichtonrustc: Better error when loading invalid libraries
2014-03-01 borsauto merge of #12639 : luqmana/rust/struct-variant...
2014-03-01 borsauto merge of #12638 : luqmana/rust/op-no-ref, r=alexcr...
2014-03-01 borsauto merge of #12627 : alexcrichton/rust/issue-12623...
2014-03-01 borsauto merge of #12626 : alexcrichton/rust/assert-eq...
2014-03-01 Alex Crichtonstd: Change assert_eq!() to use {} instead of {:?}
2014-03-01 Luqman Adenlibrustc: Don't ICE when operator traits are not implem...
2014-03-01 Alex Crichtonrustdoc: Capture all output from rustc by default
2014-03-01 Luqman Adenlibrustc: Pass the node id so we don't fail on destruct...
2014-03-01 borsauto merge of #12632 : fhahn/rust/issue-12507-rustdoc...
2014-02-28 borsauto merge of #12616 : alexcrichton/rust/size, r=huonw
2014-02-28 Alex Crichtonstd: Flag run_fmt() as #[inline(always)]
2014-02-28 Alex Crichtonstd: Avoid using "{:?}" in format strings
2014-02-28 Alex Crichtonstd: Remove lots of allocations from log settings
2014-02-28 borsauto merge of #12607 : alexcrichton/rust/io++, r=brson
2014-02-28 Alex Crichtonsyntax: Refactor diagnostics to focus on Writers
2014-02-28 borsauto merge of #12533 : alexcrichton/rust/svh, r=brson
2014-02-28 Alex Crichtonstd: Improve some I/O documentation
2014-02-28 Alex Crichtonsyntax: Expand format!() deterministically
2014-02-28 Alex Crichtonrustc: Add the concept of a Strict Version Hash
2014-02-28 Alex Crichtonrustc: Simplify crate loading constraints
2014-02-28 Alex Crichtonstd: Add cfg(test) to UnsafeArc assertions
2014-02-28 borsauto merge of #12622 : pnkfelix/rust/fsk-improve-vec...
2014-02-28 borsauto merge of #12595 : huonw/rust/pub-vis-typ, r=alexcr...
2014-02-28 Felix S. Klock IIImprove vec `partition` and `partitioned` method doc.
2014-02-28 Huon WilsonPublicise types/add #[allow(visible_private_types)...
2014-02-28 Huon Wilsonsync: Rename arc::Condvar to arc::ArcCondvar.
2014-02-28 Huon Wilsonrustc: implement a lint for publicly visible private...
2014-02-28 borsauto merge of #12621 : huonw/rust/time-test-doc, r...
2014-02-28 Huon WilsonAdd `time` crate to index, expand docs of `test`.
2014-02-28 borsauto merge of #12544 : erickt/rust/hash, r=acrichto
2014-02-28 borsauto merge of #12614 : alexcrichton/rust/rollup, r...
2014-02-28 borsauto merge of #12348 : brunoabinader/rust/libcollection...
2014-02-28 Nick CameronFix bytepos_to_file_charpos.
2014-02-28 Mickaël DelahayeFix typo in doc of Binary trait in std::fmt
2014-02-28 Alex Crichtonstd: Export the select! macro
2014-02-28 Felix S. Klock IIMinor modifications to Axel's tutorial improvements...
2014-02-28 Axel VialaDocumentation : Tutorial improvement...
2014-02-28 Chris MorganImprove the ctags function regular expression.
2014-02-28 Kevin Ballardpath: Implement windows::make_non_verbatim()
2014-02-28 Kevin Ballardpath: clean up some lint warnings and an obsolete comment
2014-02-28 Chris MorganUpdate Vim syntax file last change date.
2014-02-28 Chris MorganFix Vim section movements for standard Rust style.
2014-02-28 Chris MorganUpdate prelude items in Vim syntax.
2014-02-28 Chris MorganDowngrade `do` to a reserved keyword in Vim.
2014-02-28 Chris MorganHighlight the `mod` in `extern mod x;` as Error.
2014-02-28 Chris MorganFix syntax::ext::deriving{,::*} docs formatting.
2014-02-28 Brian Andersonrustc: Remove codemap and reachable from metadata encoder
2014-02-28 Felix CruxProvide a more helpful error for tests that fail due...
2014-02-28 Erick Tryzelaarstd: cut down on the memory usage of `SipHasher`
2014-02-28 Alex Crichtonrustc: Move local native libs back in link-args
2014-02-28 Brian LeibigAdd new target 'make dist-osx' to create a .pkg install...
2014-02-28 Erick Tryzelaarcollections: allow `HashMap` to work with generic hashers
2014-02-28 borsauto merge of #11979 : FlaPer87/rust/static, r=nikomatsakis
2014-02-27 borsauto merge of #12584 : alexcrichton/rust/windows-files...
2014-02-27 Alex Crichtonnative: Recognize EISDIR
2014-02-27 Alex Crichtonrustc: Use libnative for the compiler
2014-02-27 Alex Crichtonnative: Improve windows file handling
2014-02-27 Alex Crichtonstd: Small cleanup and test improvement
2014-02-27 Flavio PercocoImmutable static items should be `Freeze` Fixes #12432
2014-02-27 Flavio PercocoCloses #7364 Test case
2014-02-27 Flavio PercocoCloses #9243 Test case
2014-02-27 Flavio PercocoForbid certain types for static items
2014-02-27 Bruno de Oliveira... Replaced list::push() with unshift() based on List<T>
2014-02-27 Bruno de Oliveira... Refactored list::append() to be based on List<T>
2014-02-27 Bruno de Oliveira... Refactored list::tail() to be based on List<T>
2014-02-27 Bruno de Oliveira... Refactored list::head() to be based on List<T>
2014-02-27 Bruno de Oliveira... Replaced list::has() with list::contains()
2014-02-27 Bruno de Oliveira... Removed deprecated list::{iter,each}() functions
2014-02-27 Bruno de Oliveira... Implemented list::is_empty() based on Container trait
2014-02-27 Bruno de Oliveira... Implemented list::len() based on Container trait
2014-02-27 Bruno de Oliveira... Removed list::any() in favor of iter().any()
2014-02-27 Bruno de Oliveira... Removed list::find() in favor of iter().find()
2014-02-27 Bruno de Oliveira... Removed list::foldl() in favor of iter().fold()
2014-02-27 Bruno de Oliveira... Replaced list::each with iter() in get_region
2014-02-27 Bruno de Oliveira... Replaced list::each with iter() in Arenas's Drop impl
2014-02-27 Bruno de Oliveira... Implemented Items<'a, T> for List<T>
2014-02-27 Bruno de Oliveira... Modified list::from_vec() to return List<T>
2014-02-27 Bruno de Oliveira... Implement Eq for Cell<T>
2014-02-27 Bruno de Oliveira... Renamed variables
2014-02-27 Bruno de Oliveira... Replaced @List with ~List in Rust's recursive example
2014-02-27 Flavio PercocoForbid moves out of static items Closes #10577
2014-02-27 Flavio PercocoKeep track of Enum's with destructors
2014-02-27 Flavio PercocoImplement `has_dtor` method in TypeContents
2014-02-27 Flavio PercocoRemove unused type_is_pod function
2014-02-27 borsauto merge of #12581 : alexcrichton/rust/older-llvm...
2014-02-27 borsauto merge of #12486 : MicahChalmer/rust/emacs-fixes...
2014-02-27 borsauto merge of #12586 : chris-morgan/rust/fix-pretty...
2014-02-27 Chris MorganFix a pretty printer crash on `/***`.
2014-02-26 Alex Crichtonrustc: Get rustc compiling with LLVM 3.{3,4} again
2014-02-26 borsauto merge of #12572 : lifthrasiir/rust/owned-ptr-stati...
2014-02-26 borsauto merge of #12490 : zslayton/rust/doc-fix-12386...
2014-02-26 Kang Seonghoonrustc: Explicitly mention type params with missing...
2014-02-26 borsauto merge of #12570 : kyrias/rust/master, r=cmr
2014-02-26 borsauto merge of #12571 : eddyb/rust/kill-callee-id, r...
2014-02-26 Eduard BurtescuReplace callee_id with information stored in method_map.
2014-02-26 Eduard BurtescuRename a few typeck method-related structures to UpperC...
2014-02-26 Johannes Löthbergtutorial: Missing tildes around .notrust block
2014-02-26 Florian HahnMark top level module as a crate in rustdoc, closes...
2014-02-26 borsauto merge of #12547 : jagtalon/rust/jag/rust/tutorial...
next