Skip to content

Commit 9286c3c

Browse files
committed
Update stdarch
stdarch updated their version of `cfg-if` so we need to update the one used by libstd as well.
1 parent 294f0ee commit 9286c3c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Cargo.lock

+6-2
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,10 @@ name = "cfg-if"
507507
version = "1.0.0"
508508
source = "registry+https://github.com/rust-lang/crates.io-index"
509509
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
510+
dependencies = [
511+
"compiler_builtins",
512+
"rustc-std-workspace-core",
513+
]
510514

511515
[[package]]
512516
name = "chalk-derive"
@@ -4603,7 +4607,7 @@ version = "0.0.0"
46034607
dependencies = [
46044608
"addr2line 0.16.0",
46054609
"alloc",
4606-
"cfg-if 0.1.10",
4610+
"cfg-if 1.0.0",
46074611
"compiler_builtins",
46084612
"core",
46094613
"dlmalloc",
@@ -4627,7 +4631,7 @@ dependencies = [
46274631
name = "std_detect"
46284632
version = "0.1.5"
46294633
dependencies = [
4630-
"cfg-if 0.1.10",
4634+
"cfg-if 1.0.0",
46314635
"compiler_builtins",
46324636
"libc",
46334637
"rustc-std-workspace-alloc",

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["dylib", "rlib"]
1111

1212
[dependencies]
1313
alloc = { path = "../alloc" }
14-
cfg-if = { version = "0.1.8", features = ['rustc-dep-of-std'] }
14+
cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1515
panic_unwind = { path = "../panic_unwind", optional = true }
1616
panic_abort = { path = "../panic_abort" }
1717
core = { path = "../core" }

0 commit comments

Comments
 (0)