summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2020-10-21 21:46:08 +0200
committerJeff Vander Stoep <jeffv@google.com>2020-10-21 21:47:13 +0200
commit3bd6148dbf557b6b06e9c55e813a9d22a5a59f4a (patch)
tree2fd512ac97a64c843efd572491843de99729e2f3 /Cargo.toml.orig
parent1914a69e2a449281aeee437f7b41446e7314a0d7 (diff)
downloadparking_lot_core-3bd6148dbf557b6b06e9c55e813a9d22a5a59f4a.tar.gz
Update parking_lot_core to version 0.8.0
Bug: 169931010 Test: TH Change-Id: Ifb5348d18ef2356deb71d86158dd2041ca95bb1c
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig21
1 files changed, 11 insertions, 10 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index f5a91d4..44903ca 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "parking_lot_core"
-version = "0.7.2"
+version = "0.8.0"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "An advanced API for creating custom synchronization primitives."
license = "Apache-2.0/MIT"
@@ -10,23 +10,24 @@ categories = ["concurrency"]
edition = "2018"
[dependencies]
-cfg-if = "0.1.5"
-smallvec = "1.0"
-petgraph = { version = "0.5", optional = true }
-thread-id = { version = "3.2.0", optional = true }
-backtrace = { version = "0.3.2", optional = true }
+cfg-if = "0.1.10"
+smallvec = "1.4.0"
+petgraph = { version = "0.5.1", optional = true }
+thread-id = { version = "3.3.0", optional = true }
+backtrace = { version = "0.3.49", optional = true }
+instant = "0.1.4"
[target.'cfg(unix)'.dependencies]
-libc = "0.2.55"
+libc = "0.2.71"
[target.'cfg(target_os = "redox")'.dependencies]
-redox_syscall = "0.1"
+redox_syscall = "0.1.56"
[target.'cfg(target_os = "cloudabi")'.dependencies]
-cloudabi = "0.0.3"
+cloudabi = "0.1.0"
[target.'cfg(windows)'.dependencies]
-winapi = { version = "0.3", features = ["winnt", "ntstatus", "minwindef",
+winapi = { version = "0.3.8", features = ["winnt", "ntstatus", "minwindef",
"winerror", "winbase", "errhandlingapi", "handleapi"] }
[features]