Skip to content

Commit

Permalink
Merge #224
Browse files Browse the repository at this point in the history
224: Fix required lock_api version r=Amanieu a=palana

As of c20495b the additions to lock_api in a9961d4 are required to build parking_lot; building with lock_api 0.3.{1,2,3} fails due to missing `_::const_new` functions

Co-authored-by: Palana <palana@stunned.de>
  • Loading branch information
bors[bot] and palana committed Apr 10, 2020
2 parents 699325c + 8030870 commit d070a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ categories = ["concurrency"]
edition = "2018"

[dependencies]
parking_lot_core = { path = "core", version = "0.7.0" }
lock_api = { path = "lock_api", version = "0.3.1" }
parking_lot_core = { path = "core", version = "0.7.1" }
lock_api = { path = "lock_api", version = "0.3.4" }

[dev-dependencies]
rand = "0.7"
Expand Down

0 comments on commit d070a26

Please sign in to comment.