Skip to content

Commit

Permalink
Update parking_lot to 0.8 (for windows, too) (rust-windowing#884)
Browse files Browse the repository at this point in the history
The previous attempt to update parking_lot missed the windows platform.

The parking_lot dependency is now no longer specified twice to help
prevent that mistake from happening again.
  • Loading branch information
aloucks authored and kosyak committed Jul 10, 2019
1 parent 53b9c1c commit 095fbba
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,9 @@ wayland-client = { version = "0.23.0", features = [ "dlopen", "egl", "cursor", "
calloop = "0.4.2"
smithay-client-toolkit = "0.6"
x11-dl = "2.18.3"
parking_lot = "0.8"
percent-encoding = "1.0"
gbm = { git = "https://github.com/kosyak/gbm.rs", default-features = false, features = ["drm-support", "import-egl", "gen"] }
drm = { git = "https://github.com/kosyak/drm-rs", branch = "master" }

[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "windows"))'.dependencies.parking_lot]
version = "0.7"
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd", target_os = "windows"))'.dependencies.parking_lot]
version = "0.8"

0 comments on commit 095fbba

Please sign in to comment.