-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from faern/upgrade-to-rust2018
Upgrade to rust2018
- Loading branch information
Showing
30 changed files
with
229 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,7 @@ language: rust | |
sudo: false | ||
|
||
rust: | ||
- 1.24.0 | ||
- 1.26.2 | ||
- 1.31.0 | ||
- stable | ||
- beta | ||
- nightly | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
[package] | ||
name = "parking_lot" | ||
version = "0.7.1" | ||
version = "0.8.0" | ||
authors = ["Amanieu d'Antras <[email protected]>"] | ||
description = "More compact and efficient implementations of the standard synchronization primitives." | ||
license = "Apache-2.0/MIT" | ||
repository = "https://github.com/Amanieu/parking_lot" | ||
readme = "README.md" | ||
keywords = ["mutex", "condvar", "rwlock", "once", "thread"] | ||
categories = ["concurrency"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
parking_lot_core = { path = "core", version = "0.4" } | ||
lock_api = { path = "lock_api", version = "0.1" } | ||
parking_lot_core = { path = "core", version = "0.5" } | ||
lock_api = { path = "lock_api", version = "0.2" } | ||
|
||
[dev-dependencies] | ||
rand = "0.6" | ||
lazy_static = "1.0" | ||
|
||
[features] | ||
default = ["owning_ref"] | ||
default = [] | ||
owning_ref = ["lock_api/owning_ref"] | ||
nightly = ["parking_lot_core/nightly", "lock_api/nightly"] | ||
deadlock_detection = ["parking_lot_core/deadlock_detection"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
[package] | ||
name = "parking_lot_core" | ||
version = "0.4.0" | ||
version = "0.5.0" | ||
authors = ["Amanieu d'Antras <[email protected]>"] | ||
description = "An advanced API for creating custom synchronization primitives." | ||
license = "Apache-2.0/MIT" | ||
repository = "https://github.com/Amanieu/parking_lot" | ||
keywords = ["mutex", "condvar", "rwlock", "once", "thread"] | ||
categories = ["concurrency"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
smallvec = "0.6" | ||
|
@@ -25,6 +26,3 @@ winapi = { version = "0.3", features = ["winnt", "ntstatus", "minwindef", | |
[features] | ||
nightly = [] | ||
deadlock_detection = ["petgraph", "thread-id", "backtrace"] | ||
|
||
[build-dependencies] | ||
rustc_version = "0.2" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.