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: 2.7.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: 2.7.1
Choose a head ref
  • 12 commits
  • 10 files changed
  • 4 contributors

Commits on Dec 16, 2024

  1. Configuration menu
    Copy the full SHA
    779505f View commit details
    Browse the repository at this point in the history
  2. Merge pull request #363 from Fraser999/update-rustdocs

    Mention cyclic dependency in main rustdocs
    cuviper authored Dec 16, 2024
    Configuration menu
    Copy the full SHA
    31c9862 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2024

  1. Remove fxhash example from lib.rs

    Remove fxhash example as fxhash is not maintained.
    hkBst authored Dec 30, 2024
    Configuration menu
    Copy the full SHA
    8eb4de5 View commit details
    Browse the repository at this point in the history
  2. remove fxhash dep

    hkBst committed Dec 30, 2024
    Configuration menu
    Copy the full SHA
    f63bb6e View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2025

  1. Configuration menu
    Copy the full SHA
    7b64edc View commit details
    Browse the repository at this point in the history
  2. Improve panic messages

    savannstm committed Jan 13, 2025
    Configuration menu
    Copy the full SHA
    2f55755 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2025

  1. Improve memory reservation for insert_entry

    In `core::RefMut::insert_unique`, used by `insert_entry` and others, we
    were calling `reserve_entries` *before* the table insert, which defeats
    the goal of matching capacities. We can't directly call that after table
    insert though, because we'll be holding an `OccupiedEntry` that prevents
    looking at the table itself. Instead, this code path now uses a more
    typical doubling growth on the entries `Vec` itself, but still enhanced
    by considering `MAX_ENTRIES_CAPACITY` as well.
    cuviper committed Jan 15, 2025
    Configuration menu
    Copy the full SHA
    1f12721 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2025

  1. Merge pull request #364 from hkBst/patch-1

    remove fxhash example and dep
    cuviper authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    38ef618 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #367 from savannstm/better-panics

    Improve panic messages and add `#[track_caller]` attribute to functions that may panic
    cuviper authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    f0ec924 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #368 from cuviper/reserve_entries

    Improve memory reservation for `insert_entry`
    cuviper authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    cb520a7 View commit details
    Browse the repository at this point in the history
  4. Release 2.7.1

    cuviper committed Jan 20, 2025
    Configuration menu
    Copy the full SHA
    f61b581 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #369 from cuviper/release-2.7.1

    Release 2.7.1
    cuviper authored Jan 20, 2025
    Configuration menu
    Copy the full SHA
    42e57a3 View commit details
    Browse the repository at this point in the history
Loading