pineappl_cli 1.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. pineappl_cli-1.3.3/Cargo.lock +1920 -0
  2. pineappl_cli-1.3.3/Cargo.toml +38 -0
  3. pineappl_cli-1.3.3/PKG-INFO +23 -0
  4. pineappl_cli-1.3.3/pineappl/Cargo.toml +43 -0
  5. pineappl_cli-1.3.3/pineappl/README.md +9 -0
  6. pineappl_cli-1.3.3/pineappl/src/boc.rs +1571 -0
  7. pineappl_cli-1.3.3/pineappl/src/convert.rs +9 -0
  8. pineappl_cli-1.3.3/pineappl/src/convolutions.rs +398 -0
  9. pineappl_cli-1.3.3/pineappl/src/error.rs +17 -0
  10. pineappl_cli-1.3.3/pineappl/src/evolution.rs +553 -0
  11. pineappl_cli-1.3.3/pineappl/src/fk_table.rs +412 -0
  12. pineappl_cli-1.3.3/pineappl/src/grid.rs +2153 -0
  13. pineappl_cli-1.3.3/pineappl/src/interpolation.rs +807 -0
  14. pineappl_cli-1.3.3/pineappl/src/lib.rs +49 -0
  15. pineappl_cli-1.3.3/pineappl/src/packed_array.rs +1026 -0
  16. pineappl_cli-1.3.3/pineappl/src/pids.rs +1108 -0
  17. pineappl_cli-1.3.3/pineappl/src/reference.rs +45 -0
  18. pineappl_cli-1.3.3/pineappl/src/subgrid.rs +793 -0
  19. pineappl_cli-1.3.3/pineappl/src/v0.rs +334 -0
  20. pineappl_cli-1.3.3/pineappl/tests/drell_yan_lo.rs +729 -0
  21. pineappl_cli-1.3.3/pineappl_applgrid/Cargo.toml +28 -0
  22. pineappl_cli-1.3.3/pineappl_applgrid/README.md +0 -0
  23. pineappl_cli-1.3.3/pineappl_applgrid/build.rs +169 -0
  24. pineappl_cli-1.3.3/pineappl_applgrid/src/applgrid.cpp +224 -0
  25. pineappl_cli-1.3.3/pineappl_applgrid/src/applgrid.hpp +84 -0
  26. pineappl_cli-1.3.3/pineappl_applgrid/src/check_appl_igrid.cpp +5 -0
  27. pineappl_cli-1.3.3/pineappl_applgrid/src/helpers.hpp +12 -0
  28. pineappl_cli-1.3.3/pineappl_applgrid/src/lib.rs +200 -0
  29. pineappl_cli-1.3.3/pineappl_cli/Cargo.toml +59 -0
  30. pineappl_cli-1.3.3/pineappl_cli/README.md +11 -0
  31. pineappl_cli-1.3.3/pineappl_cli/src/analyze.rs +190 -0
  32. pineappl_cli-1.3.3/pineappl_cli/src/channels.rs +195 -0
  33. pineappl_cli-1.3.3/pineappl_cli/src/convolve.rs +156 -0
  34. pineappl_cli-1.3.3/pineappl_cli/src/diff.rs +272 -0
  35. pineappl_cli-1.3.3/pineappl_cli/src/evolve.rs +667 -0
  36. pineappl_cli-1.3.3/pineappl_cli/src/export/applgrid.rs +423 -0
  37. pineappl_cli-1.3.3/pineappl_cli/src/export.rs +240 -0
  38. pineappl_cli-1.3.3/pineappl_cli/src/help.rs +31 -0
  39. pineappl_cli-1.3.3/pineappl_cli/src/helpers.rs +564 -0
  40. pineappl_cli-1.3.3/pineappl_cli/src/import/applgrid.rs +310 -0
  41. pineappl_cli-1.3.3/pineappl_cli/src/import/fastnlo.rs +589 -0
  42. pineappl_cli-1.3.3/pineappl_cli/src/import/fktable.rs +345 -0
  43. pineappl_cli-1.3.3/pineappl_cli/src/import.rs +355 -0
  44. pineappl_cli-1.3.3/pineappl_cli/src/lib.rs +90 -0
  45. pineappl_cli-1.3.3/pineappl_cli/src/main.rs +29 -0
  46. pineappl_cli-1.3.3/pineappl_cli/src/merge.rs +30 -0
  47. pineappl_cli-1.3.3/pineappl_cli/src/orders.rs +144 -0
  48. pineappl_cli-1.3.3/pineappl_cli/src/plot.py +505 -0
  49. pineappl_cli-1.3.3/pineappl_cli/src/plot.rs +568 -0
  50. pineappl_cli-1.3.3/pineappl_cli/src/pull.rs +253 -0
  51. pineappl_cli-1.3.3/pineappl_cli/src/read.rs +234 -0
  52. pineappl_cli-1.3.3/pineappl_cli/src/subgrids.rs +133 -0
  53. pineappl_cli-1.3.3/pineappl_cli/src/uncert.rs +278 -0
  54. pineappl_cli-1.3.3/pineappl_cli/src/write.rs +678 -0
  55. pineappl_cli-1.3.3/pineappl_cli/tests/analyze.rs +134 -0
  56. pineappl_cli-1.3.3/pineappl_cli/tests/channels.rs +300 -0
  57. pineappl_cli-1.3.3/pineappl_cli/tests/convolve.rs +477 -0
  58. pineappl_cli-1.3.3/pineappl_cli/tests/diff.rs +258 -0
  59. pineappl_cli-1.3.3/pineappl_cli/tests/evolve.rs +493 -0
  60. pineappl_cli-1.3.3/pineappl_cli/tests/export.rs +165 -0
  61. pineappl_cli-1.3.3/pineappl_cli/tests/help.rs +24 -0
  62. pineappl_cli-1.3.3/pineappl_cli/tests/import.rs +1325 -0
  63. pineappl_cli-1.3.3/pineappl_cli/tests/main.rs +44 -0
  64. pineappl_cli-1.3.3/pineappl_cli/tests/merge.rs +67 -0
  65. pineappl_cli-1.3.3/pineappl_cli/tests/orders.rs +171 -0
  66. pineappl_cli-1.3.3/pineappl_cli/tests/plot.rs +1878 -0
  67. pineappl_cli-1.3.3/pineappl_cli/tests/pull.rs +183 -0
  68. pineappl_cli-1.3.3/pineappl_cli/tests/read.rs +743 -0
  69. pineappl_cli-1.3.3/pineappl_cli/tests/subgrids.rs +859 -0
  70. pineappl_cli-1.3.3/pineappl_cli/tests/uncert.rs +439 -0
  71. pineappl_cli-1.3.3/pineappl_cli/tests/write.rs +1180 -0
  72. pineappl_cli-1.3.3/pineappl_fastnlo/Cargo.toml +27 -0
  73. pineappl_cli-1.3.3/pineappl_fastnlo/README.md +0 -0
  74. pineappl_cli-1.3.3/pineappl_fastnlo/build.rs +75 -0
  75. pineappl_cli-1.3.3/pineappl_fastnlo/src/fastnlo.cpp +198 -0
  76. pineappl_cli-1.3.3/pineappl_fastnlo/src/fastnlo.hpp +94 -0
  77. pineappl_cli-1.3.3/pineappl_fastnlo/src/lib.rs +249 -0
  78. pineappl_cli-1.3.3/pyproject.toml +8 -0
