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

fix(deps): update rust crate indexmap to v2 #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2023

This PR contains the following updates:

Package Type Update Change
indexmap dependencies major 1.9.3 -> 2.0.0

Release Notes

indexmap-rs/indexmap (indexmap)

v2.4.0

Compare Source

  • Added methods IndexMap::append and IndexSet::append, moving all items from
    one map or set into another, and leaving the original capacity for reuse.

v2.3.0

Compare Source

  • Added trait MutableEntryKey for opt-in mutable access to map entry keys.
  • Added method MutableKeys::iter_mut2 for opt-in mutable iteration of map
    keys and values.

v2.2.6

Compare Source

  • Added trait MutableValues for opt-in mutable access to set values.

v2.2.5

Compare Source

  • Added optional borsh serialization support.

v2.2.4

Compare Source

  • Added an insert_sorted method on IndexMap, IndexSet, and VacantEntry.
  • Avoid hashing for lookups in single-entry maps.
  • Limit preallocated memory in serde deserializers.

v2.2.3

Compare Source

  • Added move_index and swap_indices methods to IndexedEntry,
    OccupiedEntry, and RawOccupiedEntryMut, functioning like the existing
    methods on IndexMap.
  • Added shift_insert methods on VacantEntry and RawVacantEntryMut, as
    well as shift_insert_hashed_nocheck on the latter, to insert the new entry
    at a particular index.
  • Added shift_insert methods on IndexMap and IndexSet to insert a new
    entry at a particular index, or else move an existing entry there.

v2.2.2

Compare Source

  • Added indexing methods to raw entries: RawEntryBuilder::from_hash_full,
    RawEntryBuilder::index_from_hash, and RawEntryMut::index.

v2.2.1

Compare Source

  • Corrected the signature of RawOccupiedEntryMut::into_key(self) -> &'a mut K,
    This a breaking change from 2.2.0, but that version was published for less
    than a day and has now been yanked.

v2.2.0

Compare Source

  • The new IndexMap::get_index_entry method finds an entry by its index for
    in-place manipulation.

  • The Keys iterator now implements Index<usize> for quick access to the
    entry's key, compared to indexing the map to get the value.

  • The new IndexMap::splice and IndexSet::splice methods will drain the
    given range as an iterator, and then replace that range with entries from
    an input iterator.

  • The new trait RawEntryApiV1 offers opt-in access to a raw entry API for
    IndexMap, corresponding to the unstable API on HashSet as of Rust 1.75.

  • Many IndexMap and IndexSet methods have relaxed their type constraints,
    e.g. removing K: Hash on methods that don't actually need to hash.

  • Removal methods remove, remove_entry, and take are now deprecated
    in favor of their shift_ or swap_ prefixed variants, which are more
    explicit about their effect on the index and order of remaining items.
    The deprecated methods will remain to guide drop-in replacements from
    HashMap and HashSet toward the prefixed methods.

v2.1.0

Compare Source

  • Empty slices can now be created with map::Slice::{new, new_mut} and
    set::Slice::new. In addition, Slice::new, len, and is_empty are
    now const functions on both types.

  • IndexMap, IndexSet, and their respective Slices all have binary
    search methods for sorted data: map binary_search_keys and set
    binary_search for plain comparison, binary_search_by for custom
    comparators, binary_search_by_key for key extraction, and
    partition_point for boolean conditions.

v2.0.2

Compare Source

  • The hashbrown dependency has been updated to version 0.14.1 to
    complete the support for Rust 1.63.

v2.0.1

Compare Source

  • MSRV: Rust 1.63.0 is now supported as well, pending publication of
    hashbrown's relaxed MSRV (or use cargo --ignore-rust-version).

v2.0.0

