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
This commit is contained in:
Trevor Gross 2025-01-25 00:50:02 +00:00
parent 173a48ce8c
commit 7c6c0c1b79
5 changed files with 8 additions and 8 deletions

View file

@ -59,7 +59,7 @@ exclude = [
]
[dev-dependencies]
no-panic = "0.1.30"
no-panic = "0.1.33"
[profile.release]
# Options for no-panic to correctly detect the lack of panics

View file

@ -9,9 +9,9 @@ proc-macro = true
[dependencies]
heck = "0.5.0"
proc-macro2 = "1.0.88"
quote = "1.0.37"
syn = { version = "2.0.79", features = ["full", "extra-traits", "visit-mut"] }
proc-macro2 = "1.0.93"
quote = "1.0.38"
syn = { version = "2.0.96", features = ["full", "extra-traits", "visit-mut"] }
[lints.rust]
# Values used during testing

View file

@ -27,7 +27,7 @@ icount = ["dep:iai-callgrind"]
short-benchmarks = []
[dependencies]
anyhow = "1.0.90"
anyhow = "1.0.95"
az = { version = "1.2.1", optional = true }
gmp-mpfr-sys = { version = "1.6.4", optional = true, default-features = false, features = ["mpfr"] }
iai-callgrind = { version = "0.14.0", optional = true }
@ -39,7 +39,7 @@ paste = "1.0.15"
rand = "0.8.5"
rand_chacha = "0.3.1"
rayon = "1.10.0"
rug = { version = "1.26.1", optional = true, default-features = false, features = ["float", "integer", "std"] }
rug = { version = "1.27.0", optional = true, default-features = false, features = ["float", "integer", "std"] }
[target.'cfg(target_family = "wasm")'.dependencies]
# Enable randomness on WASM

View file

@ -10,4 +10,4 @@ publish = false
libm = { path = "../../" }
[build-dependencies]
cc = "1.1.24"
cc = "1.2.10"

View file

@ -16,4 +16,4 @@ libm = { path = "../..", default-features = false }
libm-macros = { path = "../libm-macros" }
libm-test = { path = "../libm-test", default-features = false }
musl-math-sys = { path = "../musl-math-sys", optional = true }
rug = { version = "1.26.1", optional = true, default-features = false, features = ["float", "std"] }
rug = { version = "1.27.0", optional = true, default-features = false, features = ["float", "std"] }