@@ -0,0 +1,1920 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "0.6.11"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "6e2e1ebcb11de5c03c67de28a7df593d32191b44939c482e97702baaaa6ab6a5"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "utf8parse",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "anstyle"
36
+ version = "1.0.10"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
39
+
40
+ [[package]]
41
+ name = "anstyle-parse"
42
+ version = "0.2.3"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
45
+ dependencies = [
46
+ "utf8parse",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "anstyle-query"
51
+ version = "1.0.2"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
54
+ dependencies = [
55
+ "windows-sys 0.52.0",
56
+ ]
57
+
58
+ [[package]]
59
+ name = "anstyle-wincon"
60
+ version = "3.0.2"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
63
+ dependencies = [
64
+ "anstyle",
65
+ "windows-sys 0.52.0",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anyhow"
70
+ version = "1.0.79"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
73
+
74
+ [[package]]
75
+ name = "arrayvec"
76
+ version = "0.7.4"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
79
+
80
+ [[package]]
81
+ name = "assert_cmd"
82
+ version = "2.0.13"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "00ad3f3a942eee60335ab4342358c161ee296829e0d16ff42fc1d6cb07815467"
85
+ dependencies = [
86
+ "anstyle",
87
+ "bstr",
88
+ "doc-comment",
89
+ "predicates",
90
+ "predicates-core",
91
+ "predicates-tree",
92
+ "wait-timeout",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "assert_fs"
97
+ version = "1.1.1"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "2cd762e110c8ed629b11b6cde59458cc1c71de78ebbcc30099fc8e0403a2a2ec"
100
+ dependencies = [
101
+ "anstyle",
102
+ "doc-comment",
103
+ "globwalk",
104
+ "predicates",
105
+ "predicates-core",
106
+ "predicates-tree",
107
+ "tempfile",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "autocfg"
112
+ version = "1.1.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
115
+
116
+ [[package]]
117
+ name = "base64"
118
+ version = "0.22.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
121
+
122
+ [[package]]
123
+ name = "bincode"
124
+ version = "1.3.3"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
127
+ dependencies = [
128
+ "serde",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "bitflags"
133
+ version = "1.3.2"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
136
+
137
+ [[package]]
138
+ name = "bitflags"
139
+ version = "2.4.2"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
142
+ dependencies = [
143
+ "serde",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "block-buffer"
148
+ version = "0.10.4"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
151
+ dependencies = [
152
+ "generic-array",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "bstr"
157
+ version = "1.9.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
160
+ dependencies = [
161
+ "memchr",
162
+ "regex-automata",
163
+ "serde",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "byteorder"
168
+ version = "1.5.0"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
171
+
172
+ [[package]]
173
+ name = "cc"
174
+ version = "1.2.16"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
177
+ dependencies = [
178
+ "shlex",
179
+ ]
180
+
181
+ [[package]]
182
+ name = "cfg-if"
183
+ version = "1.0.0"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
186
+
187
+ [[package]]
188
+ name = "clap"
189
+ version = "4.5.38"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
192
+ dependencies = [
193
+ "clap_builder",
194
+ "clap_derive",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "clap_builder"
199
+ version = "4.5.38"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
202
+ dependencies = [
203
+ "anstream",
204
+ "anstyle",
205
+ "clap_lex",
206
+ "strsim",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "clap_derive"
211
+ version = "4.5.32"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "09176aae279615badda0765c0c0b3f6ed53f4709118af73cf4655d85d1530cd7"
214
+ dependencies = [
215
+ "heck",
216
+ "proc-macro2",
217
+ "quote",
218
+ "syn",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "clap_lex"
223
+ version = "0.7.4"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
226
+
227
+ [[package]]
228
+ name = "clap_mangen"
229
+ version = "0.2.26"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "724842fa9b144f9b89b3f3d371a89f3455eea660361d13a554f68f8ae5d6c13a"
232
+ dependencies = [
233
+ "clap",
234
+ "roff",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "codespan-reporting"
239
+ version = "0.11.1"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
242
+ dependencies = [
243
+ "termcolor",
244
+ "unicode-width",
245
+ ]
246
+
247
+ [[package]]
248
+ name = "colorchoice"
249
+ version = "1.0.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
252
+
253
+ [[package]]
254
+ name = "cpufeatures"
255
+ version = "0.2.12"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
258
+ dependencies = [
259
+ "libc",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "crc32fast"
264
+ version = "1.3.2"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
267
+ dependencies = [
268
+ "cfg-if",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "crossbeam-deque"
273
+ version = "0.8.5"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
276
+ dependencies = [
277
+ "crossbeam-epoch",
278
+ "crossbeam-utils",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "crossbeam-epoch"
283
+ version = "0.9.18"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
286
+ dependencies = [
287
+ "crossbeam-utils",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "crossbeam-utils"
292
+ version = "0.8.19"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
295
+
296
+ [[package]]
297
+ name = "crypto-common"
298
+ version = "0.1.6"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
301
+ dependencies = [
302
+ "generic-array",
303
+ "typenum",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "cxx"
308
+ version = "1.0.120"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "ff4dc7287237dd438b926a81a1a5605dad33d286870e5eee2db17bf2bcd9e92a"
311
+ dependencies = [
312
+ "cc",
313
+ "cxxbridge-flags",
314
+ "cxxbridge-macro",
315
+ "link-cplusplus",
316
+ ]
317
+
318
+ [[package]]
319
+ name = "cxx-build"
320
+ version = "1.0.115"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "0a71e1e631fa2f2f5f92e8b0d860a00c198c6771623a6cefcc863e3554f0d8d6"
323
+ dependencies = [
324
+ "cc",
325
+ "codespan-reporting",
326
+ "once_cell",
327
+ "proc-macro2",
328
+ "quote",
329
+ "scratch",
330
+ "syn",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "cxxbridge-flags"
335
+ version = "1.0.120"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "701a1ac7a697e249cdd8dc026d7a7dafbfd0dbcd8bd24ec55889f2bc13dd6287"
338
+
339
+ [[package]]
340
+ name = "cxxbridge-macro"
341
+ version = "1.0.120"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "b404f596046b0bb2d903a9c786b875a126261b52b7c3a64bbb66382c41c771df"
344
+ dependencies = [
345
+ "proc-macro2",
346
+ "quote",
347
+ "syn",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "difflib"
352
+ version = "0.4.0"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
355
+
356
+ [[package]]
357
+ name = "digest"
358
+ version = "0.10.7"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
361
+ dependencies = [
362
+ "block-buffer",
363
+ "crypto-common",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "dirs"
368
+ version = "5.0.1"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
371
+ dependencies = [
372
+ "dirs-sys",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "dirs-next"
377
+ version = "2.0.0"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
380
+ dependencies = [
381
+ "cfg-if",
382
+ "dirs-sys-next",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "dirs-sys"
387
+ version = "0.4.1"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
390
+ dependencies = [
391
+ "libc",
392
+ "option-ext",
393
+ "redox_users",
394
+ "windows-sys 0.48.0",
395
+ ]
396
+
397
+ [[package]]
398
+ name = "dirs-sys-next"
399
+ version = "0.1.2"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
402
+ dependencies = [
403
+ "libc",
404
+ "redox_users",
405
+ "winapi",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "doc-comment"
410
+ version = "0.3.3"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
413
+
414
+ [[package]]
415
+ name = "either"
416
+ version = "1.9.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
419
+ dependencies = [
420
+ "serde",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "encode_unicode"
425
+ version = "1.0.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
428
+
429
+ [[package]]
430
+ name = "enum_dispatch"
431
+ version = "0.3.12"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
434
+ dependencies = [
435
+ "once_cell",
436
+ "proc-macro2",
437
+ "quote",
438
+ "syn",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "equivalent"
443
+ version = "1.0.1"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
446
+
447
+ [[package]]
448
+ name = "errno"
449
+ version = "0.3.8"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
452
+ dependencies = [
453
+ "libc",
454
+ "windows-sys 0.52.0",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "fastrand"
459
+ version = "2.0.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
462
+
463
+ [[package]]
464
+ name = "filetime"
465
+ version = "0.2.23"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
468
+ dependencies = [
469
+ "cfg-if",
470
+ "libc",
471
+ "redox_syscall",
472
+ "windows-sys 0.52.0",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "flate2"
477
+ version = "1.0.28"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
480
+ dependencies = [
481
+ "crc32fast",
482
+ "miniz_oxide",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "float-cmp"
487
+ version = "0.9.0"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
490
+ dependencies = [
491
+ "num-traits",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "form_urlencoded"
496
+ version = "1.2.1"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
499
+ dependencies = [
500
+ "percent-encoding",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "fs2"
505
+ version = "0.4.3"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
508
+ dependencies = [
509
+ "libc",
510
+ "winapi",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "generic-array"
515
+ version = "0.14.7"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
518
+ dependencies = [
519
+ "typenum",
520
+ "version_check",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "getrandom"
525
+ version = "0.2.12"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
528
+ dependencies = [
529
+ "cfg-if",
530
+ "libc",
531
+ "wasi",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "git-version"
536
+ version = "0.3.9"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19"
539
+ dependencies = [
540
+ "git-version-macro",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "git-version-macro"
545
+ version = "0.3.9"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0"
548
+ dependencies = [
549
+ "proc-macro2",
550
+ "quote",
551
+ "syn",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "globset"
556
+ version = "0.4.14"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "57da3b9b5b85bd66f31093f8c408b90a74431672542466497dcbdfdc02034be1"
559
+ dependencies = [
560
+ "aho-corasick",
561
+ "bstr",
562
+ "log",
563
+ "regex-automata",
564
+ "regex-syntax",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "globwalk"
569
+ version = "0.9.1"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
572
+ dependencies = [
573
+ "bitflags 2.4.2",
574
+ "ignore",
575
+ "walkdir",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "hashbrown"
580
+ version = "0.14.3"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
583
+
584
+ [[package]]
585
+ name = "heck"
586
+ version = "0.5.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
589
+
590
+ [[package]]
591
+ name = "hermit-abi"
592
+ version = "0.3.4"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f"
595
+
596
+ [[package]]
597
+ name = "idna"
598
+ version = "1.0.3"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
601
+ dependencies = [
602
+ "idna_adapter",
603
+ "smallvec",
604
+ "utf8_iter",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "idna_adapter"
609
+ version = "1.0.0"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "cfdf4f5d937a025381f5ab13624b1c5f51414bfe5c9885663226eae8d6d39560"
612
+
613
+ [[package]]
614
+ name = "ignore"
615
+ version = "0.4.22"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "b46810df39e66e925525d6e38ce1e7f6e1d208f72dc39757880fcb66e2c58af1"
618
+ dependencies = [
619
+ "crossbeam-deque",
620
+ "globset",
621
+ "log",
622
+ "memchr",
623
+ "regex-automata",
624
+ "same-file",
625
+ "walkdir",
626
+ "winapi-util",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "indexmap"
631
+ version = "2.1.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
634
+ dependencies = [
635
+ "equivalent",
636
+ "hashbrown",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "indoc"
641
+ version = "2.0.4"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
644
+
645
+ [[package]]
646
+ name = "is-terminal"
647
+ version = "0.4.10"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
650
+ dependencies = [
651
+ "hermit-abi",
652
+ "rustix",
653
+ "windows-sys 0.52.0",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "itertools"
658
+ version = "0.10.5"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
661
+ dependencies = [
662
+ "either",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "itoa"
667
+ version = "1.0.10"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
670
+
671
+ [[package]]
672
+ name = "lazy_static"
673
+ version = "1.4.0"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
676
+
677
+ [[package]]
678
+ name = "libc"
679
+ version = "0.2.170"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
682
+
683
+ [[package]]
684
+ name = "libredox"
685
+ version = "0.0.1"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
688
+ dependencies = [
689
+ "bitflags 2.4.2",
690
+ "libc",
691
+ "redox_syscall",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "link-cplusplus"
696
+ version = "1.0.9"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9"
699
+ dependencies = [
700
+ "cc",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "linux-raw-sys"
705
+ version = "0.4.13"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
708
+
709
+ [[package]]
710
+ name = "log"
711
+ version = "0.4.20"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
714
+
715
+ [[package]]
716
+ name = "lz4_flex"
717
+ version = "0.9.5"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3"
720
+ dependencies = [
721
+ "twox-hash",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "managed-lhapdf"
726
+ version = "0.3.4"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "aab1b15ac56f2746106430a2cc6e8ae1d92d6342bd363bb7973be29df75ae6f4"
729
+ dependencies = [
730
+ "anyhow",
731
+ "cxx",
732
+ "cxx-build",
733
+ "dirs",
734
+ "flate2",
735
+ "fs2",
736
+ "pkg-config",
737
+ "serde",
738
+ "tar",
739
+ "thiserror",
740
+ "toml",
741
+ "ureq",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "matrixmultiply"
746
+ version = "0.3.8"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
749
+ dependencies = [
750
+ "autocfg",
751
+ "rawpointer",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "memchr"
756
+ version = "2.7.1"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
759
+
760
+ [[package]]
761
+ name = "memoffset"
762
+ version = "0.9.0"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
765
+ dependencies = [
766
+ "autocfg",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "miniz_oxide"
771
+ version = "0.7.1"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
774
+ dependencies = [
775
+ "adler",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "ndarray"
780
+ version = "0.15.6"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
783
+ dependencies = [
784
+ "matrixmultiply",
785
+ "num-complex",
786
+ "num-integer",
787
+ "num-traits",
788
+ "rawpointer",
789
+ "serde",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "ndarray-npy"
794
+ version = "0.8.1"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "f85776816e34becd8bd9540818d7dc77bf28307f3b3dcc51cc82403c6931680c"
797
+ dependencies = [
798
+ "byteorder",
799
+ "ndarray",
800
+ "num-traits",
801
+ "py_literal",
802
+ "zip",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "num-bigint"
807
+ version = "0.4.4"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
810
+ dependencies = [
811
+ "autocfg",
812
+ "num-integer",
813
+ "num-traits",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "num-complex"
818
+ version = "0.4.4"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
821
+ dependencies = [
822
+ "num-traits",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "num-integer"
827
+ version = "0.1.45"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
830
+ dependencies = [
831
+ "autocfg",
832
+ "num-traits",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "num-traits"
837
+ version = "0.2.17"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
840
+ dependencies = [
841
+ "autocfg",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "numpy"
846
+ version = "0.26.0"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "9b2dba356160b54f5371b550575b78130a54718b4c6e46b3f33a6da74a27e78b"
849
+ dependencies = [
850
+ "libc",
851
+ "ndarray",
852
+ "num-complex",
853
+ "num-integer",
854
+ "num-traits",
855
+ "pyo3",
856
+ "pyo3-build-config",
857
+ "rustc-hash 2.1.1",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "once_cell"
862
+ version = "1.21.3"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
865
+
866
+ [[package]]
867
+ name = "option-ext"
868
+ version = "0.2.0"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
871
+
872
+ [[package]]
873
+ name = "percent-encoding"
874
+ version = "2.3.1"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
877
+
878
+ [[package]]
879
+ name = "pest"
880
+ version = "2.7.6"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06"
883
+ dependencies = [
884
+ "memchr",
885
+ "thiserror",
886
+ "ucd-trie",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "pest_derive"
891
+ version = "2.7.6"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde"
894
+ dependencies = [
895
+ "pest",
896
+ "pest_generator",
897
+ ]
898
+
899
+ [[package]]
900
+ name = "pest_generator"
901
+ version = "2.7.6"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275"
904
+ dependencies = [
905
+ "pest",
906
+ "pest_meta",
907
+ "proc-macro2",
908
+ "quote",
909
+ "syn",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "pest_meta"
914
+ version = "2.7.6"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d"
917
+ dependencies = [
918
+ "once_cell",
919
+ "pest",
920
+ "sha2",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "pineappl"
925
+ version = "0.8.3"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "5041fcf611eb0c41f1f6562b498fabdd1319c8d4572fd137ac244ca4e73d999c"
928
+ dependencies = [
929
+ "anyhow",
930
+ "arrayvec",
931
+ "bincode",
932
+ "bitflags 2.4.2",
933
+ "enum_dispatch",
934
+ "float-cmp",
935
+ "git-version",
936
+ "itertools",
937
+ "lz4_flex",
938
+ "ndarray",
939
+ "rustc-hash 1.1.0",
940
+ "serde",
941
+ "thiserror",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "pineappl"
946
+ version = "1.3.3"
947
+ dependencies = [
948
+ "anyhow",
949
+ "arrayvec",
950
+ "bincode",
951
+ "bitflags 2.4.2",
952
+ "enum_dispatch",
953
+ "float-cmp",
954
+ "git-version",
955
+ "itertools",
956
+ "lz4_flex",
957
+ "managed-lhapdf",
958
+ "ndarray",
959
+ "num-complex",
960
+ "pineappl 0.8.3",
961
+ "rand",
962
+ "rand_pcg",
963
+ "rayon",
964
+ "rustc-hash 1.1.0",
965
+ "serde",
966
+ "thiserror",
967
+ ]
968
+
969
+ [[package]]
970
+ name = "pineappl_applgrid"
971
+ version = "1.3.3"
972
+ dependencies = [
973
+ "cc",
974
+ "cxx",
975
+ "cxx-build",
976
+ "managed-lhapdf",
977
+ "pkg-config",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "pineappl_capi"
982
+ version = "1.3.3"
983
+ dependencies = [
984
+ "itertools",
985
+ "ndarray",
986
+ "pineappl 1.3.3",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "pineappl_cli"
991
+ version = "1.3.3"
992
+ dependencies = [
993
+ "anyhow",
994
+ "assert_cmd",
995
+ "assert_fs",
996
+ "base64",
997
+ "clap",
998
+ "cxx",
999
+ "either",
1000
+ "enum_dispatch",
1001
+ "flate2",
1002
+ "float-cmp",
1003
+ "git-version",
1004
+ "itertools",
1005
+ "lz4_flex",
1006
+ "managed-lhapdf",
1007
+ "ndarray",
1008
+ "ndarray-npy",
1009
+ "pineappl 1.3.3",
1010
+ "pineappl_applgrid",
1011
+ "pineappl_fastnlo",
1012
+ "predicates",
1013
+ "prettytable-rs",
1014
+ "rayon",
1015
+ "serde",
1016
+ "serde_yaml",
1017
+ "tar",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "pineappl_fastnlo"
1022
+ version = "1.3.3"
1023
+ dependencies = [
1024
+ "cxx",
1025
+ "cxx-build",
1026
+ "pkg-config",
1027
+ "thiserror",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "pineappl_py"
1032
+ version = "1.3.3"
1033
+ dependencies = [
1034
+ "itertools",
1035
+ "ndarray",
1036
+ "numpy",
1037
+ "pineappl 1.3.3",
1038
+ "pyo3",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "pkg-config"
1043
+ version = "0.3.29"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb"
1046
+
1047
+ [[package]]
1048
+ name = "portable-atomic"
1049
+ version = "1.6.0"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
1052
+
1053
+ [[package]]
1054
+ name = "predicates"
1055
+ version = "3.1.0"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8"
1058
+ dependencies = [
1059
+ "anstyle",
1060
+ "difflib",
1061
+ "predicates-core",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "predicates-core"
1066
+ version = "1.0.6"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
1069
+
1070
+ [[package]]
1071
+ name = "predicates-tree"
1072
+ version = "1.0.9"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
1075
+ dependencies = [
1076
+ "predicates-core",
1077
+ "termtree",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "prettytable-rs"
1082
+ version = "0.10.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
1085
+ dependencies = [
1086
+ "encode_unicode",
1087
+ "is-terminal",
1088
+ "lazy_static",
1089
+ "term",
1090
+ "unicode-width",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "proc-macro2"
1095
+ version = "1.0.88"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "7c3a7fc5db1e57d5a779a352c8cdb57b29aa4c40cc69c3a68a7fedc815fbf2f9"
1098
+ dependencies = [
1099
+ "unicode-ident",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "py_literal"
1104
+ version = "0.4.0"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
1107
+ dependencies = [
1108
+ "num-bigint",
1109
+ "num-complex",
1110
+ "num-traits",
1111
+ "pest",
1112
+ "pest_derive",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "pyo3"
1117
+ version = "0.26.0"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1120
+ dependencies = [
1121
+ "indoc",
1122
+ "libc",
1123
+ "memoffset",
1124
+ "once_cell",
1125
+ "portable-atomic",
1126
+ "pyo3-build-config",
1127
+ "pyo3-ffi",
1128
+ "pyo3-macros",
1129
+ "unindent",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "pyo3-build-config"
1134
+ version = "0.26.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1137
+ dependencies = [
1138
+ "target-lexicon",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "pyo3-ffi"
1143
+ version = "0.26.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1146
+ dependencies = [
1147
+ "libc",
1148
+ "pyo3-build-config",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "pyo3-macros"
1153
+ version = "0.26.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1156
+ dependencies = [
1157
+ "proc-macro2",
1158
+ "pyo3-macros-backend",
1159
+ "quote",
1160
+ "syn",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "pyo3-macros-backend"
1165
+ version = "0.26.0"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1168
+ dependencies = [
1169
+ "heck",
1170
+ "proc-macro2",
1171
+ "pyo3-build-config",
1172
+ "quote",
1173
+ "syn",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "quote"
1178
+ version = "1.0.35"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
1181
+ dependencies = [
1182
+ "proc-macro2",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "rand"
1187
+ version = "0.8.5"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1190
+ dependencies = [
1191
+ "rand_core",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "rand_core"
1196
+ version = "0.6.4"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1199
+
1200
+ [[package]]
1201
+ name = "rand_pcg"
1202
+ version = "0.3.1"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
1205
+ dependencies = [
1206
+ "rand_core",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "rawpointer"
1211
+ version = "0.2.1"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1214
+
1215
+ [[package]]
1216
+ name = "rayon"
1217
+ version = "1.8.1"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051"
1220
+ dependencies = [
1221
+ "either",
1222
+ "rayon-core",
1223
+ ]
1224
+
1225
+ [[package]]
1226
+ name = "rayon-core"
1227
+ version = "1.12.1"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1230
+ dependencies = [
1231
+ "crossbeam-deque",
1232
+ "crossbeam-utils",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "redox_syscall"
1237
+ version = "0.4.1"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1240
+ dependencies = [
1241
+ "bitflags 1.3.2",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "redox_users"
1246
+ version = "0.4.4"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
1249
+ dependencies = [
1250
+ "getrandom",
1251
+ "libredox",
1252
+ "thiserror",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "regex-automata"
1257
+ version = "0.4.5"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd"
1260
+ dependencies = [
1261
+ "aho-corasick",
1262
+ "memchr",
1263
+ "regex-syntax",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "regex-syntax"
1268
+ version = "0.8.2"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
1271
+
1272
+ [[package]]
1273
+ name = "ring"
1274
+ version = "0.17.13"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee"
1277
+ dependencies = [
1278
+ "cc",
1279
+ "cfg-if",
1280
+ "getrandom",
1281
+ "libc",
1282
+ "untrusted",
1283
+ "windows-sys 0.52.0",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "roff"
1288
+ version = "0.2.1"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
1291
+
1292
+ [[package]]
1293
+ name = "rustc-hash"
1294
+ version = "1.1.0"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1297
+
1298
+ [[package]]
1299
+ name = "rustc-hash"
1300
+ version = "2.1.1"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1303
+
1304
+ [[package]]
1305
+ name = "rustix"
1306
+ version = "0.38.30"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
1309
+ dependencies = [
1310
+ "bitflags 2.4.2",
1311
+ "errno",
1312
+ "libc",
1313
+ "linux-raw-sys",
1314
+ "windows-sys 0.52.0",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "rustls"
1319
+ version = "0.23.12"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
1322
+ dependencies = [
1323
+ "log",
1324
+ "once_cell",
1325
+ "ring",
1326
+ "rustls-pki-types",
1327
+ "rustls-webpki",
1328
+ "subtle",
1329
+ "zeroize",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "rustls-pki-types"
1334
+ version = "1.8.0"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
1337
+
1338
+ [[package]]
1339
+ name = "rustls-webpki"
1340
+ version = "0.102.6"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
1343
+ dependencies = [
1344
+ "ring",
1345
+ "rustls-pki-types",
1346
+ "untrusted",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "rustversion"
1351
+ version = "1.0.14"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
1354
+
1355
+ [[package]]
1356
+ name = "ryu"
1357
+ version = "1.0.16"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
1360
+
1361
+ [[package]]
1362
+ name = "same-file"
1363
+ version = "1.0.6"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1366
+ dependencies = [
1367
+ "winapi-util",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "scratch"
1372
+ version = "1.0.7"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152"
1375
+
1376
+ [[package]]
1377
+ name = "serde"
1378
+ version = "1.0.195"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
1381
+ dependencies = [
1382
+ "serde_derive",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "serde_derive"
1387
+ version = "1.0.195"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
1390
+ dependencies = [
1391
+ "proc-macro2",
1392
+ "quote",
1393
+ "syn",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "serde_spanned"
1398
+ version = "0.6.5"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
1401
+ dependencies = [
1402
+ "serde",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "serde_yaml"
1407
+ version = "0.9.30"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38"
1410
+ dependencies = [
1411
+ "indexmap",
1412
+ "itoa",
1413
+ "ryu",
1414
+ "serde",
1415
+ "unsafe-libyaml",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "sha2"
1420
+ version = "0.10.8"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1423
+ dependencies = [
1424
+ "cfg-if",
1425
+ "cpufeatures",
1426
+ "digest",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "shlex"
1431
+ version = "1.3.0"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1434
+
1435
+ [[package]]
1436
+ name = "smallvec"
1437
+ version = "1.13.2"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1440
+
1441
+ [[package]]
1442
+ name = "static_assertions"
1443
+ version = "1.1.0"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1446
+
1447
+ [[package]]
1448
+ name = "strsim"
1449
+ version = "0.11.1"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1452
+
1453
+ [[package]]
1454
+ name = "subtle"
1455
+ version = "2.5.0"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
1458
+
1459
+ [[package]]
1460
+ name = "syn"
1461
+ version = "2.0.82"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "83540f837a8afc019423a8edb95b52a8effe46957ee402287f4292fae35be021"
1464
+ dependencies = [
1465
+ "proc-macro2",
1466
+ "quote",
1467
+ "unicode-ident",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "tar"
1472
+ version = "0.4.40"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
1475
+ dependencies = [
1476
+ "filetime",
1477
+ "libc",
1478
+ "xattr",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "target-lexicon"
1483
+ version = "0.13.2"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1486
+
1487
+ [[package]]
1488
+ name = "tempfile"
1489
+ version = "3.9.0"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
1492
+ dependencies = [
1493
+ "cfg-if",
1494
+ "fastrand",
1495
+ "redox_syscall",
1496
+ "rustix",
1497
+ "windows-sys 0.52.0",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "term"
1502
+ version = "0.7.0"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
1505
+ dependencies = [
1506
+ "dirs-next",
1507
+ "rustversion",
1508
+ "winapi",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "termcolor"
1513
+ version = "1.4.1"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1516
+ dependencies = [
1517
+ "winapi-util",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "termtree"
1522
+ version = "0.4.1"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
1525
+
1526
+ [[package]]
1527
+ name = "thiserror"
1528
+ version = "1.0.56"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
1531
+ dependencies = [
1532
+ "thiserror-impl",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "thiserror-impl"
1537
+ version = "1.0.56"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
1540
+ dependencies = [
1541
+ "proc-macro2",
1542
+ "quote",
1543
+ "syn",
1544
+ ]
1545
+
1546
+ [[package]]
1547
+ name = "toml"
1548
+ version = "0.8.12"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
1551
+ dependencies = [
1552
+ "serde",
1553
+ "serde_spanned",
1554
+ "toml_datetime",
1555
+ "toml_edit",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "toml_datetime"
1560
+ version = "0.6.5"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
1563
+ dependencies = [
1564
+ "serde",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "toml_edit"
1569
+ version = "0.22.9"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4"
1572
+ dependencies = [
1573
+ "indexmap",
1574
+ "serde",
1575
+ "serde_spanned",
1576
+ "toml_datetime",
1577
+ "winnow",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "twox-hash"
1582
+ version = "1.6.3"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
1585
+ dependencies = [
1586
+ "cfg-if",
1587
+ "static_assertions",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "typenum"
1592
+ version = "1.17.0"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1595
+
1596
+ [[package]]
1597
+ name = "ucd-trie"
1598
+ version = "0.1.6"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
1601
+
1602
+ [[package]]
1603
+ name = "unicode-ident"
1604
+ version = "1.0.12"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
1607
+
1608
+ [[package]]
1609
+ name = "unicode-width"
1610
+ version = "0.1.11"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
1613
+
1614
+ [[package]]
1615
+ name = "unindent"
1616
+ version = "0.2.3"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
1619
+
1620
+ [[package]]
1621
+ name = "unsafe-libyaml"
1622
+ version = "0.2.10"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "ab4c90930b95a82d00dc9e9ac071b4991924390d46cbd0dfe566148667605e4b"
1625
+
1626
+ [[package]]
1627
+ name = "untrusted"
1628
+ version = "0.9.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1631
+
1632
+ [[package]]
1633
+ name = "ureq"
1634
+ version = "2.10.1"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
1637
+ dependencies = [
1638
+ "base64",
1639
+ "flate2",
1640
+ "log",
1641
+ "once_cell",
1642
+ "rustls",
1643
+ "rustls-pki-types",
1644
+ "url",
1645
+ "webpki-roots",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "url"
1650
+ version = "2.5.4"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1653
+ dependencies = [
1654
+ "form_urlencoded",
1655
+ "idna",
1656
+ "percent-encoding",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "utf8_iter"
1661
+ version = "1.0.4"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1664
+
1665
+ [[package]]
1666
+ name = "utf8parse"
1667
+ version = "0.2.1"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
1670
+
1671
+ [[package]]
1672
+ name = "version_check"
1673
+ version = "0.9.4"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1676
+
1677
+ [[package]]
1678
+ name = "wait-timeout"
1679
+ version = "0.2.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
1682
+ dependencies = [
1683
+ "libc",
1684
+ ]
1685
+
1686
+ [[package]]
1687
+ name = "walkdir"
1688
+ version = "2.4.0"
1689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1690
+ checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
1691
+ dependencies = [
1692
+ "same-file",
1693
+ "winapi-util",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "wasi"
1698
+ version = "0.11.0+wasi-snapshot-preview1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1701
+
1702
+ [[package]]
1703
+ name = "webpki-roots"
1704
+ version = "0.26.1"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
1707
+ dependencies = [
1708
+ "rustls-pki-types",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "winapi"
1713
+ version = "0.3.9"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1716
+ dependencies = [
1717
+ "winapi-i686-pc-windows-gnu",
1718
+ "winapi-x86_64-pc-windows-gnu",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "winapi-i686-pc-windows-gnu"
1723
+ version = "0.4.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1726
+
1727
+ [[package]]
1728
+ name = "winapi-util"
1729
+ version = "0.1.6"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
1732
+ dependencies = [
1733
+ "winapi",
1734
+ ]
1735
+
1736
+ [[package]]
1737
+ name = "winapi-x86_64-pc-windows-gnu"
1738
+ version = "0.4.0"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1741
+
1742
+ [[package]]
1743
+ name = "windows-sys"
1744
+ version = "0.48.0"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1747
+ dependencies = [
1748
+ "windows-targets 0.48.5",
1749
+ ]
1750
+
1751
+ [[package]]
1752
+ name = "windows-sys"
1753
+ version = "0.52.0"
1754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1755
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1756
+ dependencies = [
1757
+ "windows-targets 0.52.0",
1758
+ ]
1759
+
1760
+ [[package]]
1761
+ name = "windows-targets"
1762
+ version = "0.48.5"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1765
+ dependencies = [
1766
+ "windows_aarch64_gnullvm 0.48.5",
1767
+ "windows_aarch64_msvc 0.48.5",
1768
+ "windows_i686_gnu 0.48.5",
1769
+ "windows_i686_msvc 0.48.5",
1770
+ "windows_x86_64_gnu 0.48.5",
1771
+ "windows_x86_64_gnullvm 0.48.5",
1772
+ "windows_x86_64_msvc 0.48.5",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "windows-targets"
1777
+ version = "0.52.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
1780
+ dependencies = [
1781
+ "windows_aarch64_gnullvm 0.52.0",
1782
+ "windows_aarch64_msvc 0.52.0",
1783
+ "windows_i686_gnu 0.52.0",
1784
+ "windows_i686_msvc 0.52.0",
1785
+ "windows_x86_64_gnu 0.52.0",
1786
+ "windows_x86_64_gnullvm 0.52.0",
1787
+ "windows_x86_64_msvc 0.52.0",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "windows_aarch64_gnullvm"
1792
+ version = "0.48.5"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1795
+
1796
+ [[package]]
1797
+ name = "windows_aarch64_gnullvm"
1798
+ version = "0.52.0"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
1801
+
1802
+ [[package]]
1803
+ name = "windows_aarch64_msvc"
1804
+ version = "0.48.5"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1807
+
1808
+ [[package]]
1809
+ name = "windows_aarch64_msvc"
1810
+ version = "0.52.0"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
1813
+
1814
+ [[package]]
1815
+ name = "windows_i686_gnu"
1816
+ version = "0.48.5"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1819
+
1820
+ [[package]]
1821
+ name = "windows_i686_gnu"
1822
+ version = "0.52.0"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
1825
+
1826
+ [[package]]
1827
+ name = "windows_i686_msvc"
1828
+ version = "0.48.5"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1831
+
1832
+ [[package]]
1833
+ name = "windows_i686_msvc"
1834
+ version = "0.52.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
1837
+
1838
+ [[package]]
1839
+ name = "windows_x86_64_gnu"
1840
+ version = "0.48.5"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1843
+
1844
+ [[package]]
1845
+ name = "windows_x86_64_gnu"
1846
+ version = "0.52.0"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
1849
+
1850
+ [[package]]
1851
+ name = "windows_x86_64_gnullvm"
1852
+ version = "0.48.5"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1855
+
1856
+ [[package]]
1857
+ name = "windows_x86_64_gnullvm"
1858
+ version = "0.52.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
1861
+
1862
+ [[package]]
1863
+ name = "windows_x86_64_msvc"
1864
+ version = "0.48.5"
1865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1866
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1867
+
1868
+ [[package]]
1869
+ name = "windows_x86_64_msvc"
1870
+ version = "0.52.0"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
1873
+
1874
+ [[package]]
1875
+ name = "winnow"
1876
+ version = "0.6.5"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8"
1879
+ dependencies = [
1880
+ "memchr",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "xattr"
1885
+ version = "1.3.1"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
1888
+ dependencies = [
1889
+ "libc",
1890
+ "linux-raw-sys",
1891
+ "rustix",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "xtask"
1896
+ version = "1.3.3"
1897
+ dependencies = [
1898
+ "anyhow",
1899
+ "clap",
1900
+ "clap_mangen",
1901
+ "enum_dispatch",
1902
+ "pineappl_cli",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "zeroize"
1907
+ version = "1.7.0"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
1910
+
1911
+ [[package]]
1912
+ name = "zip"
1913
+ version = "0.5.13"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
1916
+ dependencies = [
1917
+ "byteorder",
1918
+ "crc32fast",
1919
+ "thiserror",
1920
+ ]