about summary refs log tree commit diff
path: root/src/tools/rustc-workspace-hack
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-12-08 03:06:54 -0800
committerAlex Crichton <alex@alexcrichton.com>2018-12-10 13:45:22 -0800
commitb4110900bd82f03b1a5a8d777fa514e78adfadef (patch)
treec60123271a191fbfcddccb63e4687bebe0e4982a /src/tools/rustc-workspace-hack
parent1137d29d5e551e377579c5a601fe7c444057d00c (diff)
downloadrust-b4110900bd82f03b1a5a8d777fa514e78adfadef.tar.gz
rust-b4110900bd82f03b1a5a8d777fa514e78adfadef.zip
Update Cargo submodule and its dependencies
Hopefully just another routine update!

So far this starts to enable the `std::arch` in stage0 builds of rustc.
This means that we may need stage0/not(stage0) in stdsimd itself, but
more and more code is starting to use `std::arch` so I think it's time
to start shifting the balance of work here.
Diffstat (limited to 'src/tools/rustc-workspace-hack')
-rw-r--r--src/tools/rustc-workspace-hack/Cargo.toml6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml
index 82c262ed565..5acfee28fad 100644
--- a/src/tools/rustc-workspace-hack/Cargo.toml
+++ b/src/tools/rustc-workspace-hack/Cargo.toml
@@ -50,9 +50,11 @@ features = [
 ]
 
 [dependencies]
-serde_json = { version = "1.0.31", features = ["raw_value"] }
-rand = { version = "0.5.5", features = ["i128_support"] }
 curl-sys = { version = "0.4.13", optional = true }
+parking_lot = { version = "0.6", features = ['nightly'] }
+rand = { version = "0.5.5", features = ["i128_support"] }
+serde_json = { version = "1.0.31", features = ["raw_value"] }
+smallvec = { version = "0.6", features = ['union'] }
 
 [target.'cfg(not(windows))'.dependencies]
 openssl = { version = "0.10.12", optional = true }