Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 5bcd31f

Browse files
committed
Upgrade all dependencies to the latest version
In particular, this includes updates to Rug that we can make use of [1], [2], [3], [4]. [1]: https://gitlab.com/tspiteri/rug/-/issues/78 [2]: https://gitlab.com/tspiteri/rug/-/issues/80 [3]: https://gitlab.com/tspiteri/rug/-/issues/76 [4]: https://gitlab.com/tspiteri/rug/-/issues/73
1 parent b67b4cc commit 5bcd31f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ exclude = [
5959
]
6060

6161
[dev-dependencies]
62-
no-panic = "0.1.30"
62+
no-panic = "0.1.33"
6363

6464
[profile.release]
6565
# Options for no-panic to correctly detect the lack of panics

crates/libm-macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ proc-macro = true
99

1010
[dependencies]
1111
heck = "0.5.0"
12-
proc-macro2 = "1.0.88"
13-
quote = "1.0.37"
14-
syn = { version = "2.0.79", features = ["full", "extra-traits", "visit-mut"] }
12+
proc-macro2 = "1.0.93"
13+
quote = "1.0.38"
14+
syn = { version = "2.0.96", features = ["full", "extra-traits", "visit-mut"] }
1515

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

crates/libm-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ icount = ["dep:iai-callgrind"]
2727
short-benchmarks = []
2828

2929
[dependencies]
30-
anyhow = "1.0.90"
30+
anyhow = "1.0.95"
3131
az = { version = "1.2.1", optional = true }
3232
gmp-mpfr-sys = { version = "1.6.4", optional = true, default-features = false, features = ["mpfr"] }
3333
iai-callgrind = { version = "0.14.0", optional = true }
@@ -39,7 +39,7 @@ paste = "1.0.15"
3939
rand = "0.8.5"
4040
rand_chacha = "0.3.1"
4141
rayon = "1.10.0"
42-
rug = { version = "1.26.1", optional = true, default-features = false, features = ["float", "integer", "std"] }
42+
rug = { version = "1.27.0", optional = true, default-features = false, features = ["float", "integer", "std"] }
4343

4444
[target.'cfg(target_family = "wasm")'.dependencies]
4545
# Enable randomness on WASM

crates/musl-math-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ publish = false
1010
libm = { path = "../../" }
1111

1212
[build-dependencies]
13-
cc = "1.1.24"
13+
cc = "1.2.10"

crates/util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ libm = { path = "../..", default-features = false }
1616
libm-macros = { path = "../libm-macros" }
1717
libm-test = { path = "../libm-test", default-features = false }
1818
musl-math-sys = { path = "../musl-math-sys", optional = true }
19-
rug = { version = "1.26.1", optional = true, default-features = false, features = ["float", "std"] }
19+
rug = { version = "1.27.0", optional = true, default-features = false, features = ["float", "std"] }

0 commit comments

Comments
 (0)