Skip to content

Commit ce4d395

Browse files
Update sysinfo version to 0.35.0
1 parent cb0d6e7 commit ce4d395

File tree

2 files changed

+131
-16
lines changed

2 files changed

+131
-16
lines changed

src/bootstrap/Cargo.lock

+130-15
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies = [
6464
"tracing-subscriber",
6565
"tracing-tree",
6666
"walkdir",
67-
"windows",
67+
"windows 0.57.0",
6868
"xz2",
6969
]
7070

@@ -158,12 +158,6 @@ dependencies = [
158158
"cc",
159159
]
160160

161-
[[package]]
162-
name = "core-foundation-sys"
163-
version = "0.8.7"
164-
source = "registry+https://github.com/rust-lang/crates.io-index"
165-
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
166-
167161
[[package]]
168162
name = "cpufeatures"
169163
version = "0.2.15"
@@ -440,6 +434,25 @@ dependencies = [
440434
"windows-sys 0.52.0",
441435
]
442436

437+
[[package]]
438+
name = "objc2-core-foundation"
439+
version = "0.3.1"
440+
source = "registry+https://github.com/rust-lang/crates.io-index"
441+
checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
442+
dependencies = [
443+
"bitflags",
444+
]
445+
446+
[[package]]
447+
name = "objc2-io-kit"
448+
version = "0.3.1"
449+
source = "registry+https://github.com/rust-lang/crates.io-index"
450+
checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a"
451+
dependencies = [
452+
"libc",
453+
"objc2-core-foundation",
454+
]
455+
443456
[[package]]
444457
name = "object"
445458
version = "0.36.5"
@@ -700,15 +713,16 @@ dependencies = [
700713

701714
[[package]]
702715
name = "sysinfo"
703-
version = "0.33.0"
716+
version = "0.35.0"
704717
source = "registry+https://github.com/rust-lang/crates.io-index"
705-
checksum = "948512566b1895f93b1592c7574baeb2de842f224f2aab158799ecadb8ebbb46"
718+
checksum = "b897c8ea620e181c7955369a31be5f48d9a9121cb59fd33ecef9ff2a34323422"
706719
dependencies = [
707-
"core-foundation-sys",
708720
"libc",
709721
"memchr",
710722
"ntapi",
711-
"windows",
723+
"objc2-core-foundation",
724+
"objc2-io-kit",
725+
"windows 0.61.1",
712726
]
713727

714728
[[package]]
@@ -927,22 +941,67 @@ version = "0.57.0"
927941
source = "registry+https://github.com/rust-lang/crates.io-index"
928942
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
929943
dependencies = [
930-
"windows-core",
944+
"windows-core 0.57.0",
931945
"windows-targets",
932946
]
933947

948+
[[package]]
949+
name = "windows"
950+
version = "0.61.1"
951+
source = "registry+https://github.com/rust-lang/crates.io-index"
952+
checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419"
953+
dependencies = [
954+
"windows-collections",
955+
"windows-core 0.61.0",
956+
"windows-future",
957+
"windows-link",
958+
"windows-numerics",
959+
]
960+
961+
[[package]]
962+
name = "windows-collections"
963+
version = "0.2.0"
964+
source = "registry+https://github.com/rust-lang/crates.io-index"
965+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
966+
dependencies = [
967+
"windows-core 0.61.0",
968+
]
969+
934970
[[package]]
935971
name = "windows-core"
936972
version = "0.57.0"
937973
source = "registry+https://github.com/rust-lang/crates.io-index"
938974
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
939975
dependencies = [
940-
"windows-implement",
941-
"windows-interface",
942-
"windows-result",
976+
"windows-implement 0.57.0",
977+
"windows-interface 0.57.0",
978+
"windows-result 0.1.2",
943979
"windows-targets",
944980
]
945981

982+
[[package]]
983+
name = "windows-core"
984+
version = "0.61.0"
985+
source = "registry+https://github.com/rust-lang/crates.io-index"
986+
checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980"
987+
dependencies = [
988+
"windows-implement 0.60.0",
989+
"windows-interface 0.59.1",
990+
"windows-link",
991+
"windows-result 0.3.2",
992+
"windows-strings",
993+
]
994+
995+
[[package]]
996+
name = "windows-future"
997+
version = "0.2.0"
998+
source = "registry+https://github.com/rust-lang/crates.io-index"
999+
checksum = "7a1d6bbefcb7b60acd19828e1bc965da6fcf18a7e39490c5f8be71e54a19ba32"
1000+
dependencies = [
1001+
"windows-core 0.61.0",
1002+
"windows-link",
1003+
]
1004+
9461005
[[package]]
9471006
name = "windows-implement"
9481007
version = "0.57.0"
@@ -954,6 +1013,17 @@ dependencies = [
9541013
"syn",
9551014
]
9561015

1016+
[[package]]
1017+
name = "windows-implement"
1018+
version = "0.60.0"
1019+
source = "registry+https://github.com/rust-lang/crates.io-index"
1020+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
1021+
dependencies = [
1022+
"proc-macro2",
1023+
"quote",
1024+
"syn",
1025+
]
1026+
9571027
[[package]]
9581028
name = "windows-interface"
9591029
version = "0.57.0"
@@ -965,6 +1035,33 @@ dependencies = [
9651035
"syn",
9661036
]
9671037

1038+
[[package]]
1039+
name = "windows-interface"
1040+
version = "0.59.1"
1041+
source = "registry+https://github.com/rust-lang/crates.io-index"
1042+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
1043+
dependencies = [
1044+
"proc-macro2",
1045+
"quote",
1046+
"syn",
1047+
]
1048+
1049+
[[package]]
1050+
name = "windows-link"
1051+
version = "0.1.1"
1052+
source = "registry+https://github.com/rust-lang/crates.io-index"
1053+
checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
1054+
1055+
[[package]]
1056+
name = "windows-numerics"
1057+
version = "0.2.0"
1058+
source = "registry+https://github.com/rust-lang/crates.io-index"
1059+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
1060+
dependencies = [
1061+
"windows-core 0.61.0",
1062+
"windows-link",
1063+
]
1064+
9681065
[[package]]
9691066
name = "windows-result"
9701067
version = "0.1.2"
@@ -974,6 +1071,24 @@ dependencies = [
9741071
"windows-targets",
9751072
]
9761073

1074+
[[package]]
1075+
name = "windows-result"
1076+
version = "0.3.2"
1077+
source = "registry+https://github.com/rust-lang/crates.io-index"
1078+
checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
1079+
dependencies = [
1080+
"windows-link",
1081+
]
1082+
1083+
[[package]]
1084+
name = "windows-strings"
1085+
version = "0.4.0"
1086+
source = "registry+https://github.com/rust-lang/crates.io-index"
1087+
checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97"
1088+
dependencies = [
1089+
"windows-link",
1090+
]
1091+
9771092
[[package]]
9781093
name = "windows-sys"
9791094
version = "0.52.0"

src/bootstrap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ walkdir = "2.4"
5858
xz2 = "0.1"
5959

6060
# Dependencies needed by the build-metrics feature
61-
sysinfo = { version = "0.33.0", default-features = false, optional = true, features = ["system"] }
61+
sysinfo = { version = "0.35.0", default-features = false, optional = true, features = ["system"] }
6262

6363
# Dependencies needed by the `tracing` feature
6464
tracing = { version = "0.1", optional = true, features = ["attributes"] }

0 commit comments

Comments
 (0)