| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-04-16 | Auto merge of #49956 - QuietMisdreavus:rustdoc-codegen, r=GuillaumeGomez | bors | -0/+25 | |
| rustdoc: port the -C option from rustc Blocked on https://github.com/rust-lang/rust/pull/49864. The included test won't work without those changes, so this PR includes those commits as well. When documenting items that require certain target features, it helps to be able to force those target features into existence. Rather than include a flag just to parse those features, i instead decided to port the `-C` flag from rustc in its entirety. It takes the same parameters, because it runs through the same parsing function. This has the added benefit of being able to control the codegen of doctests as well. One concern i have with the flag is that i set it to stable here. My rationale is that it is a direct port of functionality on rustc that is currently stable, used only in mechanisms that it is originally used for. If needed, i can set it back to be unstable. | ||||
| 2018-04-15 | add: note about copy from rust-forge | cg-cnu | -0/+4 | |
| 2018-04-15 | fix: changed rust code to bash formatting | cg-cnu | -1/+1 | |
| 2018-04-15 | refactor: fixed typos, text formatting suggested in the review | cg-cnu | -23/+26 | |
| 2018-04-15 | refactor: Fixed all the lines exceeding more than 80 characters | cg-cnu | -17/+41 | |
| 2018-04-15 | refactor: Change the name from debugging to compiler-debuggin.md | cg-cnu | -1/+1 | |
| 2018-04-15 | Add: Added the instructions for debugging from rust-forge | cg-cnu | -0/+297 | |
| 2018-04-14 | Add definition of a fat pointer, double pointer, and wide pointer | Samuel Wilson | -1/+3 | |
| Definition referenced from Programming Rust by Jim Blandy & Jason Orendorff, published by O'Reilly. Page 214: References to Slices and Trait Objects. Double pointer and wide pointer both refer to fat pointer for detail. | ||||
| 2018-04-14 | Add definition of a fat pointer | Samuel Wilson | -0/+1 | |
| Definition referenced from Programming Rust by Jim Blandy & Jason Orendorff, published by O'Reilly. Page 214: References to Slices and Trait Objects. | ||||
| 2018-04-14 | Replace remaining uses of deprecated std::heap with std::alloc | Mike Hommey | -1/+1 | |
| 2018-04-13 | add -C to the rustdoc book | QuietMisdreavus | -0/+25 | |
| 2018-04-12 | Rename alloc::Void to alloc::Opaque | Simon Sapin | -3/+3 | |
| 2018-04-12 | Use NonNull<Void> instead of *mut u8 in the Alloc trait | Mike Hommey | -0/+1 | |
| Fixes #49608 | ||||
| 2018-04-12 | Use the GlobalAlloc trait for #[global_allocator] | Simon Sapin | -4/+4 | |
| 2018-04-12 | Auto merge of #49371 - scottmcm:catch-wrapping, r=nikomatsakis | bors | -4/+4 | |
| Add ok-wrapping to catch blocks, per RFC Updates the `catch{}` lowering to wrap the result in `Try::from_ok`. r? @nikomatsakis Fixes #41414 Fixes #43818 | ||||
| 2018-04-12 | Auto merge of #48528 - bitshifter:repr_packed, r=eddyb | bors | -0/+8 | |
| Implementation of `#[repr(packed(n))]` RFC 1399. Tracking issue https://github.com/rust-lang/rust/issues/33158. | ||||
| 2018-04-12 | Deprecate the std_unicode crate | Simon Sapin | -1/+1 | |
| 2018-04-11 | Implementation of `#[repr(packed(n))]` RFC 1399. | Cameron Hart | -0/+8 | |
| 2018-04-10 | Fix the unstable book to account for ok-wrapping | Scott McMurray | -4/+4 | |
| 2018-04-10 | talk about `only-X` in compiletest | QuietMisdreavus | -0/+2 | |
| 2018-04-10 | add codegen options section | steveklabnik | -0/+208 | |
| 2018-04-09 | fix tests | steveklabnik | -27/+29 | |
| 2018-04-09 | more lints | steveklabnik | -46/+1035 | |
| 2018-04-09 | document deny by default lints | steveklabnik | -12/+237 | |
| 2018-04-09 | add a lot of text about lints | steveklabnik | -0/+824 | |
| 2018-04-09 | add targets to TOC | steveklabnik | -0/+6 | |
| 2018-04-09 | write 'what is rustc' | steveklabnik | -0/+67 | |
| 2018-04-09 | write headings for command line arguments | steveklabnik | -2/+58 | |
| 2018-04-09 | fix authorship in book.toml | steveklabnik | -1/+1 | |
| 2018-04-09 | Add a TOC | steveklabnik | -3/+23 | |
| 2018-04-09 | update doc index to link to the rustc book | steveklabnik | -0/+4 | |
| 2018-04-09 | initialize the rustc book | steveklabnik | -0/+10 | |
| 2018-04-06 | update nightly documention for issue#100-b | Rajkumar Natarajan | -6/+6 | |
| 2018-04-06 | Fix unstable Rust code block issue | varkor | -1/+1 | |
| 2018-04-06 | Add mdbook test to Travis | varkor | -0/+1 | |
| 2018-04-06 | Fix spacing | varkor | -5/+5 | |
| 2018-04-06 | Replace txt with text | varkor | -101/+101 | |
| 2018-04-06 | Consolidate and fix code blocks | varkor | -426/+584 | |
| 2018-04-07 | Using X headings instead of 0.X #49739 | Pulkit Goyal | -12/+12 | |
| 2018-04-06 | Fixing the long lines in appendix-stupid-status#100 | Rajkumar Natarajan | -16/+17 | |
| 2018-04-06 | link directly to the compile-input function | Niko Matsakis | -5/+6 | |
| 2018-04-06 | Link to internal rustdocs#100 | Rajkumar Natarajan | -22/+22 | |
| 2018-04-05 | Rollup merge of #49628 - steveklabnik:learn-use-master, r=QuietMisdreavus | kennytm | -46/+63 | |
| Re-write the documentation index The docs team has decided that we're framing resources in three ways: "learning Rust," "using Rust," "mastering Rust." This is a more useful split than "beginner/intermediate/advanced." As we add more resources in the future, we expect "using Rust" to grow. "the bookshelf" as a concept is great, but isn't really organized along these lines. As such, this reorganizes the docs along these lines. | ||||
| 2018-04-03 | Re-write the documentation index | steveklabnik | -46/+63 | |
| The docs team has decided that we're framing resources in three ways: "learning Rust," "using Rust," "mastering Rust." This is a more useful split than "beginner/intermediate/advanced." As we add more resources in the future, we expect "using Rust" to grow. "the bookshelf" as a concept is great, but isn't really organized along these lines. As such, this reorganizes the docs along these lines. | ||||
| 2018-04-03 | Fix typo in rustdoc.md | Philip Munksgaard | -1/+1 | |
| 2018-04-02 | Remove splice page from unstable book. | Thayne McCombs | -22/+0 | |
| 2018-04-01 | Rollup merge of #49451 - QuietMisdreavus:epoch-doctests, r=GuillaumeGomez | Mark Simulacrum | -0/+13 | |
| rustdoc: add an --edition flag to compile docs/doctests with a certain edition To correspond with the 2018 edition, this adds a (currently unstable) `--edition` flag to rustdoc that makes it compile crates and doctests with the given edition. Once this lands, Cargo should be updated to pass this flag when the edition configuration option is given. | ||||
| 2018-03-30 | Rollup merge of #49445 - GuillaumeGomez:light-theme, r=QuietMisdreavus | kennytm | -3/+3 | |
| Rename main theme into light theme r? @QuietMisdreavus | ||||
| 2018-03-29 | Update links | Dan Robertson | -1/+3 | |
| Add missing link and add link for UFCS. | ||||
| 2018-03-29 | Rename main theme into light theme | Guillaume Gomez | -3/+3 | |
