brendanzab / moniker

Automagical variable binding library for Rust
Apache License 2.0
67 stars 7 forks source link

Update im requirement from 11.0.0 to 12.1.0 #58

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Updates the requirements on im to permit the latest version.

Release notes *Sourced from [im's releases](https://github.com/bodil/im-rs/releases).* > ## 12.1.0 > ### Added > - Maps and sets now have the `clear` method just like `Vector`. ([#46](https://github-redirect.dependabot.com/bodil/im-rs/issues/46)) > > ### Changed > - Single chunk `Vector`s are no longer allocated directly on the stack, meaning that they're now comparable in performance to `std::vec::Vec` rather than slightly faster, but they also won't eat up your stack space quite as quickly, and they'll clone without copying and share structure with clones as you'd expect.
Changelog *Sourced from [im's changelog](https://github.com/bodil/im-rs/blob/master/CHANGELOG.md).* > ## [12.1.0] - 2018-09-25 > > ### Added > - Maps and sets now have the `clear` method just like `Vector`. ([#46](https://github-redirect.dependabot.com/bodil/im-rs/issues/46)) > > ### Changed > - Single chunk `Vector`s are no longer allocated directly on the stack, meaning > that they're now comparable in performance to `std::vec::Vec` rather than > slightly faster, but they also won't eat up your stack space quite as quickly, > and they'll clone without copying and share structure with clones as you'd > expect. > > ## [12.0.0] - 2018-08-30 > > Starting with this release, the `arc` flag is gone, in favour of publishing `im` > as two separate crates: `im` (using `Arc`) and `im-rc` (using `Rc`). They're > identical (and built from the same code), except that `im` is thread safe and > `im-rc` is a little bit more performant. > > This is a major release as a consequence, but there should be no breaking code > changes other than the new default choice of reference counter. > > ### Added > - The `Chunk` datatype that's used to build `Vector` and `OrdMap` has been > exposed and made generally usable. It's somewhere between a > [`GenericArray`](https://crates.io/crates/generic-array) and a ring buffer, > offers O(1)* push in either direction, and is generally hyperoptimised for its > purpose of serving as nodes for Bagwell tries, but it's also a powered up > version of [`GenericArray`](https://crates.io/crates/generic-array) that might > be useful to others, hence the public API. > - `Vector` now has `Focus` and `FocusMut` APIs for caching index lookups, > yielding huge performance gains when performing multiple adjacent index > lookups. `Vector::iter` has been reimplemented using this API, and is now > much simpler and about twice as fast as a result, and `Vector::iter_mut` now > runs nearly an order of magnitude faster. Likewise, `Vector::sort` and > `Vector::retain` are now using `FocusMut` and run considerably faster as a > result. > - `Focus` and `FocusMut` can also be used as stand ins for subslices through the > `narrow` and `split_at` methods. You can also iterate over foci, making this > the most efficient way to iterate over a subset of a `Vector`. > - `Vector` now implements [Rayon](https://crates.io/crates/rayon)'s parallel > iterators behind the `rayon` feature flag. > > ### Changed > - As `std::ops::RangeBounds` is now stabilised in Rust 1.28, the `Vector::slice` > method is now unconditionally available on the stable channel. > - Union/difference/intersection/is_submap methods on `HashMap` and `OrdMap` that > take functions now take `FnMut` instead of `Fn`. This should not affect any > existing code. ([#34](https://github-redirect.dependabot.com/bodil/im-rs/issues/34)) > - `Vector::split_off` can now take an index equal to the length of the vector, > ... (truncated)
Commits - See full diff in [compare view](https://github.com/bodil/im-rs/commits/12.1.0)


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.