nlopes / libhoney-rust

Rust library for sending data to Honeycomb
MIT License
23 stars 16 forks source link

Update parking_lot requirement from =0.9.0 to =0.10.0 #24

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Updates the requirements on parking_lot to permit the latest version.

Changelog *Sourced from [parking_lot's changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md).* > ## parking_lot 0.10.0, parking_lot_core 0.7.0, lock_api 0.3.2 (2019-11-25) > > - Upgrade smallvec dependency to 1.0 in parking_lot_core. > - Replace all usage of `mem::unitialized` with `mem::MaybeUninit`. > - The minimum required Rust version is bumped to 1.36. Because of the above two changes. > - Make methods on `WaitTimeoutResult` and `OnceState` take `self` by value instead of reference. > > ## parking_lot_core 0.6.2 (2019-07-22) > > - Fixed compile error on Windows with old cfg_if version. ([#164](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/164)) > > ## parking_lot_core 0.6.1 (2019-07-17) > > - Fixed Android build. ([#163](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/163)) > > ## parking_lot 0.9.0, parking_lot_core 0.6.0, lock_api 0.3.1 (2019-07-14) > > - Re-export lock_api (0.3.1) from parking_lot ([#150](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/150)) > - Removed (non-dev) dependency on rand crate for fairness mechanism, by > including a simple xorshift PRNG in core ([#144](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/144)) > - Android now uses the futex-based ThreadParker. ([#140](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/140)) > - Fixed CloudABI ThreadParker. ([#140](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/140)) > - Fix race condition in lock_api::ReentrantMutex (da16c2c7) > > ## lock_api 0.3.0 (2019-07-03, _yanked_) > > - Use NonZeroUsize in GetThreadId::nonzero_thread_id ([#148](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/148)) > - Debug assert lock_count in ReentrantMutex ([#148](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/148)) > - Tag as `unsafe` and document some internal methods ([#148](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/148)) > - This release was _yanked_ due to a regression in ReentrantMutex (da16c2c7) > > ## parking_lot 0.8.1 (2019-07-03, _yanked_) > > - Re-export lock_api (0.3.0) from parking_lot ([#150](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/150)) > - This release was _yanked_ from crates.io due to unexpected breakage ([#156](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/156)) > > ## parking_lot 0.8.0, parking_lot_core 0.5.0, lock_api 0.2.0 (2019-05-04) > > - Fix race conditions in deadlock detection. > - Support for more platforms by adding ThreadParker implementations for > Wasm, Redox, SGX and CloudABI. > - Drop support for older Rust. parking_lot now requires 1.31 and is a > Rust 2018 edition crate ([#122](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/122)). > - Disable the owning_ref feature by default. > - Fix was_last_thread value in the timeout callback of park() ([#129](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/129)). > - Support single byte Mutex/Once on stable Rust when compiler is at least > version 1.34. > - Make Condvar::new and Once::new const fns on stable Rust and remove > ONCE_INIT ([#134](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/134)). > - Add optional Serde support ([#135](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/135)). > ... (truncated)
Commits - [`bbbb576`](https://github.com/Amanieu/parking_lot/commit/bbbb57633f74ae27fc23cf4b6aee24e9d3449a10) Merge [#194](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/194) - [`84a6f27`](https://github.com/Amanieu/parking_lot/commit/84a6f2788f3c06e51d3a462eb5e631ecf99edf98) Bump version in usage docs - [`f2b21e1`](https://github.com/Amanieu/parking_lot/commit/f2b21e1aa56cc30815d36b02c933ed83572a9f79) checked_duration_since is stable. Remove from feature gate - [`0f99d20`](https://github.com/Amanieu/parking_lot/commit/0f99d20451ce5451501b3b513404e586726ecf55) Update docs with what works on stable - [`45660f7`](https://github.com/Amanieu/parking_lot/commit/45660f7795b15243420c2b296871dc250fbd27b6) Add changelog entries and bump versions for 0.10.0 release - [`bb0a143`](https://github.com/Amanieu/parking_lot/commit/bb0a143c7ea3733d67af7e7650c9fba94dfa7e06) Merge [#193](https://github-redirect.dependabot.com/Amanieu/parking_lot/issues/193) - [`e0cdcdc`](https://github.com/Amanieu/parking_lot/commit/e0cdcdc67952a767cae55a8e6293c56f492ae345) Remove unused autocfg dependency - [`74de9bc`](https://github.com/Amanieu/parking_lot/commit/74de9bc84d2face23ea9d821571b4714b6475fdb) Test with integer instead of unit type - [`bb9a9b1`](https://github.com/Amanieu/parking_lot/commit/bb9a9b12bc43bb674c8085a0c3730447fbe74e25) Remove let binding for Condition::wait unit return type - [`26bd296`](https://github.com/Amanieu/parking_lot/commit/26bd296cc7c4d10069bc843d1891e2060476f91f) Remove superfluous unit return type from closures - Additional commits viewable in [compare view](https://github.com/Amanieu/parking_lot/compare/0.9.0...0.10.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.


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 squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor 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) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)