mandelbrot

Mandelbrot generator(s)

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

  1# This file is automatically @generated by Cargo.
  2# It is not intended for manual editing.
  3version = 4
  4
  5[[package]]
  6name = "autocfg"
  7version = "1.5.0"
  8source = "registry+https://github.com/rust-lang/crates.io-index"
  9checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
 10
 11[[package]]
 12name = "cfg-if"
 13version = "1.0.3"
 14source = "registry+https://github.com/rust-lang/crates.io-index"
 15checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
 16
 17[[package]]
 18name = "crossbeam-deque"
 19version = "0.8.6"
 20source = "registry+https://github.com/rust-lang/crates.io-index"
 21checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
 22dependencies = [
 23 "crossbeam-epoch",
 24 "crossbeam-utils",
 25]
 26
 27[[package]]
 28name = "crossbeam-epoch"
 29version = "0.9.18"
 30source = "registry+https://github.com/rust-lang/crates.io-index"
 31checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
 32dependencies = [
 33 "crossbeam-utils",
 34]
 35
 36[[package]]
 37name = "crossbeam-utils"
 38version = "0.8.21"
 39source = "registry+https://github.com/rust-lang/crates.io-index"
 40checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
 41
 42[[package]]
 43name = "either"
 44version = "1.15.0"
 45source = "registry+https://github.com/rust-lang/crates.io-index"
 46checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
 47
 48[[package]]
 49name = "getrandom"
 50version = "0.3.3"
 51source = "registry+https://github.com/rust-lang/crates.io-index"
 52checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
 53dependencies = [
 54 "cfg-if",
 55 "libc",
 56 "r-efi",
 57 "wasi",
 58]
 59
 60[[package]]
 61name = "libc"
 62version = "0.2.175"
 63source = "registry+https://github.com/rust-lang/crates.io-index"
 64checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
 65
 66[[package]]
 67name = "mandelbrot-rs"
 68version = "0.1.0"
 69dependencies = [
 70 "num",
 71 "rand",
 72 "rayon",
 73]
 74
 75[[package]]
 76name = "num"
 77version = "0.4.3"
 78source = "registry+https://github.com/rust-lang/crates.io-index"
 79checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
 80dependencies = [
 81 "num-complex",
 82 "num-integer",
 83 "num-iter",
 84 "num-rational",
 85 "num-traits",
 86]
 87
 88[[package]]
 89name = "num-complex"
 90version = "0.4.6"
 91source = "registry+https://github.com/rust-lang/crates.io-index"
 92checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
 93dependencies = [
 94 "num-traits",
 95]
 96
 97[[package]]
 98name = "num-integer"
 99version = "0.1.46"
100source = "registry+https://github.com/rust-lang/crates.io-index"
101checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
102dependencies = [
103 "num-traits",
104]
105
106[[package]]
107name = "num-iter"
108version = "0.1.45"
109source = "registry+https://github.com/rust-lang/crates.io-index"
110checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
111dependencies = [
112 "autocfg",
113 "num-integer",
114 "num-traits",
115]
116
117[[package]]
118name = "num-rational"
119version = "0.4.2"
120source = "registry+https://github.com/rust-lang/crates.io-index"
121checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
122dependencies = [
123 "num-integer",
124 "num-traits",
125]
126
127[[package]]
128name = "num-traits"
129version = "0.2.19"
130source = "registry+https://github.com/rust-lang/crates.io-index"
131checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
132dependencies = [
133 "autocfg",
134]
135
136[[package]]
137name = "r-efi"
138version = "5.3.0"
139source = "registry+https://github.com/rust-lang/crates.io-index"
140checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
141
142[[package]]
143name = "rand"
144version = "0.9.2"
145source = "registry+https://github.com/rust-lang/crates.io-index"
146checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
147dependencies = [
148 "rand_core",
149]
150
151[[package]]
152name = "rand_core"
153version = "0.9.3"
154source = "registry+https://github.com/rust-lang/crates.io-index"
155checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
156dependencies = [
157 "getrandom",
158]
159
160[[package]]
161name = "rayon"
162version = "1.11.0"
163source = "registry+https://github.com/rust-lang/crates.io-index"
164checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
165dependencies = [
166 "either",
167 "rayon-core",
168]
169
170[[package]]
171name = "rayon-core"
172version = "1.13.0"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
175dependencies = [
176 "crossbeam-deque",
177 "crossbeam-utils",
178]
179
180[[package]]
181name = "wasi"
182version = "0.14.4+wasi-0.2.4"
183source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "88a5f4a424faf49c3c2c344f166f0662341d470ea185e939657aaff130f0ec4a"
185dependencies = [
186 "wit-bindgen",
187]
188
189[[package]]
190name = "wit-bindgen"
191version = "0.45.1"
192source = "registry+https://github.com/rust-lang/crates.io-index"
193checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36"