summaryrefslogtreecommitdiff
path: root/sem2/Cargo.lock
diff options
context:
space:
mode:
authorAndrew Guschin <guschin.drew@gmail.com>2023-02-16 22:00:24 +0400
committerAndrew Guschin <guschin.drew@gmail.com>2023-02-16 22:00:24 +0400
commit5676f765746768da70f721fe116dfabfbb2b3b94 (patch)
tree44baf3da49e33e71c270c1b9682ea0288493d684 /sem2/Cargo.lock
parentad8ba9184d4c3b6eff9d251a8677853075975fce (diff)
Добавлено сравнение с библиотекой rug
Diffstat (limited to 'sem2/Cargo.lock')
-rw-r--r--sem2/Cargo.lock28
1 files changed, 28 insertions, 0 deletions
diff --git a/sem2/Cargo.lock b/sem2/Cargo.lock
index 50ba357..ba4505a 100644
--- a/sem2/Cargo.lock
+++ b/sem2/Cargo.lock
@@ -9,6 +9,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
+name = "az"
+version = "1.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973"
+
+[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -52,6 +58,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9b0705efd4599c15a38151f4721f7bc388306f61084d3bfd50bd07fbca5cb60"
[[package]]
+name = "gmp-mpfr-sys"
+version = "1.5.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "751710e4e568a3057987c7dc5bf85aab59b9a306a014a1900e52bbe427bc0cf6"
+dependencies = [
+ "libc",
+ "windows-sys 0.42.0",
+]
+
+[[package]]
name = "inquire"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -170,6 +186,17 @@ dependencies = [
]
[[package]]
+name = "rug"
+version = "1.19.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a465f6576b9f0844bd35749197576d68e3db169120532c4e0f868ecccad3d449"
+dependencies = [
+ "az",
+ "gmp-mpfr-sys",
+ "libc",
+]
+
+[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -180,6 +207,7 @@ name = "sem2"
version = "0.1.0"
dependencies = [
"inquire",
+ "rug",
]
[[package]]