Skip to content

Commit 90bd9f5

Browse files
committed
Upgrade dependencies to the latest version
This picks up a fix in `rustc_apfloat` [1] that resolves a problem with `fma`. [1]: https://github.com/rust-lang/rustc_apfloat/releases/tag/rustc_apfloat-v0.2.3%2Bllvm-462a31f5a5ab
1 parent 0f2c115 commit 90bd9f5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

builtins-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "MIT AND Apache-2.0 WITH LLVM-exception AND (MIT OR Apache-2.0)"
1212
# `xoshiro128**` is used for its quality, size, and speed at generating `u32` shift amounts.
1313
rand_xoshiro = "0.7"
1414
# To compare float builtins against
15-
rustc_apfloat = "0.2.2"
15+
rustc_apfloat = "0.2.3"
1616
# Really a dev dependency, but dev dependencies can't be optional
1717
iai-callgrind = { version = "0.14.1", optional = true }
1818

crates/libm-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ proc-macro = true
1212
heck = "0.5.0"
1313
proc-macro2 = "1.0.95"
1414
quote = "1.0.40"
15-
syn = { version = "2.0.101", features = ["full", "extra-traits", "visit-mut"] }
15+
syn = { version = "2.0.104", features = ["full", "extra-traits", "visit-mut"] }
1616

1717
[lints.rust]
1818
# Values used during testing

crates/musl-math-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ license = "MIT OR Apache-2.0"
1111
libm = { path = "../../libm" }
1212

1313
[build-dependencies]
14-
cc = "1.2.25"
14+
cc = "1.2.29"

libm-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ anyhow = "1.0.98"
3232
# This is not directly used but is required so we can enable `gmp-mpfr-sys/force-cross`.
3333
gmp-mpfr-sys = { version = "1.6.5", optional = true, default-features = false }
3434
iai-callgrind = { version = "0.14.1", optional = true }
35-
indicatif = { version = "0.17.11", default-features = false }
35+
indicatif = { version = "0.18.0", default-features = false }
3636
libm = { path = "../libm", features = ["unstable-public-internals"] }
3737
libm-macros = { path = "../crates/libm-macros" }
3838
musl-math-sys = { path = "../crates/musl-math-sys", optional = true }

0 commit comments

Comments
 (0)