Skip to content

Commit

Permalink
Merge #174
Browse files Browse the repository at this point in the history
174: Upgrade parking_lot. r=khuey a=khuey



Co-authored-by: Kyle Huey <[email protected]>
  • Loading branch information
bors[bot] and khuey authored Mar 3, 2022
2 parents 64ef4a0 + c3f11bb commit c3a3ede
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.10

- upgrade `parking_lot` to `0.12.0` (note that this bumps MSRV with `parking_lot` feature enabled to `1.49.0`).

## 1.9

- Added an `atomic-polyfill` optional dependency to compile `race` on platforms without atomics
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "once_cell"
version = "1.9.0"
version = "1.10.0"
authors = ["Aleksey Kladov <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand All @@ -22,7 +22,7 @@ members = ["xtask"]
# Uses parking_lot to implement once_cell::sync::OnceCell.
# This makes not speed difference, but makes each OnceCell<T>
# for up to 16 bytes smaller, depending on the size of the T.
parking_lot = { version = "0.11", optional = true, default_features = false }
parking_lot = { version = "0.12", optional = true, default_features = false }

# To be used in order to enable the race feature on targets
# that do not have atomics
Expand Down

0 comments on commit c3a3ede

Please sign in to comment.