summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMartin Haug <mhaug@live.de>2022-04-25 12:58:10 +0200
committerMartin Haug <mhaug@live.de>2022-04-25 14:20:47 +0200
commit649c101f07f6de4791dc9b6091dff4a85112a15c (patch)
treea7abdb603577b0186a801e5728a05d1fc4e373ff /Cargo.lock
parent7163b4a6c57c99fda085bf9b364c82bdba8ea698 (diff)
Add blind text function
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock41
1 files changed, 41 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5a2e079e..e429f467 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -335,6 +335,15 @@ dependencies = [
]
[[package]]
+name = "lipsum"
+version = "0.8.0"
+source = "git+https://github.com/reknih/lipsum#c97ce95ba01ed2cce1d1b0b230b6b78295b0720b"
+dependencies = [
+ "rand",
+ "rand_chacha",
+]
+
+[[package]]
name = "lock_api"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -544,6 +553,12 @@ dependencies = [
]
[[package]]
+name = "ppv-lite86"
+version = "0.2.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
+
+[[package]]
name = "proc-macro2"
version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -562,6 +577,31 @@ dependencies = [
]
[[package]]
+name = "rand"
+version = "0.8.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+dependencies = [
+ "rand_core",
+]
+
+[[package]]
+name = "rand_chacha"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+dependencies = [
+ "ppv-lite86",
+ "rand_core",
+]
+
+[[package]]
+name = "rand_core"
+version = "0.6.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
+
+[[package]]
name = "rctree"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -854,6 +894,7 @@ dependencies = [
"iai",
"image",
"kurbo",
+ "lipsum",
"memmap2",
"miniz_oxide 0.4.4",
"once_cell",