-
Notifications
You must be signed in to change notification settings - Fork 18
Commit 4455d85
authored
build(deps): bump parking_lot from 0.12.1 to 0.12.3 (#145)
Bumps [parking_lot](https://github.com/Amanieu/parking_lot) from 0.12.1
to 0.12.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md">parking_lot's
changelog</a>.</em></p>
<blockquote>
<h2>parking_lot 0.12.3 (2024-05-24)</h2>
<ul>
<li>Export types provided by arc_lock feature (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/442">#442</a>)</li>
</ul>
<h2>parking_lot 0.12.2, parking_lot_core 0.9.10, lock_api 0.4.12
(2024-04-15)</h2>
<ul>
<li>Fixed panic when calling <code>with_upgraded</code> twice on a
<code>ArcRwLockUpgradableReadGuard</code> (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/431">#431</a>)</li>
<li>Fixed <code>RwLockUpgradeableReadGuard::with_upgraded</code></li>
<li>Added lock_api::{Mutex, ReentrantMutex, RwLock}::from_raw methods
(<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/429">#429</a>)</li>
<li>Added Apple visionOS support (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/433">#433</a>)</li>
</ul>
<h2>parking_lot_core 0.9.9, lock_api 0.4.11 (2023-10-18)</h2>
<ul>
<li>Fixed <code>RwLockUpgradeableReadGuard::with_upgraded</code>. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/393">#393</a>)</li>
<li>Fixed <code>ReentrantMutex::bump</code> lock count. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/390">#390</a>)</li>
<li>Added methods to unsafely create a lock guard out of thin air. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/403">#403</a>)</li>
<li>Added support for Apple tvOS. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/405">#405</a>)</li>
</ul>
<h2>parking_lot_core 0.9.8, lock_api 0.4.10 (2023-06-05)</h2>
<ul>
<li>Mark guards with <code>#[clippy::has_significant_drop]</code> (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/369">#369</a>,
<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/371">#371</a>)</li>
<li>Removed windows-sys dependency (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/374">#374</a>,
<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/378">#378</a>)</li>
<li>Add <code>atomic_usize</code> default feature to support platforms
without atomics. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/380">#380</a>)</li>
<li>Add with_upgraded API to upgradable read locks (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/386">#386</a>)</li>
<li>Make RwLock guards Sync again (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/370">#370</a>)</li>
</ul>
<h2>parking_lot_core 0.9.7 (2023-02-01)</h2>
<ul>
<li>Update windows-sys dependency to 0.45. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/368">#368</a>)</li>
</ul>
<h2>parking_lot_core 0.9.6 (2023-01-11)</h2>
<ul>
<li>Add support for watchOS. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/367">#367</a>)</li>
</ul>
<h2>parking_lot_core 0.9.5 (2022-11-29)</h2>
<ul>
<li>Update use of <code>libc::timespec</code> to prepare for future libc
version (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/363">#363</a>)</li>
</ul>
<h2>parking_lot_core 0.9.4 (2022-10-18)</h2>
<ul>
<li>Bump windows-sys dependency to 0.42. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/356">#356</a>)</li>
</ul>
<h2>lock_api 0.4.9 (2022-09-20)</h2>
<ul>
<li>Fixed <code>ReentrantMutexGuard::try_map</code> signature (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/355">#355</a>)</li>
</ul>
<h2>lock_api 0.4.8 (2022-08-28)</h2>
<ul>
<li>Fixed unsound <code>Sync</code>/<code>Send</code> impls for
<code>ArcMutexGuard</code>. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/349">#349</a>)</li>
<li>Added <code>ArcMutexGuard::into_arc</code>. (<a
href="https://redirect.github.com/Amanieu/parking_lot/issues/350">#350</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/a29dd3d4ff661f73fd5cf638584bc4c5de2ad347"><code>a29dd3d</code></a>
Release parking_lot 0.12.3</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/f7efcae51161c25f7839cddd20cc1b809441e5e8"><code>f7efcae</code></a>
Merge pull request <a
href="https://redirect.github.com/Amanieu/parking_lot/issues/442">#442</a>
from iwanders/add-arc_lock-feature-top-level-exports</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/c357017decfa0f21ca597a4958745ad0999cf9eb"><code>c357017</code></a>
Export types provided by arc_lock feature.</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/9dace42690f78bcf30f387ba42024bff4e8b6c18"><code>9dace42</code></a>
Release parking_lot 0.12.2, parking_lot_core 0.9.10, lock_api
0.4.12</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/4f898be372479d7cb00809f570dfedd265865393"><code>4f898be</code></a>
Merge pull request <a
href="https://redirect.github.com/Amanieu/parking_lot/issues/435">#435</a>
from sorcio/wasm-atomics-feature</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/9ee3a5461299b904c5707c27988ddcf92d642c04"><code>9ee3a54</code></a>
stdarch_wasm_atomic_wait instead of stdsimd</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/7aeb2f1306ea7863cdb3ad3bbff835269aa19dd7"><code>7aeb2f1</code></a>
Merge pull request <a
href="https://redirect.github.com/Amanieu/parking_lot/issues/433">#433</a>
from QuentinPerez/master</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/c0a9077b87bd72ea99600ba8c230736eefdf286e"><code>c0a9077</code></a>
Add Apple visionOS support</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/7ab94b663825ec204bdbe3e295168e8e62b35a16"><code>7ab94b6</code></a>
Merge pull request <a
href="https://redirect.github.com/Amanieu/parking_lot/issues/432">#432</a>
from alex/patch-1</li>
<li><a
href="https://github.com/Amanieu/parking_lot/commit/75a97b267081cffca4b00aa476711314d1adbdf2"><code>75a97b2</code></a>
Update redox_syscall dependency version</li>
<li>Additional commits viewable in <a
href="https://github.com/Amanieu/parking_lot/compare/0.12.1...0.12.3">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 98e4743 commit 4455d85Copy full SHA for 4455d85
File tree
Expand file treeCollapse file tree
2 files changed
+28
-28
lines changedFilter options
Expand file treeCollapse file tree
2 files changed
+28
-28
lines changed+27-27Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 |
| - | |
| 26 | + | |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
|
0 commit comments