Update gmp-mpfr-sys to 1.4.10

This commit is contained in:
PaddiM8 2022-11-05 23:47:39 +01:00
parent 806cee9454
commit 15e6350c4c
2 changed files with 7 additions and 5 deletions

9
Cargo.lock generated
View File

@ -152,9 +152,9 @@ dependencies = [
[[package]] [[package]]
name = "gmp-mpfr-sys" name = "gmp-mpfr-sys"
version = "1.4.8" version = "1.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d00b0ef965511028498a1668c4a6ef9b0b2501a4a5ab26fb8156408869306e" checksum = "ea3f42dadb6c75f122e9aa87e757ef11d4282f664c9f2e6476a9c2c8970f9d19"
dependencies = [ dependencies = [
"libc", "libc",
"winapi", "winapi",
@ -182,6 +182,7 @@ dependencies = [
name = "kalk" name = "kalk"
version = "3.0.0" version = "3.0.0"
dependencies = [ dependencies = [
"gmp-mpfr-sys",
"lazy_static", "lazy_static",
"regex", "regex",
"rug", "rug",
@ -317,9 +318,9 @@ checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189"
[[package]] [[package]]
name = "rug" name = "rug"
version = "1.16.0" version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f829d980ca193fa33fdd1decaebe72ec07cf2d8afdd0be60b3e5391f18014c91" checksum = "203180f444c95eac53586ed04793ecf6454c5d28f9eca8eead815fc19e136c47"
dependencies = [ dependencies = [
"az", "az",
"gmp-mpfr-sys", "gmp-mpfr-sys",

View File

@ -14,9 +14,10 @@ categories = ["mathematics", "parser-implementations"]
crate-type = ["cdylib", "rlib"] crate-type = ["cdylib", "rlib"]
[dependencies] [dependencies]
rug = { version = "1.16.0", features = ["float"], optional = true } rug = { version = "1.17.0", features = ["float"], optional = true }
lazy_static = "1.4.0" lazy_static = "1.4.0"
wasm-bindgen = "0.2.69" wasm-bindgen = "0.2.69"
gmp-mpfr-sys = "1.4.9"
[dev-dependencies] [dev-dependencies]
wasm-bindgen-test = "0.3.19" wasm-bindgen-test = "0.3.19"