]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2015-01-30 Alex Crichtonrollup merge of #21720: huonw/simd-cmp
2015-01-30 Alex Crichtonrollup merge of #21718: alexcrichton/stabilize-from-str
2015-01-30 Alex Crichtonrollup merge of #21706: reem/missing-zeroable-impl...
2015-01-30 Alex Crichtonrollup merge of #21704: FlaPer87/macro-reexport
2015-01-30 Alex Crichtonrollup merge of #21702: nikomatsakis/issue-21636
2015-01-30 Alex Crichtonrollup merge of #21693: tomjakubowski/rustdoc-fix-21442
2015-01-30 Alex Crichtonrollup merge of #21678: vojtechkral/threads-native...
2015-01-30 Alex Crichtonrollup merge of #21495: richo/unexported-unmangled...
2015-01-30 Alex Crichtonrollup merge of #21494: jatinn/jsnav
2015-01-30 Alex Crichtonrollup merge of #21385: nick29581/save-fix2
2015-01-30 Alex Crichtonrollup merge of #20790: japaric/for-loops
2015-01-30 borsAuto merge of #21495 - richo:unexported-unmangled-lint...
2015-01-30 Björn SteinbrinkAdd missing calls to llvm.lifetime.end intrinsics
2015-01-30 Luke SteensenFix a missed io => old_io
2015-01-30 Alex Crichtonrustc: Use --extern to always override
2015-01-30 Alex Crichtonstd: Stabilize the std::fmt module
2015-01-30 Alex Crichtonstd: Stabilize FromStr and parse
2015-01-30 Steve KlabnikDon't use as_slice() in docs
2015-01-30 Jorge Apariciofix some cfail tests
2015-01-30 Jorge Apariciofixes after rebase
2015-01-30 Jorge Aparicios/while let/for/g now that #21245 has been fixed
2015-01-30 Jorge Aparicioadd test for #21655
2015-01-30 Jorge Aparicioadd test for #20605
2015-01-30 Jorge Apariciofix recursive call
2015-01-30 Jorge Aparicioremove the `Iterator` lang item
2015-01-30 Jorge Apariciosmoke out remaining bugs
2015-01-30 Jorge Aparicioremove Copy impls from iterators
2015-01-30 Jorge Aparicioadd tests
2015-01-30 Jorge Aparicioremove dead code
2015-01-30 Jorge Aparicioremove more `ExprForLoop`s
2015-01-30 Jorge Apariciocustom message for refutable patterns in for loops
2015-01-30 Jorge Apariciofix tests
2015-01-30 Jorge Apariciofix fallout
2015-01-30 Jorge Aparicioimplement for loop desugaring
2015-01-30 Jorge Apariciocore: add the `IntoIterator` trait
2015-01-30 borsAuto merge of #21604 - nikomatsakis:closure-move-indiv...
2015-01-30 borsAuto merge of #21717 - nick29581:prelude-fullrange...
2015-01-30 Niko MatsakisAddress @eddyb nit by simplifying `ClosureEnv`.
2015-01-30 Niko MatsakisUse `#[rustc_paren_sugar]` as a more extensible way...
2015-01-30 Richo Healeylint: Add test for no_mangle
2015-01-30 Niko MatsakisAllow individual upvars to be inferred to move semantic...
2015-01-30 Niko MatsakisRemove the capture mode map and just store the capture...
2015-01-30 borsAuto merge of #21351 - eddyb:x-coerce--a-new-hope,...
2015-01-30 Richo Healeyrt: allow unexported functions
2015-01-30 Richo Healeylint: warn about #[no_mangle] fns that aren't exported
2015-01-30 Tobias BucherRemove all `i` suffixes
2015-01-30 P1startMake the naming lints only warn on names with upper...
2015-01-29 Brian Andersondoc: Add links to users.rust-lang.org
2015-01-29 Brian AndersonRegister snaps
2015-01-29 Nick CameronChange from core::ops::RangeFull to std::ops
2015-01-29 Nick CameronRename FullRange to RangeFull
2015-01-29 Nick CameronRemove FullRange from the prelude etc.
2015-01-29 Nick CameronUse absolute path to FullRange, rather than assuming...
2015-01-29 Nick CameronReview changes
2015-01-29 Nick CameronMake the save-analysis smoke test more thorough
2015-01-29 Nick Cameronsave-anlaysis: misc bug fixes
2015-01-29 Nick Cameronsave-analysis: handle absolute paths properly
2015-01-29 Nick Cameronsave-analysis: Use the correct span for `extern crate`
2015-01-29 Nick Cameronsave-analysis: don't include the crate name in fully...
2015-01-29 borsAuto merge of #21692 - pnkfelix:fsk-fix-coerce-match...
2015-01-29 Eduard BurtescuImplement deref coercions (rust-lang/rfcs#241).
2015-01-29 Eduard Burtescurustc_typeck: cleanup coercion logic that has been...
2015-01-29 Eduard Burtescurustc_typeck: use FnCtxt in coercion, instead of mimick...
2015-01-29 Eduard Burtescurustc: move infer::coercion to rustc_typeck.
2015-01-29 borsAuto merge of #21691 - edwardw:double-closure, r=nikoma...
2015-01-29 Tom Jakubowskirustdoc: Render new `self` syntax in `use`
2015-01-29 borsAuto merge of #21677 - japaric:no-range, r=alexcrichton
2015-01-29 Loïc DamienFix unknown option message for -Z
2015-01-29 Niko MatsakisMake subtyping for projection types stricter. Fixes...
2015-01-29 Jorge Apariciobring back `#[derive(Show)]` with a deprecation warning
2015-01-29 Jorge Apariciofix import in cfail test
2015-01-29 Jorge Aparicios/Show/Debug/g
2015-01-29 Jorge Aparicioremove #[old_impl_check] now that #21363 has been fixed
2015-01-29 Jorge Aparicioregister snaphots
2015-01-29 Jorge Aparicioundo some conversions
2015-01-29 Jorge Aparicioremove unused imports
2015-01-29 Jorge Apariciofix inference fallout
2015-01-29 Jorge Aparicioconvert remaining `range(a, b)` to `a..b`
2015-01-29 Jorge Aparicio`for x in range(a, b)` -> `for x in a..b`
2015-01-29 Jorge Aparicio`range(a, b).foo()` -> `(a..b).foo()`
2015-01-29 borsAuto merge of #21730 - Manishearth:rollup, r=alexcrichton
2015-01-29 Flavio PercocoFeature gate macro_reexport. Fixes #20906
2015-01-29 Alex Crichtonrustc: Print out a prettier version of crate types
2015-01-29 Steve KlabnikPull configs out into individual repositories
2015-01-29 borsAuto merge of #21680 - japaric:slice, r=alexcrichton
2015-01-29 Steven FacklerFix up check to bypass internal buffer
2015-01-29 Michael NeumannFix wrong use std::io -> old_io
2015-01-28 borsAuto merge of #21522 - nikomatsakis:assoc-type-ice...
2015-01-28 Manish GoregaokarRollup merge of 21643 - semarie:break-local_stage0...
2015-01-28 Manish GoregaokarRollup merge of 21651 - nelsonjchen:add--webkit-overflo...
2015-01-28 Manish GoregaokarRollup merge of 21654 - FlaPer87:unify-impls, r=alexcri...
2015-01-28 Manish GoregaokarRollup merge of 21662 - oli-obk:hashmap_enum_json,...
2015-01-28 Manish GoregaokarRollup merge of 21663 - tbu-:pr_doc_cell_static_safety...
2015-01-28 Manish GoregaokarRollup merge of 21671 - akiss77:pr-aarch64-fastisel0...
2015-01-28 Manish GoregaokarRollup merge of 21681 - japaric:no-warn, r=alexcrichton
2015-01-28 Manish GoregaokarRollup merge of 21708 - brson:internals, r=huonw
2015-01-28 Manish GoregaokarRollup merge of 21711 - thepowersgang:patch-1, r=alexcr...
2015-01-28 Manish GoregaokarRollup merge of 21722 - orpheuslummis:patch-1, r=Gankro
2015-01-28 Manish GoregaokarRollup merge of #21640 - retep998:rmdir, r=alexcrichton
2015-01-28 Manish GoregaokarRollup merge of #21626 - Ms2ger:various-cleanup, r...
next