Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rust-lang/cargo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 397359840ecad02d5fe69b2a0cf328e98235ffea
Choose a base ref
...
head repository: rust-lang/cargo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9fcdbb44fec18d10c086b6aba8143bc06a199761
Choose a head ref
  • 12 commits
  • 12 files changed
  • 4 contributors

Commits on May 16, 2017

  1. Fix non-deterministic unit dependency list generation

    This resulted in the flags passed to rustc having random
    ordering, see #3895.
    andwur authored and alexcrichton committed May 16, 2017
    Configuration menu
    Copy the full SHA
    4894e08 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    130eaed View commit details
    Browse the repository at this point in the history
  3. Fix non-deterministic --cfg feature flag list generation

    The resolved features were returned in a HashSet and then iterated over,
    which returns the feature names in arbitrary order.
    
    See #3895
    andwur authored and alexcrichton committed May 16, 2017
    Configuration menu
    Copy the full SHA
    3bf85bb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7c94358 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2017

  1. Remove chrono as a dependency

    Turns out we don't use it!
    alexcrichton committed May 18, 2017
    Configuration menu
    Copy the full SHA
    852968e View commit details
    Browse the repository at this point in the history
  2. Auto merge of #4069 - alexcrichton:remove-unused-dep, r=alexcrichton

    Remove chrono as a dependency
    
    Turns out we don't use it!
    bors committed May 18, 2017
    Configuration menu
    Copy the full SHA
    ac04d2e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    408f4e3 View commit details
    Browse the repository at this point in the history
  4. Auto merge of #3937 - andwur:rustc-flag-determinism, r=alexcrichton

    Deterministic -L and --cfg flag ordering
    
    This ensures that the `-L` and `--cfg` flags passed to `rustc` have stable ordering across runs.
    
    It also does the same for `--cfg` flags passed to `rustdoc`.
    
    Fixes #3895
    bors committed May 18, 2017
    Configuration menu
    Copy the full SHA
    483e0ab View commit details
    Browse the repository at this point in the history

Commits on May 22, 2017

  1. Configuration menu
    Copy the full SHA
    72f8427 View commit details
    Browse the repository at this point in the history
  2. Auto merge of #4084 - shiver:issue-3360, r=alexcrichton

    3360 - Allow for features to be either comma or space delimited.
    
    This is my attempt at tackling issue #3360.
    Hopefully I interpreted the original request correctly and this is what you were looking for.
    
    Any suggestions you might have to improve the submission would be great.
    Thanks!
    bors committed May 22, 2017
    Configuration menu
    Copy the full SHA
    26d1d9d View commit details
    Browse the repository at this point in the history
  3. Fix a serialization error on publish

    In TOML we have to emit all keys before we emit all sub-tables, so to handle
    that for dependencies just transform everything to an elaborated version.
    
    Closes #4081
    alexcrichton committed May 22, 2017
    Configuration menu
    Copy the full SHA
    d1e70e4 View commit details
    Browse the repository at this point in the history
  4. Auto merge of #4085 - alexcrichton:fix-rewrite, r=matklad

    Fix a serialization error on publish
    
    In TOML we have to emit all keys before we emit all sub-tables, so to handle
    that for dependencies just transform everything to an elaborated version.
    
    Closes #4081
    bors committed May 22, 2017
    Configuration menu
    Copy the full SHA
    9fcdbb4 View commit details
    Browse the repository at this point in the history
Loading