summaryrefslogtreecommitdiffstats
path: root/CLI/rust/Cargo.lock
diff options
context:
space:
mode:
authora14m <[email protected]>2021-04-09 21:38:12 +0200
committera14m <[email protected]>2021-04-09 21:50:18 +0200
commit3863d6ca62c75cf08a3dffd509aa9dbea96b894f (patch)
tree92309076cb4ec7f88d81e7b2722a0a220f5065e2 /CLI/rust/Cargo.lock
parent4a831d3bf6d9c3541ef34b75104a926999457005 (diff)
Add seed generator/populate w/tests
Diffstat (limited to 'CLI/rust/Cargo.lock')
-rw-r--r--CLI/rust/Cargo.lock27
1 files changed, 27 insertions, 0 deletions
diff --git a/CLI/rust/Cargo.lock b/CLI/rust/Cargo.lock
index 841b96e..2ef9298 100644
--- a/CLI/rust/Cargo.lock
+++ b/CLI/rust/Cargo.lock
@@ -177,6 +177,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41"
[[package]]
+name = "libm"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
+
+[[package]]
name = "libz-sys"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -227,6 +233,16 @@ dependencies = [
]
[[package]]
+name = "num-traits"
+version = "0.2.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
+dependencies = [
+ "autocfg",
+ "libm",
+]
+
+[[package]]
name = "openssl-probe"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -337,6 +353,16 @@ dependencies = [
]
[[package]]
+name = "rand_distr"
+version = "0.4.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "da9e8f32ad24fb80d07d2323a9a2ce8b30d68a62b8cb4df88119ff49a698f038"
+dependencies = [
+ "num-traits",
+ "rand",
+]
+
+[[package]]
name = "rand_hc"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -418,6 +444,7 @@ dependencies = [
"curl",
"mocktopus",
"rand",
+ "rand_distr",
"regex",
"terminal_size",
]