| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-09-06 | std: Fix a segfault on OSX with backtraces | Alex Crichton | -1/+2 | |
| Apparently `dladdr` can succeed but still give you NULL pointers! Closes #44379 | ||||
| 2017-09-06 | Rollup merge of #44315 - kallisti5:epoch-doc-example-squashed, r=GuillaumeGomez | Mark Simulacrum | -0/+11 | |
| std/time: Give an example to get UNIX_EPOCH in seconds | ||||
| 2017-09-06 | Rollup merge of #44097 - Xaeroxe:clamp, r=burntsushi | Mark Simulacrum | -0/+89 | |
| Add clamp functions Implementation of clamp feature: Tracking issue: https://github.com/rust-lang/rust/issues/44095 RFC: https://github.com/rust-lang/rfcs/pull/1961 | ||||
| 2017-09-06 | Implement named threads on Windows | Joshua Sheard | -7/+17 | |
| 2017-09-05 | add feature gate doc_masked and tests | QuietMisdreavus | -0/+1 | |
| 2017-09-05 | new attribute #[doc(masked)] to hide internal crates from std docs | QuietMisdreavus | -1/+6 | |
| 2017-09-05 | Avoid weird or_insert_with example | Jon Gjengset | -3/+1 | |
| 2017-09-05 | Add or_default to Entry APIs | Jon Gjengset | -0/+29 | |
| 2017-09-04 | Add panic unit tests | Jacob Kiesel | -0/+37 | |
| 2017-09-04 | std/time: Give an example to get UNIX_EPOCH in seconds | Alexander von Gluck IV | -0/+11 | |
| 2017-09-04 | Make the LocalKey facade of thread_local! inlineable cross-crate. | Eduard-Mihai Burtescu | -3/+13 | |
| 2017-09-03 | Marked `Entry::replace` as unstable. | Jeroen Bollen | -1/+2 | |
| 2017-09-03 | Added a way to retrieve the key out of a HashMap when it's being replaced. | Jeroen Bollen | -0/+30 | |
| 2017-09-02 | update gcc crate | Ralf Jung | -1/+1 | |
| Use gcc::Build rather than deprecated gcc::Config. Fixes #43973 | ||||
| 2017-09-02 | Fallback to dladdr-based resolve_symbol if backtrace failed. | kennytm | -14/+29 | |
| This programs compiled without -g on macOS still provide the resolve to actual symbols, instead of `<unknown>` everywhere. | ||||
| 2017-09-02 | Use env::current_exe for libbacktrace on macOS | John Colanduoni | -20/+7 | |
| 2017-09-02 | Add libbacktrace support for Apple platforms | John Colanduoni | -7/+32 | |
| 2017-09-01 | Auto merge of #44154 - alexcrichton:bump-bootstrap, r=Mark-Simulacrum | bors | -58/+7 | |
| Bump to 1.22.0 and update boostrap compiler Time to get a new nightly! | ||||
| 2017-09-01 | Auto merge of #44238 - nrc:pulldown-warn, r=@QuietMisdreavus | bors | -1/+1 | |
| Improve the Pulldown/hoedown warnings cc #44229 r? @QuietMisdreavus | ||||
| 2017-09-01 | Fix tests | Nick Cameron | -1/+1 | |
| This is just undoing changes from #41991 because we are not running markdown rendering twice. | ||||
| 2017-09-01 | Fix documentation and formatting. | Jacob Kiesel | -2/+8 | |
| 2017-08-31 | Bring back stage0 allocator logic on MSVC | Alex Crichton | -2/+5 | |
| I think there may still be bugs preventing its removal.. | ||||
| 2017-08-31 | Rollup merge of #44209 - frewsxcv:frewsxcv-addr-other-scenarios, r=alexcrichton | Mark Simulacrum | -6/+92 | |
| Expand docs of multi-address behavior of some UDP/TCP APIs. Fixes https://github.com/rust-lang/rust/issues/22569. | ||||
| 2017-08-31 | Rollup merge of #44205 - frewsxcv:frewsxcv-addr-doc-fix, r=QuietMisdreavus | Mark Simulacrum | -1/+1 | |
| Fix typo in doc `ToSocketAddrs` example. None | ||||
| 2017-08-31 | Expand docs of multi-address behavior of some UDP/TCP APIs. | Corey Farwell | -6/+92 | |
| Fixes https://github.com/rust-lang/rust/issues/22569. | ||||
| 2017-08-31 | Update Cargo to 0.23.0 and our lockfile | Alex Crichton | -0/+2 | |
| 2017-08-31 | Bump to 1.22.0 | Alex Crichton | -10/+3 | |
| 2017-08-31 | Update bootstrap compiler | Alex Crichton | -50/+1 | |
| This commit updates the bootstrap compiler and clears out a number of #[cfg(stage0)] annotations and related business | ||||
| 2017-08-31 | Auto merge of #41991 - GuillaumeGomez:rustdoc-html-diff, r=nrc | bors | -1/+1 | |
| Add warnings when rustdoc html rendering differs | ||||
| 2017-08-30 | Fix typo in doc `ToSocketAddrs` example. | Corey Farwell | -1/+1 | |
| 2017-08-30 | Rollup merge of #44160 - AndyGauge:api-docs-macros, r=steveklabnik | Alex Crichton | -21/+101 | |
| API docs: macros. Standard Documentation Checklist Fixes #29381 r? @steveklabnik | ||||
| 2017-08-30 | Rollup merge of #44116 - alexcrichton:update-libc, r=Mark-Simulacrum | Alex Crichton | -12/+29 | |
| Update the libc submodule Brings in a few fixes for wasm/asmjs | ||||
| 2017-08-30 | Temporary fix for a test (will require another update when this is fully merged) | Guillaume Gomez | -1/+1 | |
| 2017-08-29 | broken links resolved | Andy Gauge | -1/+1 | |
| 2017-08-29 | Rollup merge of #44117 - frewsxcv:frewsxcv-to-socket-addrs-examples, ↵ | Ariel Ben-Yehuda | -22/+66 | |
| r=QuietMisdreavus Rewrite `std::net::ToSocketAddrs` doc examples. in particular: * show how to create an iterator that yields multiple socket addresses * show more failing scenarios done this as preliminary work while investigating https://github.com/rust-lang/rust/issues/22569 note: i haven't run doc tests on my machine for this, so would be good to confirm CI passes before approving | ||||
| 2017-08-29 | fix test failures in documentation change | Andrew Gauger | -2/+2 | |
| 2017-08-29 | API docs: macros. Part of #29329 Standard Library Documentation Checklist. | Andy Gauge | -21/+101 | |
| 2017-08-28 | Update the libc submodule | Alex Crichton | -12/+29 | |
| Brings in a few fixes for wasm/asmjs | ||||
| 2017-08-28 | Rewrite `std::net::ToSocketAddrs` doc examples. | Corey Farwell | -22/+66 | |
| in particular: * show how to create an iterator that yields multiple socket addresses * show more failing scenarios | ||||
| 2017-08-27 | Whitelist unwind import in std | Tatsuyuki Ishi | -2/+2 | |
| This is a part of libbacktrace linkage and thus the compiler cannot detect if it's used or not. | ||||
| 2017-08-27 | Move unused-extern-crate to late pass | Tatsuyuki Ishi | -3/+3 | |
| 2017-08-27 | Auto merge of #44112 - alexcrichton:thread-join, r=sfackler | bors | -2/+13 | |
| std: Handle OS errors when joining threads Also add to the documentation that the `join` method can panic. cc #34971 cc #43539 | ||||
| 2017-08-26 | std: Handle OS errors when joining threads | Alex Crichton | -2/+13 | |
| Also add to the documentation that the `join` method can panic. cc #34971 cc #43539 | ||||
| 2017-08-26 | Fix f64 examples | Jacob Kiesel | -2/+4 | |
| 2017-08-26 | Fix f32 examples. | Jacob Kiesel | -2/+4 | |
| 2017-08-26 | Add NAN examples | Jacob Kiesel | -0/+2 | |
| 2017-08-26 | Add clamp functions | Jacob Kiesel | -0/+40 | |
| 2017-08-26 | Rollup merge of #44072 - lukaramu:fix-doc-headings, r=steveklabnik | Corey Farwell | -7/+7 | |
| Fix inconsistent doc headings This fixes headings reading "Unsafety" and "Example", they should be "Safety" and "Examples" according to RFC 1574. r? @steveklabnik | ||||
| 2017-08-25 | *: remove crate_{name,type} attributes | Tamir Duberstein | -3/+0 | |
| Fixes #41701. | ||||
| 2017-08-24 | Fix inconsistent doc headings | lukaramu | -7/+7 | |
| This fixes headings reading "Unsafety" and "Example", they should be "Safety" and "Examples" according to RFC 1574. | ||||
