Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 8 pull requests #60864

Closed
wants to merge 25 commits into from
Closed

Commits on Apr 9, 2019

  1. string: implement From<&String> for String

    Allow Strings to be created from borrowed Strings. This is mostly
    to make things like passing &String to an `impl Into<String>`
    parameter frictionless.
    jsgf committed Apr 9, 2019
    Configuration menu
    Copy the full SHA
    08b0aca View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2019

  1. Configuration menu
    Copy the full SHA
    eba03d4 View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2019

  1. Configuration menu
    Copy the full SHA
    6bf94cd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b701d32 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4a33ece View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    27ff536 View commit details
    Browse the repository at this point in the history
  5. Escape &str in convert docs

    czipperz committed Apr 13, 2019
    Configuration menu
    Copy the full SHA
    1e48da6 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2019

  1. Configuration menu
    Copy the full SHA
    1f5d510 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2019

  1. Configuration menu
    Copy the full SHA
    c921aae View commit details
    Browse the repository at this point in the history
  2. Update ui test

    topecongiro committed May 10, 2019
    Configuration menu
    Copy the full SHA
    1ea7c5f View commit details
    Browse the repository at this point in the history

Commits on May 12, 2019

  1. Update rustc book CLI docs.

    ehuss committed May 12, 2019
    Configuration menu
    Copy the full SHA
    e392db6 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2019

  1. Move token tree related lexer state to a separate struct

    We only used a bunch of fields when tokenizing into a token tree,
    so let's move them out of the base lexer
    matklad committed May 13, 2019
    Configuration menu
    Copy the full SHA
    d29f0d2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b91e0a3 View commit details
    Browse the repository at this point in the history
  3. move raw span to tt reader

    See https://github.com/rust-lang/rust/pull/50838/files#r283296243 for
    explanation how jointness checking works with *next* pair
    matklad committed May 13, 2019
    Configuration menu
    Copy the full SHA
    e249f2e View commit details
    Browse the repository at this point in the history

Commits on May 14, 2019

  1. Bump measureme dependency to 0.3

    measureme@0.3 adds a version header to the binary file format which will
    help reduce tool breakage in the future.
    wesleywiser committed May 14, 2019
    Configuration menu
    Copy the full SHA
    ea93215 View commit details
    Browse the repository at this point in the history
  2. README: Mention MSVC 2017+, not 2013(!)

    LLVM will soon require 2017+ [1] (and our in-tree version just rejected the version of 2015 I was using), so update the mention and provide a link.
    
    [1]: https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-library
    scottmcm committed May 14, 2019
    Configuration menu
    Copy the full SHA
    7171bd1 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2019

  1. Configuration menu
    Copy the full SHA
    65d09ea View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#59825 - jsgf:from-ref-string, r=sfackler

    string: implement From<&String> for String
    
    Allow Strings to be created from borrowed Strings. This is mostly
    to make things like passing `&String` to an `impl Into<String>`
    parameter frictionless.
    
    Fixes rust-lang#59827.
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    a2ffec3 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#59923 - czipperz:fix-convert-doc-links, r=s…

    …teveklabnik
    
    Fix convert module's documentation links
    
    r? @steveklabnik
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    5d77c07 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#60691 - topecongiro:await-macro-span, r=Cen…

    …tril
    
    Include expression to wait for to the span of Await
    
    Currently the span of `await!` only includes itself:
    
    ```rust
        await!(3);
    //  ^^^^^
    ```
    
    This PR changes it so that the span holds the whole `await!` expression:
    
    ```rust
        await!(3);
    //  ^^^^^^^^^
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    1c4221a View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#60763 - matklad:tt-parser, r=petrochenkov

    Move token tree related lexer state to a separate struct
    
    Just a types-based refactoring.
    
    We only used a bunch of fields when tokenizing into a token tree, so let's move them out of the base lexer
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    c4a27f2 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#60769 - ehuss:rustc-cli-docs, r=steveklabnik

    Update rustc book CLI docs.
    
    This adds a little detail (and missing flags) to the rustc book. There is still a lot of information missing, but this seemed like a good step to expanding it.
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    c5c1363 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#60811 - wesleywiser:bump_measureme, r=varkor

    Bump measureme dependency to 0.3
    
    measureme@0.3 adds a version header to the binary file format which will
    help reduce tool breakage in the future.
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    a279989 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#60816 - scottmcm:vcpp-download-link, r=alex…

    …crichton
    
    README.md: Mention MSVC 2017+, not 2013(!)
    
    LLVM will soon require 2017+ (and our in-tree version just rejected the version of 2015 I was using), so update the mention and provide a link.
    
    Ref: https://llvm.org/docs/GettingStarted.html#host-c-toolchain-both-compiler-and-standard-library
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    56b082a View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#60851 - Pulkit07:issue60849, r=Centril

    Move `box` from the stable keyword to unstable keywords list
    
    Fixes rust-lang#60849
    Centril committed May 15, 2019
    Configuration menu
    Copy the full SHA
    6a2c7e9 View commit details
    Browse the repository at this point in the history