Skip to content

Commit b9cc06c

Browse files
authored
Unrolled build for rust-lang#140582
Rollup merge of rust-lang#140582 - GuillaumeGomez:update-sysinfo, r=Kobzol Update sysinfo to `0.35.0` in bootstrap and `tools/opt-dist` This release is mostly bugfixes and code improvements.
2 parents d7df5bd + fbfc329 commit b9cc06c

File tree

4 files changed

+166
-84
lines changed

4 files changed

+166
-84
lines changed

Cargo.lock

+34-67
Original file line numberDiff line numberDiff line change
@@ -744,7 +744,7 @@ dependencies = [
744744
"tracing-subscriber",
745745
"unified-diff",
746746
"walkdir",
747-
"windows 0.59.0",
747+
"windows",
748748
]
749749

750750
[[package]]
@@ -2463,6 +2463,25 @@ version = "0.4.0"
24632463
source = "registry+https://github.com/rust-lang/crates.io-index"
24642464
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
24652465

2466+
[[package]]
2467+
name = "objc2-core-foundation"
2468+
version = "0.3.1"
2469+
source = "registry+https://github.com/rust-lang/crates.io-index"
2470+
checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
2471+
dependencies = [
2472+
"bitflags",
2473+
]
2474+
2475+
[[package]]
2476+
name = "objc2-io-kit"
2477+
version = "0.3.1"
2478+
source = "registry+https://github.com/rust-lang/crates.io-index"
2479+
checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a"
2480+
dependencies = [
2481+
"libc",
2482+
"objc2-core-foundation",
2483+
]
2484+
24662485
[[package]]
24672486
name = "object"
24682487
version = "0.32.2"
@@ -3466,7 +3485,7 @@ dependencies = [
34663485
"thorin-dwp",
34673486
"tracing",
34683487
"wasm-encoder 0.219.2",
3469-
"windows 0.59.0",
3488+
"windows",
34703489
]
34713490

34723491
[[package]]
@@ -3525,7 +3544,7 @@ dependencies = [
35253544
"tempfile",
35263545
"thin-vec",
35273546
"tracing",
3528-
"windows 0.59.0",
3547+
"windows",
35293548
]
35303549

35313550
[[package]]
@@ -3588,7 +3607,7 @@ dependencies = [
35883607
"serde_json",
35893608
"shlex",
35903609
"tracing",
3591-
"windows 0.59.0",
3610+
"windows",
35923611
]
35933612

35943613
[[package]]
@@ -3643,7 +3662,7 @@ dependencies = [
36433662
"termcolor",
36443663
"termize",
36453664
"tracing",
3646-
"windows 0.59.0",
3665+
"windows",
36473666
]
36483667

36493668
[[package]]
@@ -4386,7 +4405,7 @@ dependencies = [
43864405
"smallvec",
43874406
"termize",
43884407
"tracing",
4389-
"windows 0.59.0",
4408+
"windows",
43904409
]
43914410

43924411
[[package]]
@@ -5068,13 +5087,14 @@ dependencies = [
50685087

50695088
[[package]]
50705089
name = "sysinfo"
5071-
version = "0.31.4"
5090+
version = "0.35.0"
50725091
source = "registry+https://github.com/rust-lang/crates.io-index"
5073-
checksum = "355dbe4f8799b304b05e1b0f05fc59b2a18d36645cf169607da45bde2f69a1be"
5092+
checksum = "b897c8ea620e181c7955369a31be5f48d9a9121cb59fd33ecef9ff2a34323422"
50745093
dependencies = [
5075-
"core-foundation-sys",
50765094
"libc",
5077-
"windows 0.57.0",
5095+
"objc2-core-foundation",
5096+
"objc2-io-kit",
5097+
"windows",
50785098
]
50795099

50805100
[[package]]
@@ -5949,16 +5969,6 @@ version = "0.4.0"
59495969
source = "registry+https://github.com/rust-lang/crates.io-index"
59505970
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
59515971

5952-
[[package]]
5953-
name = "windows"
5954-
version = "0.57.0"
5955-
source = "registry+https://github.com/rust-lang/crates.io-index"
5956-
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
5957-
dependencies = [
5958-
"windows-core 0.57.0",
5959-
"windows-targets 0.52.6",
5960-
]
5961-
59625972
[[package]]
59635973
name = "windows"
59645974
version = "0.59.0"
@@ -5980,27 +5990,15 @@ dependencies = [
59805990
"serde_json",
59815991
]
59825992

5983-
[[package]]
5984-
name = "windows-core"
5985-
version = "0.57.0"
5986-
source = "registry+https://github.com/rust-lang/crates.io-index"
5987-
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
5988-
dependencies = [
5989-
"windows-implement 0.57.0",
5990-
"windows-interface 0.57.0",
5991-
"windows-result 0.1.2",
5992-
"windows-targets 0.52.6",
5993-
]
5994-
59955993
[[package]]
59965994
name = "windows-core"
59975995
version = "0.59.0"
59985996
source = "registry+https://github.com/rust-lang/crates.io-index"
59995997
checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
60005998
dependencies = [
60015999
"windows-implement 0.59.0",
6002-
"windows-interface 0.59.1",
6003-
"windows-result 0.3.2",
6000+
"windows-interface",
6001+
"windows-result",
60046002
"windows-strings 0.3.1",
60056003
"windows-targets 0.53.0",
60066004
]
@@ -6012,23 +6010,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
60126010
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
60136011
dependencies = [
60146012
"windows-implement 0.60.0",
6015-
"windows-interface 0.59.1",
6013+
"windows-interface",
60166014
"windows-link",
6017-
"windows-result 0.3.2",
6015+
"windows-result",
60186016
"windows-strings 0.4.0",
60196017
]
60206018

6021-
[[package]]
6022-
name = "windows-implement"
6023-
version = "0.57.0"
6024-
source = "registry+https://github.com/rust-lang/crates.io-index"
6025-
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
6026-
dependencies = [
6027-
"proc-macro2",
6028-
"quote",
6029-
"syn 2.0.100",
6030-
]
6031-
60326019
[[package]]
60336020
name = "windows-implement"
60346021
version = "0.59.0"
@@ -6051,17 +6038,6 @@ dependencies = [
60516038
"syn 2.0.100",
60526039
]
60536040

6054-
[[package]]
6055-
name = "windows-interface"
6056-
version = "0.57.0"
6057-
source = "registry+https://github.com/rust-lang/crates.io-index"
6058-
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
6059-
dependencies = [
6060-
"proc-macro2",
6061-
"quote",
6062-
"syn 2.0.100",
6063-
]
6064-
60656041
[[package]]
60666042
name = "windows-interface"
60676043
version = "0.59.1"
@@ -6079,15 +6055,6 @@ version = "0.1.1"
60796055
source = "registry+https://github.com/rust-lang/crates.io-index"
60806056
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
60816057

6082-
[[package]]
6083-
name = "windows-result"
6084-
version = "0.1.2"
6085-
source = "registry+https://github.com/rust-lang/crates.io-index"
6086-
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
6087-
dependencies = [
6088-
"windows-targets 0.52.6",
6089-
]
6090-
60916058
[[package]]
60926059
name = "windows-result"
60936060
version = "0.3.2"

0 commit comments

Comments
 (0)