1. 26 1月, 2017 8 次提交
  2. 25 1月, 2017 11 次提交
    • B
      Auto merge of #39286 - nrc:save-path, r=eddyb · 1283c029
      bors 提交于
      save-analysis: polishing paths
      
      a couple of minor changes that get us better coverage of different paths.
      
      r? @EddyB
      1283c029
    • B
      Auto merge of #39277 - tedsta:fuchsia_std_process, r=alexcrichton · 185d908f
      bors 提交于
      Update Fuchsia support for std::process.
      
      - Adds support for try_wait.
      - Miscellaneous updates to keep up with Magenta changes.
      
      I'll begin `sys/fuchsia` soon, just been bogged down with my actual job lately (I'm not on the Fuchsia team).
      185d908f
    • N
      save-analysis: walk paths · 5e33c5f0
      Nick Cameron 提交于
      Catches generic types in paths
      5e33c5f0
    • N
      save-analysis: walk path expressions · 659859c5
      Nick Cameron 提交于
      This is actually kinda hard to hit, but it fixes missing the `foo` in `for _ in foo {}`.
      659859c5
    • B
      Auto merge of #35712 - oli-obk:exclusive_range_patterns, r=nikomatsakis · c0d0e68b
      bors 提交于
      exclusive range patterns
      
      adds `..` patterns to the language under a feature gate (`exclusive_range_pattern`).
      
      This allows turning
      
      ``` rust
      match i {
          0...9 => {},
          10...19 => {},
          20...29 => {},
          _ => {}
      }
      ```
      
      into
      
      ``` rust
      match i {
          0..10 => {},
          10..20 => {},
          20..30 => {},
          _ => {}
      }
      ```
      c0d0e68b
    • B
      Auto merge of #39245 - alexcrichton:enable-platform, r=brson · 83c2d952
      bors 提交于
      rustbuild: Start building --enable-extended
      
      This commit adds a new flag to the configure script,
      `--enable-extended`, which is intended for specifying a desire to
      compile the full suite of Rust tools such as Cargo, the RLS, etc. This
      is also an indication that the build system should create combined
      installers such as the pkg/exe/msi artifacts.
      
      Currently the `--enable-extended` flag just indicates that combined
      installers should be built, and Cargo is itself not compiled just yet
      but rather only downloaded from its location. The intention here is to
      quickly get to feature parity with the current release process and then
      we can start improving it afterwards.
      
      All new files in this PR inside `src/etc/installer` are copied from the
      rust-packaging repository.
      
      cc #38531
      83c2d952
    • A
      rustbuild: Start building --enable-extended · f3dfcae2
      Alex Crichton 提交于
      This commit adds a new flag to the configure script,
      `--enable-extended`, which is intended for specifying a desire to
      compile the full suite of Rust tools such as Cargo, the RLS, etc. This
      is also an indication that the build system should create combined
      installers such as the pkg/exe/msi artifacts.
      
      Currently the `--enable-extended` flag just indicates that combined
      installers should be built, and Cargo is itself not compiled just yet
      but rather only downloaded from its location. The intention here is to
      quickly get to feature parity with the current release process and then
      we can start improving it afterwards.
      
      All new files in this PR inside `src/etc/installer` are copied from the
      rust-packaging repository.
      f3dfcae2
    • S
      fix mailmap · 249b444e
      Steve Klabnik 提交于
      249b444e
    • R
      fix book: refer to `add_two` as "tested function" · c4c86dd0
      Raphael Das Gupta 提交于
      rather than "test function", which would be `it_works`
      c4c86dd0
    • T
      Updated Fuchsia support for std::process. Adds support for try_wait. Misc.... · bbe419ff
      Theodore DeRego 提交于
      Updated Fuchsia support for std::process. Adds support for try_wait. Misc. updates to reflect changes in Magenta
      bbe419ff
    • G
      Add missing urls for array docs · c8d1f322
      Guillaume Gomez 提交于
      c8d1f322
  3. 24 1月, 2017 18 次提交
  4. 23 1月, 2017 3 次提交