]> git.lizzy.rs Git - rust.git/shortlog
rust.git
2012-02-15 Graydon HoareMerge pull request #1808 from kevina/macro-fixups
2012-02-15 Graydon HoareMerge pull request #1845 from mernen/master
2012-02-15 Kevin AtkinsonWhen parsing a source string, fail when the entire...
2012-02-15 Kevin AtkinsonBug fix to accept $ in 0th pos, (ie #ast{$(x) + ...}).
2012-02-15 Kevin AtkinsonCorrectly handle the character position at the EOF.
2012-02-15 Kevin AtkinsonUse file_substr rather than <anon> when re-parsing...
2012-02-15 Kevin AtkinsonDo a better job of reporting source location for files...
2012-02-15 Kevin AtkinsonChange file_substr to allow for external strings.
2012-02-15 Daniel LuzDuplicate keyword
2012-02-15 Daniel LuzFixed missing quote on bracket literal
2012-02-15 Brian Andersoncore: Add core::future
2012-02-14 Brian Andersonrt: Reconfigure the C stack for valgrind each time...
2012-02-14 Brian Andersoncore: Add comm::peek for looking into the message queue
2012-02-14 Brian Andersonrt: Don't allocate a C stack for tasks that already...
2012-02-14 Graydon HoareMerge pull request #1842 from uasi/fix-typo
2012-02-14 Tomoki AonumaFix typos in the reference manual
2012-02-14 Brian Andersonrt: Don't kill tasks while they are in a callback from C
2012-02-14 Brian Andersontest: Test yielding in crust functions
2012-02-14 Brian Andersonrt: Maintain stack ptrs correctly when returning from...
2012-02-14 Brian Andersonrustc: Translate crust functions
2012-02-14 Brian Andersonrustc: Add trans_crust_fn. Don't do anything special yet
2012-02-14 Brian Andersonrustc: Extract native function generation into trans...
2012-02-14 Brian Andersonrt: Add a Rust callback debugging function
2012-02-14 Brian Andersonrustc: Translate the value of crust functions
2012-02-14 Brian Andersonrustc: Typecheck crust functions as *u8
2012-02-14 Brian Andersonrustc: Parse crust functions
2012-02-14 Brian Andersonrustc: Add crust functions to the AST
2012-02-14 Brian AndersonMerge pull request #1831 from killerswan/str_fixes
2012-02-14 Brian AndersonMerge pull request #1836 from tychosci/cargo-fix
2012-02-14 Patrick Waltontutorial: Mention how the destructor works in the secti...
2012-02-14 Marijn HaverbekeFix double-cleanup bug in patch 57c7645cb83e609ff
2012-02-14 Marijn HaverbekeXFAIL bind-methods test until I figure out what is...
2012-02-14 Marijn HaverbekeAllow static method calls to be bound
2012-02-14 Marijn HaverbekeAdd [X].len() to core, use it in trans modules
2012-02-14 Tycho Scicargo: Warn if "gpg" is not available
2012-02-14 Tycho Scicargo: Use $sysroot/bin/rustc to compile crate
2012-02-13 Brian Andersontest: Add test for #1821
2012-02-13 Brian Andersonbuild: Start downloading FreeBSD snaps from the officia...
2012-02-13 Brian AndersonRegister snapshots
2012-02-13 Marijn HaverbekeRemove some needlessly repetetive casts in metadata...
2012-02-13 Marijn HaverbekeTrack purity/unsafety of iface and impl methods
2012-02-13 Graydon HoareMerge pull request #1827 from uasi/from-cstr
2012-02-13 Marijn HaverbekeFix bug in handling of block functions in last-use...
2012-02-13 Niko Matsakiscorrect error message and add to test
2012-02-13 Niko Matsakisadd serialization library; convert ebml lib to use...
2012-02-13 Niko Matsakisdo not fail if iface/impl method have different number...
2012-02-13 Niko Matsakisremove leading ::, new tests
2012-02-13 Marijn HaverbekeMake sure simplify_type simplifies all pointer types
2012-02-13 Kevin Cantu(core::str) more test cases
2012-02-13 Kevin Cantu(core::str) added FIXME comment
2012-02-13 Kevin Cantu(core::str) rename find_chars -> find
2012-02-13 Kevin Cantu(core::str) add find_bytes and export it...
2012-02-13 Kevin Cantu(core::str) add find_chars and b2c_pos functions
2012-02-13 Kevin Cantu(core::str) use slice_bytes in starts_with for a little...
2012-02-13 Brian Andersoncore: Add iter::filter_map
2012-02-13 Brian Andersoncore: Add iterable implementation for strings
2012-02-13 Brian Andersoncore: Rename iter::reverse to iter::reversed for consis...
2012-02-13 Brian Andersoncore: Add abs functions for signed integer types
2012-02-13 Brian Andersoncore: Add compl functions for the rest of the integer...
2012-02-13 Brian AndersonMerge pull request #1826 from brson/iter
2012-02-13 Tomoki Aonumafrom_cstr and from_cstr_len are not unsafe, I think
2012-02-13 Tomoki Aonumacore::str::from_cstr uses from_cstr_len
2012-02-13 Tomoki AonumaAvoid extra memory allocations in core::str::from_cstr_len
2012-02-13 Brian Andersoncore: Implement foldl/r without copying the accumulator
2012-02-13 Brian Andersoncore: Add iter::foldr
2012-02-13 Brian Andersoncore: Add iter::count
2012-02-13 Brian Andersoncore: Add iter::reverse
2012-02-13 Brian Andersoncore: Add iter::min/max
2012-02-13 Brian Andersonbuild: Set RUST_THREADS=1 on FreeBSD to avoid a threadi...
2012-02-13 Brian Andersonbuild: Temporarily retrieve FreeBSD snapshots from...
2012-02-12 Kevin Cantu(core::str) comments and cleanup
2012-02-12 Kevin Cantu(core::str) fixed replace, fixed starts_with, and added...
2012-02-12 Kevin Cantu(core::str) rename byte_len_range -> substr_len_bytes and
2012-02-12 Kevin Cantu(core::str) rename byte_len -> len_bytes and rename...
2012-02-12 Kevin Cantu(core::str) move push_byte, push_bytes, pop_byte, and...
2012-02-12 Brian Andersoncore: Formulate all unsigned max_values as 0 - 1 for...
2012-02-12 Brian Andersoncore: Add min/max functions for all int types
2012-02-12 Brian Andersoncore: Make uint::min/max pure
2012-02-12 Brian Andersoncore: Fill out missing functions for basic types
2012-02-12 Brian Andersoncore: Add modules for remaining scalar types
2012-02-12 Brian AndersonMerge pull request #1814 from uasi/from-cstr-len
2012-02-12 Tomoki AonumaAdd a test for core::str::from_cstr_len
2012-02-12 Tomoki AonumaImplement core::str::from_cstr_len, close #1666
2012-02-12 Brian Andersontest: Fix cros-crate-glob-collision
2012-02-12 Brian Andersonbuild: Disable libuv makefile auto-regeneration
2012-02-12 Brian Andersoncore: Change the argument order for vec::contains,...
2012-02-12 Brian Andersoncore: Rename vec::member to vec::contains to match...
2012-02-12 Brian AndersonMerge pull request #1812 from killerswan/indexing2
2012-02-12 Brian AndersonMerge pull request #1811 from killerswan/char_funcs
2012-02-12 Kevin Cantu(core::str) removed [r]index_byte
2012-02-12 Kevin Cantu(core::char) export is_digit
2012-02-12 Kevin Cantuusing str::rindex...
2012-02-12 Kevin Cantu(core::str) added rindex and rewrote pop_char with...
2012-02-12 Kevin Cantuusing str::index...
2012-02-12 Kevin Cantucore::str: added index (char)
2012-02-12 Kevin Cantucore::str rename [r]index -> [r]index_bytes
2012-02-12 Kevin Cantucore: added char::is_digit (matching Nd, Nl, No)
2012-02-12 Kevin Cantucore: added a rough char::is_ascii
2012-02-11 Brian AndersonAdd Tomoki Aonuma to AUTHORS.txt
2012-02-11 Brian AndersonMerge pull request #1810 from uasi/fix-typo
next