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: indexmap-rs/indexmap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.8.0
Choose a base ref
...
head repository: indexmap-rs/indexmap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.8.1
Choose a head ref
  • 7 commits
  • 6 files changed
  • 3 contributors

Commits on Jan 17, 2022

  1. Update dev-dependencies

    cuviper committed Jan 17, 2022
    Configuration menu
    Copy the full SHA
    98de9ab View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. Merge pull request #216 from cuviper/dev-dependencies

    Update dev-dependencies
    cuviper authored Jan 19, 2022
    Configuration menu
    Copy the full SHA
    10ee11e View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2022

  1. Add miri builder

    This adds a builder to run `cargo miri` in order to check for certain
    classes of undefined behavior.
    
    One thing to note is that we've had to parameterize a number of tests to
    use a smaller cycle count under miri. This is because miri's stacked
    borrows checker is superlinear:
    
    rust-lang/miri#1367
    
    This can cause the miri builder to run out of memory. To avoid this, we
    reduce the cycle counts for a few tests that are particularly expensive
    when we're running inside miri.
    erickt committed Feb 8, 2022
    Configuration menu
    Copy the full SHA
    4dd6619 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2022

  1. Merge pull request #218 from erickt/miri

    Add miri builder
    cuviper authored Feb 9, 2022
    Configuration menu
    Copy the full SHA
    d6a9dd6 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2022

  1. Add a replace_full method on IndexSet

    * Add a new `replace_full` method, which behaves like `replace` but also
      returns the index of the item.
    
    * Clarify that `replace` and `replace_all` do not modify the replaced
      item's insertion order in the documentation.
    
    * Add test coverage for `replace` and `replace_full` by copying the
      existing tests for `insert` and `insert_full`.
    zakcutner committed Mar 27, 2022
    Configuration menu
    Copy the full SHA
    feb816c View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2022

  1. Release 1.8.1

    cuviper committed Mar 29, 2022
    Configuration menu
    Copy the full SHA
    12162ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request #222 from zakcutner/replace-full

    Add a `replace_full` method on `IndexSet`
    cuviper authored Mar 29, 2022
    Configuration menu
    Copy the full SHA
    275379c View commit details
    Browse the repository at this point in the history
Loading