|
@@ -9,6 +9,7 @@ dependencies = [
|
|
"curve25519-dalek",
|
|
"curve25519-dalek",
|
|
"itertools",
|
|
"itertools",
|
|
"rand",
|
|
"rand",
|
|
|
|
+ "rayon",
|
|
"sha2",
|
|
"sha2",
|
|
]
|
|
]
|
|
|
|
|
|
@@ -42,6 +43,31 @@ dependencies = [
|
|
"libc",
|
|
"libc",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "crossbeam-deque"
|
|
|
|
+version = "0.8.5"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
|
|
|
|
+dependencies = [
|
|
|
|
+ "crossbeam-epoch",
|
|
|
|
+ "crossbeam-utils",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "crossbeam-epoch"
|
|
|
|
+version = "0.9.18"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
|
|
+dependencies = [
|
|
|
|
+ "crossbeam-utils",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "crossbeam-utils"
|
|
|
|
+version = "0.8.19"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "curve25519-dalek"
|
|
name = "curve25519-dalek"
|
|
version = "2.1.3"
|
|
version = "2.1.3"
|
|
@@ -177,6 +203,26 @@ dependencies = [
|
|
"rand_core",
|
|
"rand_core",
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+[[package]]
|
|
|
|
+name = "rayon"
|
|
|
|
+version = "1.8.1"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
|
|
|
|
+dependencies = [
|
|
|
|
+ "either",
|
|
|
|
+ "rayon-core",
|
|
|
|
+]
|
|
|
|
+
|
|
|
|
+[[package]]
|
|
|
|
+name = "rayon-core"
|
|
|
|
+version = "1.12.1"
|
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
+checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
|
|
+dependencies = [
|
|
|
|
+ "crossbeam-deque",
|
|
|
|
+ "crossbeam-utils",
|
|
|
|
+]
|
|
|
|
+
|
|
[[package]]
|
|
[[package]]
|
|
name = "sha2"
|
|
name = "sha2"
|
|
version = "0.9.9"
|
|
version = "0.9.9"
|