summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorDavid LeGare <legare@google.com>2022-03-02 16:20:46 +0000
committerDavid LeGare <legare@google.com>2022-03-02 16:20:46 +0000
commit2aced6505c70eb20f0feb458110601527a516ac5 (patch)
tree849d5ded097a262df9792e1bf91ccda3dd0567e0 /Cargo.toml.orig
parent0d5a6f383e7b002e81a4fccd8d64d83fd6e1fb30 (diff)
downloadparking_lot_core-2aced6505c70eb20f0feb458110601527a516ac5.tar.gz
Update parking_lot_core to 0.9.1
Test: cd external/rust/crates && atest --host -c Change-Id: Ie9df2a1b0e20be50202e15474fd6233c523e6312
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig11
1 files changed, 7 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 2585329..f053e45 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "parking_lot_core"
-version = "0.8.5"
+version = "0.9.1"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "An advanced API for creating custom synchronization primitives."
license = "Apache-2.0/MIT"
@@ -15,7 +15,6 @@ smallvec = "1.6.1"
petgraph = { version = "0.5.1", optional = true }
thread-id = { version = "4.0.0", optional = true }
backtrace = { version = "0.3.60", optional = true }
-instant = "0.1.9"
[target.'cfg(unix)'.dependencies]
libc = "0.2.95"
@@ -24,8 +23,12 @@ libc = "0.2.95"
redox_syscall = "0.2.8"
[target.'cfg(windows)'.dependencies]
-winapi = { version = "0.3.9", features = ["winnt", "ntstatus", "minwindef",
- "winerror", "winbase", "errhandlingapi", "handleapi"] }
+windows-sys = { version = "0.32", features = [
+ "Win32_Foundation",
+ "Win32_System_LibraryLoader",
+ "Win32_System_SystemServices",
+ "Win32_System_WindowsProgramming",
+] }
[features]
nightly = []