Compare Source

  • MSRV: Rust 1.64.0 or later is now required.

  • The "std" feature is no longer auto-detected. It is included in the
    default feature set, or else can be enabled like any other Cargo feature.

  • The "serde-1" feature has been removed, leaving just the optional
    "serde" dependency to be enabled like a feature itself.

  • IndexMap::get_index_mut now returns Option<(&K, &mut V)>, changing
    the key part from &mut K to &K. There is also a new alternative
    MutableKeys::get_index_mut2 to access the former behavior.

  • The new map::Slice<K, V> and set::Slice<T> offer a linear view of maps
    and sets, behaving a lot like normal [(K, V)] and [T] slices. Notably,
    comparison traits like Eq only consider items in order, rather than hash
    lookups, and slices even implement Hash.

  • IndexMap and IndexSet now have sort_by_cached_key and
    par_sort_by_cached_key methods which perform stable sorts in place
    using a key extraction function.

  • IndexMap and IndexSet now have reserve_exact, try_reserve, and
    try_reserve_exact methods that correspond to the same methods on Vec.
    However, exactness only applies to the direct capacity for items, while the
    raw hash table still follows its own rules for capacity and load factor.

  • The Equivalent trait is now re-exported from the equivalent crate,
    intended as a common base to allow types to work with multiple map types.

  • The hashbrown dependency has been updated to version 0.14.

  • The serde_seq module has been moved from the crate root to below the
    map module.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 6 times, most recently from 3286ace to d308129 Compare July 3, 2023 22:23
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 5 times, most recently from 22c1e7a to 0a2d3c0 Compare July 10, 2023 04:29
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 7 times, most recently from c95de76 to 05d1030 Compare July 27, 2023 00:12
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 5 times, most recently from 87d0ff3 to c93d8e8 Compare August 2, 2023 22:44
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 6 times, most recently from 2d4fc17 to 548101d Compare August 10, 2023 02:05
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 4 times, most recently from 7d3ee31 to 0c949ec Compare August 24, 2023 03:29
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 2 times, most recently from 39aee6a to 46b9b09 Compare August 26, 2023 04:41
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 2 times, most recently from 17c1520 to ecdbde7 Compare September 29, 2023 19:38
Copy link
Contributor Author

renovate bot commented Jan 28, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: server/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path server/Cargo.toml --package indexmap@1.9.3 --precise 2.2.6
    Updating crates.io index
error: failed to select a version for the requirement `indexmap = "^1.5.2"`
candidate versions found which didn't match: 2.2.6
location searched: crates.io index
required by package `h2 v0.3.19`
    ... which satisfies dependency `h2 = "^0.3"` (locked to 0.3.19) of package `tonic v0.9.2`
    ... which satisfies dependency `tonic = "^0.9.2"` (locked to 0.9.2) of package `seichi-game-data-publisher v0.1.0 (/tmp/renovate/repos/github/GiganticMinecraft/seichi-game-data-publisher/server)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 2 times, most recently from 96b9766 to cb2d318 Compare February 1, 2024 00:43
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 2 times, most recently from d1377b1 to e9503e1 Compare February 29, 2024 22:33
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 5 times, most recently from 9a3297a to 7fefd5f Compare April 17, 2024 07:10
@renovate renovate bot force-pushed the renovate/indexmap-2.x branch from 7fefd5f to 0a2599d Compare May 5, 2024 11:11
Copy link
Contributor Author

renovate bot commented Jun 17, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: server/Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path server/Cargo.toml --package indexmap@1.9.3 --precise 2.2.6
    Updating crates.io index
error: failed to select a version for the requirement `indexmap = "^1.5.2"`
candidate versions found which didn't match: 2.2.6
location searched: crates.io index
required by package `h2 v0.3.19`
    ... which satisfies dependency `h2 = "^0.3"` (locked to 0.3.19) of package `tonic v0.9.2`
    ... which satisfies dependency `tonic = "^0.9.2"` (locked to 0.9.2) of package `seichi-game-data-publisher v0.1.0 (/tmp/renovate/repos/github/GiganticMinecraft/seichi-game-data-publisher/server)`
perhaps a crate was updated and forgotten to be re-vendored?

@renovate renovate bot force-pushed the renovate/indexmap-2.x branch 2 times, most recently from f58b82c to 87637b8 Compare June 17, 2024 18:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants