Tue, 06 Dec 2022 08:29:13 +0200
cargo-d alias generation with a cargo-d script
0 | 1 | # This file is automatically @generated by Cargo. |
2 | # It is not intended for manual editing. | |
3 | version = 3 | |
4 | ||
5 | [[package]] | |
6 | name = "alg_tools" | |
7 | version = "0.1.0" | |
8 | dependencies = [ | |
9 | "colored", | |
10 | "cpu-time", | |
11 | "csv", | |
12 | "itertools", | |
13 | "nalgebra", | |
14 | "num", | |
15 | "num-traits", | |
16 | "numeric_literals", | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
17 | "rayon", |
0 | 18 | "serde", |
19 | "serde_json", | |
20 | "trait-set", | |
21 | ] | |
22 | ||
23 | [[package]] | |
24 | name = "approx" | |
25 | version = "0.5.1" | |
26 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
27 | checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" | |
28 | dependencies = [ | |
29 | "num-traits", | |
30 | ] | |
31 | ||
32 | [[package]] | |
33 | name = "atty" | |
34 | version = "0.2.14" | |
35 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
36 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | |
37 | dependencies = [ | |
38 | "hermit-abi", | |
39 | "libc", | |
40 | "winapi", | |
41 | ] | |
42 | ||
43 | [[package]] | |
44 | name = "autocfg" | |
45 | version = "1.1.0" | |
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
47 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" | |
48 | ||
49 | [[package]] | |
50 | name = "bstr" | |
51 | version = "0.2.17" | |
52 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
53 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" | |
54 | dependencies = [ | |
55 | "lazy_static", | |
56 | "memchr", | |
57 | "regex-automata", | |
58 | "serde", | |
59 | ] | |
60 | ||
61 | [[package]] | |
62 | name = "bytemuck" | |
63 | version = "1.12.1" | |
64 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
65 | checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da" | |
66 | ||
67 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
68 | name = "cfg-if" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
69 | version = "1.0.0" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
70 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
71 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
72 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
73 | [[package]] |
0 | 74 | name = "colored" |
75 | version = "2.0.0" | |
76 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
77 | checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" | |
78 | dependencies = [ | |
79 | "atty", | |
80 | "lazy_static", | |
81 | "winapi", | |
82 | ] | |
83 | ||
84 | [[package]] | |
85 | name = "cpu-time" | |
86 | version = "1.0.0" | |
87 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
88 | checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded" | |
89 | dependencies = [ | |
90 | "libc", | |
91 | "winapi", | |
92 | ] | |
93 | ||
94 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
95 | name = "crossbeam-channel" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
96 | version = "0.5.6" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
97 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
98 | checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
99 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
100 | "cfg-if", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
101 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
102 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
103 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
104 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
105 | name = "crossbeam-deque" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
106 | version = "0.8.2" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
107 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
108 | checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
109 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
110 | "cfg-if", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
111 | "crossbeam-epoch", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
112 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
113 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
114 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
115 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
116 | name = "crossbeam-epoch" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
117 | version = "0.9.11" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
118 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
119 | checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
120 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
121 | "autocfg", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
122 | "cfg-if", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
123 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
124 | "memoffset", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
125 | "scopeguard", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
126 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
127 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
128 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
129 | name = "crossbeam-utils" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
130 | version = "0.8.12" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
131 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
132 | checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
133 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
134 | "cfg-if", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
135 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
136 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
137 | [[package]] |
0 | 138 | name = "csv" |
139 | version = "1.1.6" | |
140 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
141 | checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" | |
142 | dependencies = [ | |
143 | "bstr", | |
144 | "csv-core", | |
145 | "itoa 0.4.8", | |
146 | "ryu", | |
147 | "serde", | |
148 | ] | |
149 | ||
150 | [[package]] | |
151 | name = "csv-core" | |
152 | version = "0.1.10" | |
153 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
154 | checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" | |
155 | dependencies = [ | |
156 | "memchr", | |
157 | ] | |
158 | ||
159 | [[package]] | |
160 | name = "either" | |
161 | version = "1.8.0" | |
162 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
163 | checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" | |
164 | ||
165 | [[package]] | |
166 | name = "hermit-abi" | |
167 | version = "0.1.19" | |
168 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
169 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" | |
170 | dependencies = [ | |
171 | "libc", | |
172 | ] | |
173 | ||
174 | [[package]] | |
175 | name = "itertools" | |
176 | version = "0.10.5" | |
177 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
178 | checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" | |
179 | dependencies = [ | |
180 | "either", | |
181 | ] | |
182 | ||
183 | [[package]] | |
184 | name = "itoa" | |
185 | version = "0.4.8" | |
186 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
187 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" | |
188 | ||
189 | [[package]] | |
190 | name = "itoa" | |
191 | version = "1.0.3" | |
192 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
193 | checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" | |
194 | ||
195 | [[package]] | |
196 | name = "lazy_static" | |
197 | version = "1.4.0" | |
198 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
199 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | |
200 | ||
201 | [[package]] | |
202 | name = "libc" | |
203 | version = "0.2.134" | |
204 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
205 | checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb" | |
206 | ||
207 | [[package]] | |
208 | name = "matrixmultiply" | |
209 | version = "0.3.2" | |
210 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
211 | checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84" | |
212 | dependencies = [ | |
213 | "rawpointer", | |
214 | ] | |
215 | ||
216 | [[package]] | |
217 | name = "memchr" | |
218 | version = "2.5.0" | |
219 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
220 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" | |
221 | ||
222 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
223 | name = "memoffset" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
224 | version = "0.6.5" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
225 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
226 | checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
227 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
228 | "autocfg", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
229 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
230 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
231 | [[package]] |
0 | 232 | name = "nalgebra" |
233 | version = "0.31.1" | |
234 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
235 | checksum = "e9e0a04ce089f9401aac565c740ed30c46291260f27d4911fdbaa6ca65fa3044" | |
236 | dependencies = [ | |
237 | "approx", | |
238 | "matrixmultiply", | |
239 | "nalgebra-macros", | |
240 | "num-complex", | |
241 | "num-rational", | |
242 | "num-traits", | |
243 | "simba", | |
244 | "typenum", | |
245 | ] | |
246 | ||
247 | [[package]] | |
248 | name = "nalgebra-macros" | |
249 | version = "0.1.0" | |
250 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
251 | checksum = "01fcc0b8149b4632adc89ac3b7b31a12fb6099a0317a4eb2ebff574ef7de7218" | |
252 | dependencies = [ | |
253 | "proc-macro2", | |
254 | "quote", | |
255 | "syn", | |
256 | ] | |
257 | ||
258 | [[package]] | |
259 | name = "num" | |
260 | version = "0.4.0" | |
261 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
262 | checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" | |
263 | dependencies = [ | |
264 | "num-bigint", | |
265 | "num-complex", | |
266 | "num-integer", | |
267 | "num-iter", | |
268 | "num-rational", | |
269 | "num-traits", | |
270 | ] | |
271 | ||
272 | [[package]] | |
273 | name = "num-bigint" | |
274 | version = "0.4.3" | |
275 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
276 | checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" | |
277 | dependencies = [ | |
278 | "autocfg", | |
279 | "num-integer", | |
280 | "num-traits", | |
281 | ] | |
282 | ||
283 | [[package]] | |
284 | name = "num-complex" | |
285 | version = "0.4.2" | |
286 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
287 | checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19" | |
288 | dependencies = [ | |
289 | "num-traits", | |
290 | ] | |
291 | ||
292 | [[package]] | |
293 | name = "num-integer" | |
294 | version = "0.1.45" | |
295 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
296 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" | |
297 | dependencies = [ | |
298 | "autocfg", | |
299 | "num-traits", | |
300 | ] | |
301 | ||
302 | [[package]] | |
303 | name = "num-iter" | |
304 | version = "0.1.43" | |
305 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
306 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" | |
307 | dependencies = [ | |
308 | "autocfg", | |
309 | "num-integer", | |
310 | "num-traits", | |
311 | ] | |
312 | ||
313 | [[package]] | |
314 | name = "num-rational" | |
315 | version = "0.4.1" | |
316 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
317 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" | |
318 | dependencies = [ | |
319 | "autocfg", | |
320 | "num-bigint", | |
321 | "num-integer", | |
322 | "num-traits", | |
323 | ] | |
324 | ||
325 | [[package]] | |
326 | name = "num-traits" | |
327 | version = "0.2.15" | |
328 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
329 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" | |
330 | dependencies = [ | |
331 | "autocfg", | |
332 | ] | |
333 | ||
334 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
335 | name = "num_cpus" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
336 | version = "1.13.1" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
337 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
338 | checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
339 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
340 | "hermit-abi", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
341 | "libc", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
342 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
343 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
344 | [[package]] |
0 | 345 | name = "numeric_literals" |
346 | version = "0.2.0" | |
347 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
348 | checksum = "095aa67b0b9f2081746998f4f17106bdb51d56dc8c211afca5531b92b83bf98a" | |
349 | dependencies = [ | |
350 | "quote", | |
351 | "syn", | |
352 | ] | |
353 | ||
354 | [[package]] | |
355 | name = "paste" | |
356 | version = "1.0.9" | |
357 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
358 | checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" | |
359 | ||
360 | [[package]] | |
361 | name = "proc-macro2" | |
362 | version = "1.0.46" | |
363 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
364 | checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b" | |
365 | dependencies = [ | |
366 | "unicode-ident", | |
367 | ] | |
368 | ||
369 | [[package]] | |
370 | name = "quote" | |
371 | version = "1.0.21" | |
372 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
373 | checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" | |
374 | dependencies = [ | |
375 | "proc-macro2", | |
376 | ] | |
377 | ||
378 | [[package]] | |
379 | name = "rawpointer" | |
380 | version = "0.2.1" | |
381 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
382 | checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" | |
383 | ||
384 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
385 | name = "rayon" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
386 | version = "1.5.3" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
387 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
388 | checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
389 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
390 | "autocfg", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
391 | "crossbeam-deque", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
392 | "either", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
393 | "rayon-core", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
394 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
395 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
396 | [[package]] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
397 | name = "rayon-core" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
398 | version = "1.9.3" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
399 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
400 | checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
401 | dependencies = [ |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
402 | "crossbeam-channel", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
403 | "crossbeam-deque", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
404 | "crossbeam-utils", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
405 | "num_cpus", |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
406 | ] |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
407 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
408 | [[package]] |
0 | 409 | name = "regex-automata" |
410 | version = "0.1.10" | |
411 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
412 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" | |
413 | ||
414 | [[package]] | |
415 | name = "ryu" | |
416 | version = "1.0.11" | |
417 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
418 | checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" | |
419 | ||
420 | [[package]] | |
421 | name = "safe_arch" | |
422 | version = "0.6.0" | |
423 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
424 | checksum = "794821e4ccb0d9f979512f9c1973480123f9bd62a90d74ab0f9426fcf8f4a529" | |
425 | dependencies = [ | |
426 | "bytemuck", | |
427 | ] | |
428 | ||
429 | [[package]] | |
8
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
430 | name = "scopeguard" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
431 | version = "1.1.0" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
432 | source = "registry+https://github.com/rust-lang/crates.io-index" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
433 | checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
434 | |
4e09b7829b51
Multithreaded bisection tree operations
Tuomo Valkonen <tuomov@iki.fi>
parents:
0
diff
changeset
|
435 | [[package]] |
0 | 436 | name = "serde" |
437 | version = "1.0.145" | |
438 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
439 | checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b" | |
440 | dependencies = [ | |
441 | "serde_derive", | |
442 | ] | |
443 | ||
444 | [[package]] | |
445 | name = "serde_derive" | |
446 | version = "1.0.145" | |
447 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
448 | checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c" | |
449 | dependencies = [ | |
450 | "proc-macro2", | |
451 | "quote", | |
452 | "syn", | |
453 | ] | |
454 | ||
455 | [[package]] | |
456 | name = "serde_json" | |
457 | version = "1.0.85" | |
458 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
459 | checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" | |
460 | dependencies = [ | |
461 | "itoa 1.0.3", | |
462 | "ryu", | |
463 | "serde", | |
464 | ] | |
465 | ||
466 | [[package]] | |
467 | name = "simba" | |
468 | version = "0.7.2" | |
469 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
470 | checksum = "c48e45e5961033db030b56ad67aef22e9c908c493a6e8348c0a0f6b93433cd77" | |
471 | dependencies = [ | |
472 | "approx", | |
473 | "num-complex", | |
474 | "num-traits", | |
475 | "paste", | |
476 | "wide", | |
477 | ] | |
478 | ||
479 | [[package]] | |
480 | name = "syn" | |
481 | version = "1.0.101" | |
482 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
483 | checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2" | |
484 | dependencies = [ | |
485 | "proc-macro2", | |
486 | "quote", | |
487 | "unicode-ident", | |
488 | ] | |
489 | ||
490 | [[package]] | |
491 | name = "trait-set" | |
492 | version = "0.2.0" | |
493 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
494 | checksum = "875c4c873cc824e362fa9a9419ffa59807244824275a44ad06fec9684fff08f2" | |
495 | dependencies = [ | |
496 | "proc-macro2", | |
497 | "quote", | |
498 | "syn", | |
499 | ] | |
500 | ||
501 | [[package]] | |
502 | name = "typenum" | |
503 | version = "1.15.0" | |
504 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
505 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" | |
506 | ||
507 | [[package]] | |
508 | name = "unicode-ident" | |
509 | version = "1.0.4" | |
510 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
511 | checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd" | |
512 | ||
513 | [[package]] | |
514 | name = "wide" | |
515 | version = "0.7.4" | |
516 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
517 | checksum = "b3aba2d1dac31ac7cae82847ac5b8be822aee8f99a4e100f279605016b185c5f" | |
518 | dependencies = [ | |
519 | "bytemuck", | |
520 | "safe_arch", | |
521 | ] | |
522 | ||
523 | [[package]] | |
524 | name = "winapi" | |
525 | version = "0.3.9" | |
526 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
527 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | |
528 | dependencies = [ | |
529 | "winapi-i686-pc-windows-gnu", | |
530 | "winapi-x86_64-pc-windows-gnu", | |
531 | ] | |
532 | ||
533 | [[package]] | |
534 | name = "winapi-i686-pc-windows-gnu" | |
535 | version = "0.4.0" | |
536 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
537 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | |
538 | ||
539 | [[package]] | |
540 | name = "winapi-x86_64-pc-windows-gnu" | |
541 | version = "0.4.0" | |
542 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
543 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |