about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCameron Taggart <cameron.taggart@gmail.com>2020-08-17 10:57:53 -0600
committerCameron Taggart <cameron.taggart@gmail.com>2020-08-17 10:57:53 -0600
commit2b1fc161533deb94c554a3b6416c12f4d905a313 (patch)
treefa37873b0b86df4a11bad55716297b065ccd94f5
parente8df0b893235aa06c6362d1a8646296310f79f81 (diff)
downloadrust-2b1fc161533deb94c554a3b6416c12f4d905a313.tar.gz
rust-2b1fc161533deb94c554a3b6416c12f4d905a313.zip
update stacker to 0.1.11 to unbreak build for wasm32-unknown-unknown
-rw-r--r--Cargo.lock4
-rw-r--r--src/librustc_data_structures/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c1fa3bef07c..5c767817ae5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4345,9 +4345,9 @@ checksum = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa"
 
 [[package]]
 name = "stacker"
-version = "0.1.9"
+version = "0.1.11"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72dd941b456e1c006d6b9f27c526d5b69281288aeea8cba82c19d3843d8ccdd2"
+checksum = "a92bc346006ae78c539d6ab2cf1a1532bc657b8339c464877a990ec82073c66f"
 dependencies = [
  "cc",
  "cfg-if",
diff --git a/src/librustc_data_structures/Cargo.toml b/src/librustc_data_structures/Cargo.toml
index 1926dbf06e7..85b55e7ba99 100644
--- a/src/librustc_data_structures/Cargo.toml
+++ b/src/librustc_data_structures/Cargo.toml
@@ -30,7 +30,7 @@ rustc_index = { path = "../librustc_index", package = "rustc_index" }
 bitflags = "1.2.1"
 measureme = "0.7.1"
 libc = "0.2"
-stacker = "0.1.9"
+stacker = "0.1.11"
 tempfile = "3.0.5"
 
 [dependencies.parking_lot]