Skip to content

Commit 8cbd51c

Browse files
committed
Auto merge of rust-lang#129619 - sunshowers:update-stacker, r=<try>
Update stacker to 0.1.16 The main new feature is support for detecting the current stack size on illumos. (See [my blog post] for the context which led to this.) [my blog post]: https://sunshowers.io/posts/rustc-segfault-illumos/ try-job: x86_64-mingw
2 parents 515395a + eb29722 commit 8cbd51c

File tree

2 files changed

+47
-4
lines changed

2 files changed

+47
-4
lines changed

Cargo.lock

+46-3
Original file line numberDiff line numberDiff line change
@@ -4978,15 +4978,15 @@ dependencies = [
49784978

49794979
[[package]]
49804980
name = "stacker"
4981-
version = "0.1.15"
4981+
version = "0.1.16"
49824982
source = "registry+https://github.com/rust-lang/crates.io-index"
4983-
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
4983+
checksum = "95a5daa25ea337c85ed954c0496e3bdd2c7308cc3b24cf7b50d04876654c579f"
49844984
dependencies = [
49854985
"cc",
49864986
"cfg-if",
49874987
"libc",
49884988
"psm",
4989-
"winapi",
4989+
"windows-sys 0.36.1",
49904990
]
49914991

49924992
[[package]]
@@ -6047,6 +6047,19 @@ dependencies = [
60476047
"windows-targets 0.52.6",
60486048
]
60496049

6050+
[[package]]
6051+
name = "windows-sys"
6052+
version = "0.36.1"
6053+
source = "registry+https://github.com/rust-lang/crates.io-index"
6054+
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
6055+
dependencies = [
6056+
"windows_aarch64_msvc 0.36.1",
6057+
"windows_i686_gnu 0.36.1",
6058+
"windows_i686_msvc 0.36.1",
6059+
"windows_x86_64_gnu 0.36.1",
6060+
"windows_x86_64_msvc 0.36.1",
6061+
]
6062+
60506063
[[package]]
60516064
name = "windows-sys"
60526065
version = "0.48.0"
@@ -6117,6 +6130,12 @@ version = "0.52.6"
61176130
source = "registry+https://github.com/rust-lang/crates.io-index"
61186131
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
61196132

6133+
[[package]]
6134+
name = "windows_aarch64_msvc"
6135+
version = "0.36.1"
6136+
source = "registry+https://github.com/rust-lang/crates.io-index"
6137+
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
6138+
61206139
[[package]]
61216140
name = "windows_aarch64_msvc"
61226141
version = "0.48.5"
@@ -6129,6 +6148,12 @@ version = "0.52.6"
61296148
source = "registry+https://github.com/rust-lang/crates.io-index"
61306149
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
61316150

6151+
[[package]]
6152+
name = "windows_i686_gnu"
6153+
version = "0.36.1"
6154+
source = "registry+https://github.com/rust-lang/crates.io-index"
6155+
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
6156+
61326157
[[package]]
61336158
name = "windows_i686_gnu"
61346159
version = "0.48.5"
@@ -6147,6 +6172,12 @@ version = "0.52.6"
61476172
source = "registry+https://github.com/rust-lang/crates.io-index"
61486173
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
61496174

6175+
[[package]]
6176+
name = "windows_i686_msvc"
6177+
version = "0.36.1"
6178+
source = "registry+https://github.com/rust-lang/crates.io-index"
6179+
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
6180+
61506181
[[package]]
61516182
name = "windows_i686_msvc"
61526183
version = "0.48.5"
@@ -6159,6 +6190,12 @@ version = "0.52.6"
61596190
source = "registry+https://github.com/rust-lang/crates.io-index"
61606191
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
61616192

6193+
[[package]]
6194+
name = "windows_x86_64_gnu"
6195+
version = "0.36.1"
6196+
source = "registry+https://github.com/rust-lang/crates.io-index"
6197+
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
6198+
61626199
[[package]]
61636200
name = "windows_x86_64_gnu"
61646201
version = "0.48.5"
@@ -6183,6 +6220,12 @@ version = "0.52.6"
61836220
source = "registry+https://github.com/rust-lang/crates.io-index"
61846221
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
61856222

6223+
[[package]]
6224+
name = "windows_x86_64_msvc"
6225+
version = "0.36.1"
6226+
source = "registry+https://github.com/rust-lang/crates.io-index"
6227+
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
6228+
61866229
[[package]]
61876230
name = "windows_x86_64_msvc"
61886231
version = "0.48.5"

compiler/rustc_data_structures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rustc_index = { path = "../rustc_index", package = "rustc_index" }
2222
rustc_macros = { path = "../rustc_macros" }
2323
rustc_serialize = { path = "../rustc_serialize" }
2424
smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dangle"] }
25-
stacker = "0.1.15"
25+
stacker = "0.1.16"
2626
tempfile = "3.2"
2727
thin-vec = "0.2.12"
2828
tracing = "0.1"

0 commit comments

Comments
 (0)