sundries

Assorted little morsels for your enjoyment

git clone https://code.pdelong.com/sundries.git

  1# This file is automatically @generated by Cargo.
  2# It is not intended for manual editing.
  3version = 3
  4
  5[[package]]
  6name = "autocfg"
  7version = "1.1.0"
  8source = "registry+https://github.com/rust-lang/crates.io-index"
  9checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
 10
 11[[package]]
 12name = "cfg-if"
 13version = "1.0.0"
 14source = "registry+https://github.com/rust-lang/crates.io-index"
 15checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
 16
 17[[package]]
 18name = "crossbeam-deque"
 19version = "0.8.3"
 20source = "registry+https://github.com/rust-lang/crates.io-index"
 21checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
 22dependencies = [
 23 "cfg-if",
 24 "crossbeam-epoch",
 25 "crossbeam-utils",
 26]
 27
 28[[package]]
 29name = "crossbeam-epoch"
 30version = "0.9.15"
 31source = "registry+https://github.com/rust-lang/crates.io-index"
 32checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
 33dependencies = [
 34 "autocfg",
 35 "cfg-if",
 36 "crossbeam-utils",
 37 "memoffset",
 38 "scopeguard",
 39]
 40
 41[[package]]
 42name = "crossbeam-utils"
 43version = "0.8.16"
 44source = "registry+https://github.com/rust-lang/crates.io-index"
 45checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
 46dependencies = [
 47 "cfg-if",
 48]
 49
 50[[package]]
 51name = "dreidel"
 52version = "0.1.0"
 53dependencies = [
 54 "rand",
 55 "rayon",
 56]
 57
 58[[package]]
 59name = "either"
 60version = "1.9.0"
 61source = "registry+https://github.com/rust-lang/crates.io-index"
 62checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
 63
 64[[package]]
 65name = "getrandom"
 66version = "0.2.11"
 67source = "registry+https://github.com/rust-lang/crates.io-index"
 68checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
 69dependencies = [
 70 "cfg-if",
 71 "libc",
 72 "wasi",
 73]
 74
 75[[package]]
 76name = "libc"
 77version = "0.2.151"
 78source = "registry+https://github.com/rust-lang/crates.io-index"
 79checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
 80
 81[[package]]
 82name = "memoffset"
 83version = "0.9.0"
 84source = "registry+https://github.com/rust-lang/crates.io-index"
 85checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
 86dependencies = [
 87 "autocfg",
 88]
 89
 90[[package]]
 91name = "ppv-lite86"
 92version = "0.2.17"
 93source = "registry+https://github.com/rust-lang/crates.io-index"
 94checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
 95
 96[[package]]
 97name = "rand"
 98version = "0.8.5"
 99source = "registry+https://github.com/rust-lang/crates.io-index"
100checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
101dependencies = [
102 "rand_chacha",
103 "rand_core",
104]
105
106[[package]]
107name = "rand_chacha"
108version = "0.3.1"
109source = "registry+https://github.com/rust-lang/crates.io-index"
110checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
111dependencies = [
112 "ppv-lite86",
113 "rand_core",
114]
115
116[[package]]
117name = "rand_core"
118version = "0.6.4"
119source = "registry+https://github.com/rust-lang/crates.io-index"
120checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
121dependencies = [
122 "getrandom",
123]
124
125[[package]]
126name = "rayon"
127version = "1.8.0"
128source = "registry+https://github.com/rust-lang/crates.io-index"
129checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
130dependencies = [
131 "either",
132 "rayon-core",
133]
134
135[[package]]
136name = "rayon-core"
137version = "1.12.0"
138source = "registry+https://github.com/rust-lang/crates.io-index"
139checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
140dependencies = [
141 "crossbeam-deque",
142 "crossbeam-utils",
143]
144
145[[package]]
146name = "scopeguard"
147version = "1.2.0"
148source = "registry+https://github.com/rust-lang/crates.io-index"
149checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
150
151[[package]]
152name = "wasi"
153version = "0.11.0+wasi-snapshot-preview1"
154source = "registry+https://github.com/rust-lang/crates.io-index"
155checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"