| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2011-12-06 | Establish 'core' library separate from 'std'. | Graydon Hoare | -52/+0 | |
| 2011-11-28 | ptr: Add mut_offset, to be able to calculate an offset on mutable pointers. | Joshua Wise | -0/+10 | |
| 2011-11-16 | Use attributes for native module ABI and link name | Haitao Li | -1/+2 | |
| This patch changes how to specify ABI and link name of a native module. Before: native "cdecl" mod llvm = "rustllvm" {...} After: #[abi = "cdecl"] #[link_name = "rustllvm"] native mod llvm {...} The old optional syntax for ABI and link name is no longer supported. Fixes issue #547 | ||||
| 2011-11-02 | Make ptr::addr_of return an immutable vec, add mut_addr_of | Marijn Haverbeke | -2/+11 | |
| 2011-10-28 | stdlib: Make reinterpret_cast and leak unsafe | Brian Anderson | -1/+1 | |
| 2011-10-26 | Add more std documentation | Brian Anderson | -1/+20 | |
| 2011-10-25 | Update our code to new type parameter kind syntax | Marijn Haverbeke | -3/+3 | |
| Closes #1067 | ||||
| 2011-09-27 | Don't ever raise unique kinds of pinned kinds to shared (again) | Brian Anderson | -3/+3 | |
| So *resource, ~resource, [resource] are all pinned. This is counter to the design of the kind system, but this way is a much clearer path to type safety. Once we've established a good baseline with lots of tests, then we can try to make raising pinned kinds work. | ||||
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -2/+2 | |
| Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit. | ||||
| 2011-08-17 | Making more of the rust_task structure directly accessible from Rust. | Eric Holk | -0/+1 | |
| 2011-08-16 | Port the stdlib to the decl foo<T> syntax. | Erick Tryzelaar | -4/+4 | |
| 2011-07-27 | Don't allow globals or immutable locals to be passed by mut alias | Marijn Haverbeke | -2/+2 | |
| Closes #747 | ||||
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -4/+6 | |
| 2011-07-11 | rustc: Implement pointer dereference; add a test case | Patrick Walton | -2/+2 | |
| 2011-07-11 | stdlib: Add addr_of() to the standard library | Patrick Walton | -0/+2 | |
| 2011-07-08 | stdlib: Add an offset function for simple pointer arithmetic on unsafe pointers | Patrick Walton | -0/+8 | |
