Tue, 25 Oct 2022 23:05:40 +0300
Added NormExponent trait for exponents of norms
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", | |
17 | "serde", | |
18 | "serde_json", | |
19 | "trait-set", | |
20 | ] | |
21 | ||
22 | [[package]] | |
23 | name = "approx" | |
24 | version = "0.5.1" | |
25 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
26 | checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" | |
27 | dependencies = [ | |
28 | "num-traits", | |
29 | ] | |
30 | ||
31 | [[package]] | |
32 | name = "atty" | |
33 | version = "0.2.14" | |
34 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
35 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" | |
36 | dependencies = [ | |
37 | "hermit-abi", | |
38 | "libc", | |
39 | "winapi", | |
40 | ] | |
41 | ||
42 | [[package]] | |
43 | name = "autocfg" | |
44 | version = "1.1.0" | |
45 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
46 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" | |
47 | ||
48 | [[package]] | |
49 | name = "bstr" | |
50 | version = "0.2.17" | |
51 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
52 | checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223" | |
53 | dependencies = [ | |
54 | "lazy_static", | |
55 | "memchr", | |
56 | "regex-automata", | |
57 | "serde", | |
58 | ] | |
59 | ||
60 | [[package]] | |
61 | name = "bytemuck" | |
62 | version = "1.12.1" | |
63 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
64 | checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da" | |
65 | ||
66 | [[package]] | |
67 | name = "colored" | |
68 | version = "2.0.0" | |
69 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
70 | checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" | |
71 | dependencies = [ | |
72 | "atty", | |
73 | "lazy_static", | |
74 | "winapi", | |
75 | ] | |
76 | ||
77 | [[package]] | |
78 | name = "cpu-time" | |
79 | version = "1.0.0" | |
80 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
81 | checksum = "e9e393a7668fe1fad3075085b86c781883000b4ede868f43627b34a87c8b7ded" | |
82 | dependencies = [ | |
83 | "libc", | |
84 | "winapi", | |
85 | ] | |
86 | ||
87 | [[package]] | |
88 | name = "csv" | |
89 | version = "1.1.6" | |
90 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
91 | checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" | |
92 | dependencies = [ | |
93 | "bstr", | |
94 | "csv-core", | |
95 | "itoa 0.4.8", | |
96 | "ryu", | |
97 | "serde", | |
98 | ] | |
99 | ||
100 | [[package]] | |
101 | name = "csv-core" | |
102 | version = "0.1.10" | |
103 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
104 | checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" | |
105 | dependencies = [ | |
106 | "memchr", | |
107 | ] | |
108 | ||
109 | [[package]] | |
110 | name = "either" | |
111 | version = "1.8.0" | |
112 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
113 | checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" | |
114 | ||
115 | [[package]] | |
116 | name = "hermit-abi" | |
117 | version = "0.1.19" | |
118 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
119 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" | |
120 | dependencies = [ | |
121 | "libc", | |
122 | ] | |
123 | ||
124 | [[package]] | |
125 | name = "itertools" | |
126 | version = "0.10.5" | |
127 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
128 | checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" | |
129 | dependencies = [ | |
130 | "either", | |
131 | ] | |
132 | ||
133 | [[package]] | |
134 | name = "itoa" | |
135 | version = "0.4.8" | |
136 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
137 | checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" | |
138 | ||
139 | [[package]] | |
140 | name = "itoa" | |
141 | version = "1.0.3" | |
142 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
143 | checksum = "6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754" | |
144 | ||
145 | [[package]] | |
146 | name = "lazy_static" | |
147 | version = "1.4.0" | |
148 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
149 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | |
150 | ||
151 | [[package]] | |
152 | name = "libc" | |
153 | version = "0.2.134" | |
154 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
155 | checksum = "329c933548736bc49fd575ee68c89e8be4d260064184389a5b77517cddd99ffb" | |
156 | ||
157 | [[package]] | |
158 | name = "matrixmultiply" | |
159 | version = "0.3.2" | |
160 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
161 | checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84" | |
162 | dependencies = [ | |
163 | "rawpointer", | |
164 | ] | |
165 | ||
166 | [[package]] | |
167 | name = "memchr" | |
168 | version = "2.5.0" | |
169 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
170 | checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" | |
171 | ||
172 | [[package]] | |
173 | name = "nalgebra" | |
174 | version = "0.31.1" | |
175 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
176 | checksum = "e9e0a04ce089f9401aac565c740ed30c46291260f27d4911fdbaa6ca65fa3044" | |
177 | dependencies = [ | |
178 | "approx", | |
179 | "matrixmultiply", | |
180 | "nalgebra-macros", | |
181 | "num-complex", | |
182 | "num-rational", | |
183 | "num-traits", | |
184 | "simba", | |
185 | "typenum", | |
186 | ] | |
187 | ||
188 | [[package]] | |
189 | name = "nalgebra-macros" | |
190 | version = "0.1.0" | |
191 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
192 | checksum = "01fcc0b8149b4632adc89ac3b7b31a12fb6099a0317a4eb2ebff574ef7de7218" | |
193 | dependencies = [ | |
194 | "proc-macro2", | |
195 | "quote", | |
196 | "syn", | |
197 | ] | |
198 | ||
199 | [[package]] | |
200 | name = "num" | |
201 | version = "0.4.0" | |
202 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
203 | checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" | |
204 | dependencies = [ | |
205 | "num-bigint", | |
206 | "num-complex", | |
207 | "num-integer", | |
208 | "num-iter", | |
209 | "num-rational", | |
210 | "num-traits", | |
211 | ] | |
212 | ||
213 | [[package]] | |
214 | name = "num-bigint" | |
215 | version = "0.4.3" | |
216 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
217 | checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" | |
218 | dependencies = [ | |
219 | "autocfg", | |
220 | "num-integer", | |
221 | "num-traits", | |
222 | ] | |
223 | ||
224 | [[package]] | |
225 | name = "num-complex" | |
226 | version = "0.4.2" | |
227 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
228 | checksum = "7ae39348c8bc5fbd7f40c727a9925f03517afd2ab27d46702108b6a7e5414c19" | |
229 | dependencies = [ | |
230 | "num-traits", | |
231 | ] | |
232 | ||
233 | [[package]] | |
234 | name = "num-integer" | |
235 | version = "0.1.45" | |
236 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
237 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" | |
238 | dependencies = [ | |
239 | "autocfg", | |
240 | "num-traits", | |
241 | ] | |
242 | ||
243 | [[package]] | |
244 | name = "num-iter" | |
245 | version = "0.1.43" | |
246 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
247 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" | |
248 | dependencies = [ | |
249 | "autocfg", | |
250 | "num-integer", | |
251 | "num-traits", | |
252 | ] | |
253 | ||
254 | [[package]] | |
255 | name = "num-rational" | |
256 | version = "0.4.1" | |
257 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
258 | checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" | |
259 | dependencies = [ | |
260 | "autocfg", | |
261 | "num-bigint", | |
262 | "num-integer", | |
263 | "num-traits", | |
264 | ] | |
265 | ||
266 | [[package]] | |
267 | name = "num-traits" | |
268 | version = "0.2.15" | |
269 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
270 | checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" | |
271 | dependencies = [ | |
272 | "autocfg", | |
273 | ] | |
274 | ||
275 | [[package]] | |
276 | name = "numeric_literals" | |
277 | version = "0.2.0" | |
278 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
279 | checksum = "095aa67b0b9f2081746998f4f17106bdb51d56dc8c211afca5531b92b83bf98a" | |
280 | dependencies = [ | |
281 | "quote", | |
282 | "syn", | |
283 | ] | |
284 | ||
285 | [[package]] | |
286 | name = "paste" | |
287 | version = "1.0.9" | |
288 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
289 | checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1" | |
290 | ||
291 | [[package]] | |
292 | name = "proc-macro2" | |
293 | version = "1.0.46" | |
294 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
295 | checksum = "94e2ef8dbfc347b10c094890f778ee2e36ca9bb4262e86dc99cd217e35f3470b" | |
296 | dependencies = [ | |
297 | "unicode-ident", | |
298 | ] | |
299 | ||
300 | [[package]] | |
301 | name = "quote" | |
302 | version = "1.0.21" | |
303 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
304 | checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" | |
305 | dependencies = [ | |
306 | "proc-macro2", | |
307 | ] | |
308 | ||
309 | [[package]] | |
310 | name = "rawpointer" | |
311 | version = "0.2.1" | |
312 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
313 | checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" | |
314 | ||
315 | [[package]] | |
316 | name = "regex-automata" | |
317 | version = "0.1.10" | |
318 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
319 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" | |
320 | ||
321 | [[package]] | |
322 | name = "ryu" | |
323 | version = "1.0.11" | |
324 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
325 | checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" | |
326 | ||
327 | [[package]] | |
328 | name = "safe_arch" | |
329 | version = "0.6.0" | |
330 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
331 | checksum = "794821e4ccb0d9f979512f9c1973480123f9bd62a90d74ab0f9426fcf8f4a529" | |
332 | dependencies = [ | |
333 | "bytemuck", | |
334 | ] | |
335 | ||
336 | [[package]] | |
337 | name = "serde" | |
338 | version = "1.0.145" | |
339 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
340 | checksum = "728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b" | |
341 | dependencies = [ | |
342 | "serde_derive", | |
343 | ] | |
344 | ||
345 | [[package]] | |
346 | name = "serde_derive" | |
347 | version = "1.0.145" | |
348 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
349 | checksum = "81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c" | |
350 | dependencies = [ | |
351 | "proc-macro2", | |
352 | "quote", | |
353 | "syn", | |
354 | ] | |
355 | ||
356 | [[package]] | |
357 | name = "serde_json" | |
358 | version = "1.0.85" | |
359 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
360 | checksum = "e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44" | |
361 | dependencies = [ | |
362 | "itoa 1.0.3", | |
363 | "ryu", | |
364 | "serde", | |
365 | ] | |
366 | ||
367 | [[package]] | |
368 | name = "simba" | |
369 | version = "0.7.2" | |
370 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
371 | checksum = "c48e45e5961033db030b56ad67aef22e9c908c493a6e8348c0a0f6b93433cd77" | |
372 | dependencies = [ | |
373 | "approx", | |
374 | "num-complex", | |
375 | "num-traits", | |
376 | "paste", | |
377 | "wide", | |
378 | ] | |
379 | ||
380 | [[package]] | |
381 | name = "syn" | |
382 | version = "1.0.101" | |
383 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
384 | checksum = "e90cde112c4b9690b8cbe810cba9ddd8bc1d7472e2cae317b69e9438c1cba7d2" | |
385 | dependencies = [ | |
386 | "proc-macro2", | |
387 | "quote", | |
388 | "unicode-ident", | |
389 | ] | |
390 | ||
391 | [[package]] | |
392 | name = "trait-set" | |
393 | version = "0.2.0" | |
394 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
395 | checksum = "875c4c873cc824e362fa9a9419ffa59807244824275a44ad06fec9684fff08f2" | |
396 | dependencies = [ | |
397 | "proc-macro2", | |
398 | "quote", | |
399 | "syn", | |
400 | ] | |
401 | ||
402 | [[package]] | |
403 | name = "typenum" | |
404 | version = "1.15.0" | |
405 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
406 | checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" | |
407 | ||
408 | [[package]] | |
409 | name = "unicode-ident" | |
410 | version = "1.0.4" | |
411 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
412 | checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd" | |
413 | ||
414 | [[package]] | |
415 | name = "wide" | |
416 | version = "0.7.4" | |
417 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
418 | checksum = "b3aba2d1dac31ac7cae82847ac5b8be822aee8f99a4e100f279605016b185c5f" | |
419 | dependencies = [ | |
420 | "bytemuck", | |
421 | "safe_arch", | |
422 | ] | |
423 | ||
424 | [[package]] | |
425 | name = "winapi" | |
426 | version = "0.3.9" | |
427 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
428 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | |
429 | dependencies = [ | |
430 | "winapi-i686-pc-windows-gnu", | |
431 | "winapi-x86_64-pc-windows-gnu", | |
432 | ] | |
433 | ||
434 | [[package]] | |
435 | name = "winapi-i686-pc-windows-gnu" | |
436 | version = "0.4.0" | |
437 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
438 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | |
439 | ||
440 | [[package]] | |
441 | name = "winapi-x86_64-pc-windows-gnu" | |
442 | version = "0.4.0" | |
443 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
444 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |