Rollup merge of #128691 - tgross35:update-builtins, r=Amanieu · patricklam/verify-rust-std@79cd72a (original) (raw)
3 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -10,10 +10,7 @@ edition = "2021" | ||
10 | 10 | |
11 | 11 | [dependencies] |
12 | 12 | core = { path = "../core" } |
13 | -compiler_builtins = { version = "0.1.114", features = ['rustc-dep-of-std'] } | |
14 | - | |
15 | -[target.'cfg(not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")))'.dependencies] | |
16 | -compiler_builtins = { version = "0.1.114", features = ["no-f16-f128"] } | |
13 | +compiler_builtins = { version = "0.1.117", features = ['rustc-dep-of-std'] } | |
17 | 14 | |
18 | 15 | [dev-dependencies] |
19 | 16 | rand = { version = "0.8.5", default-features = false, features = ["alloc"] } |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -17,7 +17,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] } | ||
17 | 17 | panic_unwind = { path = "../panic_unwind", optional = true } |
18 | 18 | panic_abort = { path = "../panic_abort" } |
19 | 19 | core = { path = "../core", public = true } |
20 | -compiler_builtins = { version = "0.1.114" } | |
20 | +compiler_builtins = { version = "0.1.117" } | |
21 | 21 | profiler_builtins = { path = "../profiler_builtins", optional = true } |
22 | 22 | unwind = { path = "../unwind" } |
23 | 23 | hashbrown = { version = "0.14", default-features = false, features = [ |