diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-12-11 00:30:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-11 00:30:19 +0100 |
| commit | e47c96a9cfed3e50743ec05943efdae851879b95 (patch) | |
| tree | a7356de6327acedca30f7b35132c0c33ba186619 | |
| parent | 453dc54ba94761625a18d910f89bc4f8908bf8b0 (diff) | |
| parent | 6324e5cb6a8e3d48d563e2aa0924a057bebee096 (diff) | |
| download | rust-e47c96a9cfed3e50743ec05943efdae851879b95.tar.gz rust-e47c96a9cfed3e50743ec05943efdae851879b95.zip | |
Rollup merge of #105460 - mkroening:compiler-builtins-0.1.85, r=Mark-Simulacrum
Bump compiler-builtins to 0.1.85 This makes minimal floating point symbols available on `x86_64-unknown-none`. See https://github.com/rust-lang/compiler-builtins/issues/509 and https://github.com/rust-lang/compiler-builtins/pull/510.
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 37bbe95d633..248cc89476a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -809,9 +809,9 @@ dependencies = [ [[package]] name = "compiler_builtins" -version = "0.1.84" +version = "0.1.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989b2c1ca6e90ad06fdc69d1d1862fa28d27a977be6d92ae2fa762cf61fe0b10" +checksum = "13e81c6cd7ab79f51a0c927d22858d61ad12bd0b3865f0b13ece02a4486aeabb" dependencies = [ "cc", "rustc-std-workspace-core", diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index a7aefc26b97..29b5a468bf4 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -16,7 +16,7 @@ panic_unwind = { path = "../panic_unwind", optional = true } panic_abort = { path = "../panic_abort" } core = { path = "../core" } libc = { version = "0.2.138", default-features = false, features = ['rustc-dep-of-std'] } -compiler_builtins = { version = "0.1.82" } +compiler_builtins = { version = "0.1.85" } profiler_builtins = { path = "../profiler_builtins", optional = true } unwind = { path = "../unwind" } hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] } |
