xlstream 0.1.0__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 (96) hide show
  1. xlstream-0.1.0/Cargo.lock +2137 -0
  2. xlstream-0.1.0/Cargo.toml +58 -0
  3. xlstream-0.1.0/PKG-INFO +14 -0
  4. xlstream-0.1.0/bindings/python/.gitignore +3 -0
  5. xlstream-0.1.0/bindings/python/Cargo.toml +27 -0
  6. xlstream-0.1.0/bindings/python/README.md +37 -0
  7. xlstream-0.1.0/bindings/python/src/lib.rs +106 -0
  8. xlstream-0.1.0/bindings/python/tests/conftest.py +54 -0
  9. xlstream-0.1.0/bindings/python/tests/test_concurrency.py +67 -0
  10. xlstream-0.1.0/bindings/python/tests/test_evaluate.py +65 -0
  11. xlstream-0.1.0/bindings/python/tests/test_exceptions.py +57 -0
  12. xlstream-0.1.0/crates/xlstream-core/Cargo.toml +21 -0
  13. xlstream-0.1.0/crates/xlstream-core/src/address.rs +22 -0
  14. xlstream-0.1.0/crates/xlstream-core/src/cell_error.rs +60 -0
  15. xlstream-0.1.0/crates/xlstream-core/src/coerce.rs +360 -0
  16. xlstream-0.1.0/crates/xlstream-core/src/date.rs +407 -0
  17. xlstream-0.1.0/crates/xlstream-core/src/error.rs +161 -0
  18. xlstream-0.1.0/crates/xlstream-core/src/lib.rs +35 -0
  19. xlstream-0.1.0/crates/xlstream-core/src/value.rs +74 -0
  20. xlstream-0.1.0/crates/xlstream-eval/Cargo.toml +32 -0
  21. xlstream-0.1.0/crates/xlstream-eval/src/builtins/aggregate.rs +658 -0
  22. xlstream-0.1.0/crates/xlstream-eval/src/builtins/conditional.rs +675 -0
  23. xlstream-0.1.0/crates/xlstream-eval/src/builtins/date.rs +1045 -0
  24. xlstream-0.1.0/crates/xlstream-eval/src/builtins/financial.rs +830 -0
  25. xlstream-0.1.0/crates/xlstream-eval/src/builtins/info.rs +619 -0
  26. xlstream-0.1.0/crates/xlstream-eval/src/builtins/lookup.rs +754 -0
  27. xlstream-0.1.0/crates/xlstream-eval/src/builtins/math.rs +1386 -0
  28. xlstream-0.1.0/crates/xlstream-eval/src/builtins/mod.rs +189 -0
  29. xlstream-0.1.0/crates/xlstream-eval/src/builtins/multi_conditional.rs +483 -0
  30. xlstream-0.1.0/crates/xlstream-eval/src/builtins/string.rs +1552 -0
  31. xlstream-0.1.0/crates/xlstream-eval/src/criteria.rs +490 -0
  32. xlstream-0.1.0/crates/xlstream-eval/src/evaluate.rs +601 -0
  33. xlstream-0.1.0/crates/xlstream-eval/src/interp.rs +277 -0
  34. xlstream-0.1.0/crates/xlstream-eval/src/lib.rs +41 -0
  35. xlstream-0.1.0/crates/xlstream-eval/src/lookup/loader.rs +392 -0
  36. xlstream-0.1.0/crates/xlstream-eval/src/lookup/mod.rs +9 -0
  37. xlstream-0.1.0/crates/xlstream-eval/src/lookup/sheet.rs +362 -0
  38. xlstream-0.1.0/crates/xlstream-eval/src/lookup/value.rs +270 -0
  39. xlstream-0.1.0/crates/xlstream-eval/src/ops.rs +946 -0
  40. xlstream-0.1.0/crates/xlstream-eval/src/prelude.rs +733 -0
  41. xlstream-0.1.0/crates/xlstream-eval/src/prelude_plan.rs +899 -0
  42. xlstream-0.1.0/crates/xlstream-eval/src/scope.rs +135 -0
  43. xlstream-0.1.0/crates/xlstream-eval/src/topo.rs +168 -0
  44. xlstream-0.1.0/crates/xlstream-eval/tests/aggregates.rs +100 -0
  45. xlstream-0.1.0/crates/xlstream-eval/tests/arithmetic.rs +87 -0
  46. xlstream-0.1.0/crates/xlstream-eval/tests/comparison.rs +106 -0
  47. xlstream-0.1.0/crates/xlstream-eval/tests/concat.rs +48 -0
  48. xlstream-0.1.0/crates/xlstream-eval/tests/conditional.rs +144 -0
  49. xlstream-0.1.0/crates/xlstream-eval/tests/date.rs +228 -0
  50. xlstream-0.1.0/crates/xlstream-eval/tests/eval_end_to_end.rs +209 -0
  51. xlstream-0.1.0/crates/xlstream-eval/tests/helpers/mod.rs +300 -0
  52. xlstream-0.1.0/crates/xlstream-eval/tests/info_financial.rs +137 -0
  53. xlstream-0.1.0/crates/xlstream-eval/tests/lookup_end_to_end.rs +282 -0
  54. xlstream-0.1.0/crates/xlstream-eval/tests/math.rs +174 -0
  55. xlstream-0.1.0/crates/xlstream-eval/tests/parallel.rs +198 -0
  56. xlstream-0.1.0/crates/xlstream-eval/tests/perf_smoke.rs +64 -0
  57. xlstream-0.1.0/crates/xlstream-eval/tests/precedence.rs +159 -0
  58. xlstream-0.1.0/crates/xlstream-eval/tests/range_expansion.rs +270 -0
  59. xlstream-0.1.0/crates/xlstream-eval/tests/string.rs +200 -0
  60. xlstream-0.1.0/crates/xlstream-eval/tests/unary.rs +52 -0
  61. xlstream-0.1.0/crates/xlstream-io/Cargo.toml +27 -0
  62. xlstream-0.1.0/crates/xlstream-io/src/convert.rs +142 -0
  63. xlstream-0.1.0/crates/xlstream-io/src/lib.rs +34 -0
  64. xlstream-0.1.0/crates/xlstream-io/src/reader.rs +196 -0
  65. xlstream-0.1.0/crates/xlstream-io/src/sheet_handle.rs +164 -0
  66. xlstream-0.1.0/crates/xlstream-io/src/stream.rs +307 -0
  67. xlstream-0.1.0/crates/xlstream-io/src/writer.rs +132 -0
  68. xlstream-0.1.0/crates/xlstream-io/tests/error_paths.rs +56 -0
  69. xlstream-0.1.0/crates/xlstream-io/tests/helpers/mod.rs +156 -0
  70. xlstream-0.1.0/crates/xlstream-io/tests/perf_smoke.rs +77 -0
  71. xlstream-0.1.0/crates/xlstream-io/tests/reader.rs +114 -0
  72. xlstream-0.1.0/crates/xlstream-io/tests/round_trip.rs +259 -0
  73. xlstream-0.1.0/crates/xlstream-io/tests/writer.rs +199 -0
  74. xlstream-0.1.0/crates/xlstream-parse/Cargo.toml +25 -0
  75. xlstream-0.1.0/crates/xlstream-parse/src/ast.rs +138 -0
  76. xlstream-0.1.0/crates/xlstream-parse/src/classify.rs +700 -0
  77. xlstream-0.1.0/crates/xlstream-parse/src/lib.rs +38 -0
  78. xlstream-0.1.0/crates/xlstream-parse/src/parser.rs +176 -0
  79. xlstream-0.1.0/crates/xlstream-parse/src/references.rs +329 -0
  80. xlstream-0.1.0/crates/xlstream-parse/src/rewrite.rs +436 -0
  81. xlstream-0.1.0/crates/xlstream-parse/src/sets.rs +242 -0
  82. xlstream-0.1.0/crates/xlstream-parse/src/view.rs +251 -0
  83. xlstream-0.1.0/crates/xlstream-parse/tests/classify_aggregate.rs +93 -0
  84. xlstream-0.1.0/crates/xlstream-parse/tests/classify_lookup.rs +41 -0
  85. xlstream-0.1.0/crates/xlstream-parse/tests/classify_mixed.rs +31 -0
  86. xlstream-0.1.0/crates/xlstream-parse/tests/classify_row_local.rs +52 -0
  87. xlstream-0.1.0/crates/xlstream-parse/tests/classify_streaming_sheet.rs +37 -0
  88. xlstream-0.1.0/crates/xlstream-parse/tests/classify_unsupported.rs +118 -0
  89. xlstream-0.1.0/crates/xlstream-parse/tests/parse.rs +62 -0
  90. xlstream-0.1.0/crates/xlstream-parse/tests/references.rs +116 -0
  91. xlstream-0.1.0/crates/xlstream-parse/tests/rewrite.rs +203 -0
  92. xlstream-0.1.0/crates/xlstream-parse/tests/view.rs +84 -0
  93. xlstream-0.1.0/py_src/xlstream/__init__.py +23 -0
  94. xlstream-0.1.0/py_src/xlstream/_xlstream.pyi +56 -0
  95. xlstream-0.1.0/py_src/xlstream/py.typed +0 -0
  96. xlstream-0.1.0/pyproject.toml +28 -0
@@ -0,0 +1,2137 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.8"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
16
+ dependencies = [
17
+ "getrandom 0.2.17",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aho-corasick"
24
+ version = "1.1.4"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
27
+ dependencies = [
28
+ "memchr",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "allocator-api2"
33
+ version = "0.2.21"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
36
+
37
+ [[package]]
38
+ name = "android_system_properties"
39
+ version = "0.1.5"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
42
+ dependencies = [
43
+ "libc",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anes"
48
+ version = "0.1.6"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
51
+
52
+ [[package]]
53
+ name = "anstream"
54
+ version = "1.0.0"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
57
+ dependencies = [
58
+ "anstyle",
59
+ "anstyle-parse",
60
+ "anstyle-query",
61
+ "anstyle-wincon",
62
+ "colorchoice",
63
+ "is_terminal_polyfill",
64
+ "utf8parse",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "anstyle"
69
+ version = "1.0.14"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
72
+
73
+ [[package]]
74
+ name = "anstyle-parse"
75
+ version = "1.0.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
78
+ dependencies = [
79
+ "utf8parse",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "anstyle-query"
84
+ version = "1.1.5"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
87
+ dependencies = [
88
+ "windows-sys 0.61.2",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "anstyle-wincon"
93
+ version = "3.0.11"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
96
+ dependencies = [
97
+ "anstyle",
98
+ "once_cell_polyfill",
99
+ "windows-sys 0.61.2",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anyhow"
104
+ version = "1.0.102"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
107
+
108
+ [[package]]
109
+ name = "arrayvec"
110
+ version = "0.7.6"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
113
+
114
+ [[package]]
115
+ name = "atoi_simd"
116
+ version = "0.17.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
119
+ dependencies = [
120
+ "debug_unsafe",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "autocfg"
125
+ version = "1.5.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
128
+
129
+ [[package]]
130
+ name = "bitflags"
131
+ version = "2.11.1"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
134
+
135
+ [[package]]
136
+ name = "bitvec"
137
+ version = "1.0.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
140
+ dependencies = [
141
+ "funty",
142
+ "radium",
143
+ "tap",
144
+ "wyz",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "borsh"
149
+ version = "1.6.1"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "cfd1e3f8955a5d7de9fab72fc8373fade9fb8a703968cb200ae3dc6cf08e185a"
152
+ dependencies = [
153
+ "borsh-derive",
154
+ "bytes",
155
+ "cfg_aliases",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "borsh-derive"
160
+ version = "1.6.1"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "bfcfdc083699101d5a7965e49925975f2f55060f94f9a05e7187be95d530ca59"
163
+ dependencies = [
164
+ "once_cell",
165
+ "proc-macro-crate",
166
+ "proc-macro2",
167
+ "quote",
168
+ "syn 2.0.117",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "bumpalo"
173
+ version = "3.20.2"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
176
+
177
+ [[package]]
178
+ name = "bytecheck"
179
+ version = "0.6.12"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
182
+ dependencies = [
183
+ "bytecheck_derive",
184
+ "ptr_meta",
185
+ "simdutf8",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "bytecheck_derive"
190
+ version = "0.6.12"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
193
+ dependencies = [
194
+ "proc-macro2",
195
+ "quote",
196
+ "syn 1.0.109",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "byteorder"
201
+ version = "1.5.0"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
204
+
205
+ [[package]]
206
+ name = "bytes"
207
+ version = "1.11.1"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
210
+
211
+ [[package]]
212
+ name = "calamine"
213
+ version = "0.34.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "20ae05a4e39297eecf9a994210d27501318c37a9318201f8e11050add82bb6f0"
216
+ dependencies = [
217
+ "atoi_simd",
218
+ "byteorder",
219
+ "codepage",
220
+ "encoding_rs",
221
+ "fast-float2",
222
+ "log",
223
+ "quick-xml",
224
+ "serde",
225
+ "zip",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "cast"
230
+ version = "0.3.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
233
+
234
+ [[package]]
235
+ name = "cc"
236
+ version = "1.2.60"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
239
+ dependencies = [
240
+ "find-msvc-tools",
241
+ "shlex",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "cfg-if"
246
+ version = "1.0.4"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
249
+
250
+ [[package]]
251
+ name = "cfg_aliases"
252
+ version = "0.2.1"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
255
+
256
+ [[package]]
257
+ name = "chrono"
258
+ version = "0.4.44"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
261
+ dependencies = [
262
+ "iana-time-zone",
263
+ "js-sys",
264
+ "num-traits",
265
+ "serde",
266
+ "wasm-bindgen",
267
+ "windows-link",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "ciborium"
272
+ version = "0.2.2"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
275
+ dependencies = [
276
+ "ciborium-io",
277
+ "ciborium-ll",
278
+ "serde",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "ciborium-io"
283
+ version = "0.2.2"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
286
+
287
+ [[package]]
288
+ name = "ciborium-ll"
289
+ version = "0.2.2"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
292
+ dependencies = [
293
+ "ciborium-io",
294
+ "half",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "clap"
299
+ version = "4.6.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
302
+ dependencies = [
303
+ "clap_builder",
304
+ "clap_derive",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "clap_builder"
309
+ version = "4.6.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
312
+ dependencies = [
313
+ "anstream",
314
+ "anstyle",
315
+ "clap_lex",
316
+ "strsim",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "clap_derive"
321
+ version = "4.6.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
324
+ dependencies = [
325
+ "heck",
326
+ "proc-macro2",
327
+ "quote",
328
+ "syn 2.0.117",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "clap_lex"
333
+ version = "1.1.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
336
+
337
+ [[package]]
338
+ name = "codepage"
339
+ version = "0.1.2"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "48f68d061bc2828ae826206326e61251aca94c1e4a5305cf52d9138639c918b4"
342
+ dependencies = [
343
+ "encoding_rs",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "colorchoice"
348
+ version = "1.0.5"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
351
+
352
+ [[package]]
353
+ name = "core-foundation-sys"
354
+ version = "0.8.7"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
357
+
358
+ [[package]]
359
+ name = "crc32fast"
360
+ version = "1.5.0"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
363
+ dependencies = [
364
+ "cfg-if",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "criterion"
369
+ version = "0.5.1"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
372
+ dependencies = [
373
+ "anes",
374
+ "cast",
375
+ "ciborium",
376
+ "clap",
377
+ "criterion-plot",
378
+ "is-terminal",
379
+ "itertools",
380
+ "num-traits",
381
+ "once_cell",
382
+ "oorandom",
383
+ "plotters",
384
+ "rayon",
385
+ "regex",
386
+ "serde",
387
+ "serde_derive",
388
+ "serde_json",
389
+ "tinytemplate",
390
+ "walkdir",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "criterion-plot"
395
+ version = "0.5.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
398
+ dependencies = [
399
+ "cast",
400
+ "itertools",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "crossbeam-channel"
405
+ version = "0.5.15"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
408
+ dependencies = [
409
+ "crossbeam-utils",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "crossbeam-deque"
414
+ version = "0.8.6"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
417
+ dependencies = [
418
+ "crossbeam-epoch",
419
+ "crossbeam-utils",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "crossbeam-epoch"
424
+ version = "0.9.18"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
427
+ dependencies = [
428
+ "crossbeam-utils",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "crossbeam-utils"
433
+ version = "0.8.21"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
436
+
437
+ [[package]]
438
+ name = "crunchy"
439
+ version = "0.2.4"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
442
+
443
+ [[package]]
444
+ name = "debug_unsafe"
445
+ version = "0.1.4"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "7eed2c4702fa172d1ce21078faa7c5203e69f5394d48cc436d25928394a867a2"
448
+
449
+ [[package]]
450
+ name = "either"
451
+ version = "1.15.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
454
+
455
+ [[package]]
456
+ name = "encoding_rs"
457
+ version = "0.8.35"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
460
+ dependencies = [
461
+ "cfg-if",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "equivalent"
466
+ version = "1.0.2"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
469
+
470
+ [[package]]
471
+ name = "errno"
472
+ version = "0.3.14"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
475
+ dependencies = [
476
+ "libc",
477
+ "windows-sys 0.61.2",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "fast-float2"
482
+ version = "0.2.3"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
485
+
486
+ [[package]]
487
+ name = "fastrand"
488
+ version = "2.4.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
491
+
492
+ [[package]]
493
+ name = "find-msvc-tools"
494
+ version = "0.1.9"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
497
+
498
+ [[package]]
499
+ name = "flate2"
500
+ version = "1.1.9"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
503
+ dependencies = [
504
+ "crc32fast",
505
+ "libz-sys",
506
+ "miniz_oxide",
507
+ "zlib-rs",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "foldhash"
512
+ version = "0.1.5"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
515
+
516
+ [[package]]
517
+ name = "foldhash"
518
+ version = "0.2.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
521
+
522
+ [[package]]
523
+ name = "formualizer-common"
524
+ version = "1.1.2"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "2f89ff5c5a3b71cd6c684feac9ded5503d698c1d699d924b5e6c7efeb65147de"
527
+ dependencies = [
528
+ "chrono",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "formualizer-parse"
533
+ version = "1.1.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "263bc7dfe928ddc7fd9f5f590a39822705d7f3f03bdeee42df0947cb9e293e94"
536
+ dependencies = [
537
+ "formualizer-common",
538
+ "once_cell",
539
+ "smallvec",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "funty"
544
+ version = "2.0.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
547
+
548
+ [[package]]
549
+ name = "getrandom"
550
+ version = "0.2.17"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
553
+ dependencies = [
554
+ "cfg-if",
555
+ "libc",
556
+ "wasi",
557
+ ]
558
+
559
+ [[package]]
560
+ name = "getrandom"
561
+ version = "0.4.2"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
564
+ dependencies = [
565
+ "cfg-if",
566
+ "libc",
567
+ "r-efi",
568
+ "wasip2",
569
+ "wasip3",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "half"
574
+ version = "2.7.1"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
577
+ dependencies = [
578
+ "cfg-if",
579
+ "crunchy",
580
+ "zerocopy",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "hashbrown"
585
+ version = "0.12.3"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
588
+ dependencies = [
589
+ "ahash",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "hashbrown"
594
+ version = "0.15.5"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
597
+ dependencies = [
598
+ "foldhash 0.1.5",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "hashbrown"
603
+ version = "0.16.1"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
606
+ dependencies = [
607
+ "allocator-api2",
608
+ "equivalent",
609
+ "foldhash 0.2.0",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "hashbrown"
614
+ version = "0.17.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
617
+
618
+ [[package]]
619
+ name = "heck"
620
+ version = "0.5.0"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
623
+
624
+ [[package]]
625
+ name = "hermit-abi"
626
+ version = "0.5.2"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
629
+
630
+ [[package]]
631
+ name = "iana-time-zone"
632
+ version = "0.1.65"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
635
+ dependencies = [
636
+ "android_system_properties",
637
+ "core-foundation-sys",
638
+ "iana-time-zone-haiku",
639
+ "js-sys",
640
+ "log",
641
+ "wasm-bindgen",
642
+ "windows-core",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "iana-time-zone-haiku"
647
+ version = "0.1.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
650
+ dependencies = [
651
+ "cc",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "id-arena"
656
+ version = "2.3.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
659
+
660
+ [[package]]
661
+ name = "indexmap"
662
+ version = "2.14.0"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
665
+ dependencies = [
666
+ "equivalent",
667
+ "hashbrown 0.17.0",
668
+ "serde",
669
+ "serde_core",
670
+ ]
671
+
672
+ [[package]]
673
+ name = "is-terminal"
674
+ version = "0.4.17"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
677
+ dependencies = [
678
+ "hermit-abi",
679
+ "libc",
680
+ "windows-sys 0.61.2",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "is_terminal_polyfill"
685
+ version = "1.70.2"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
688
+
689
+ [[package]]
690
+ name = "itertools"
691
+ version = "0.10.5"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
694
+ dependencies = [
695
+ "either",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "itoa"
700
+ version = "1.0.18"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
703
+
704
+ [[package]]
705
+ name = "js-sys"
706
+ version = "0.3.95"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
709
+ dependencies = [
710
+ "once_cell",
711
+ "wasm-bindgen",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "lazy_static"
716
+ version = "1.5.0"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
719
+
720
+ [[package]]
721
+ name = "leb128fmt"
722
+ version = "0.1.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
725
+
726
+ [[package]]
727
+ name = "libc"
728
+ version = "0.2.185"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
731
+
732
+ [[package]]
733
+ name = "libz-sys"
734
+ version = "1.1.28"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
737
+ dependencies = [
738
+ "cc",
739
+ "pkg-config",
740
+ "vcpkg",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "linux-raw-sys"
745
+ version = "0.12.1"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
748
+
749
+ [[package]]
750
+ name = "log"
751
+ version = "0.4.29"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
754
+
755
+ [[package]]
756
+ name = "lru"
757
+ version = "0.16.4"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
760
+ dependencies = [
761
+ "hashbrown 0.16.1",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "matchers"
766
+ version = "0.2.0"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
769
+ dependencies = [
770
+ "regex-automata",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "memchr"
775
+ version = "2.8.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
778
+
779
+ [[package]]
780
+ name = "memory-stats"
781
+ version = "1.2.0"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "c73f5c649995a115e1a0220b35e4df0a1294500477f97a91d0660fb5abeb574a"
784
+ dependencies = [
785
+ "libc",
786
+ "windows-sys 0.52.0",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "miniz_oxide"
791
+ version = "0.8.9"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
794
+ dependencies = [
795
+ "adler2",
796
+ "simd-adler32",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "nu-ansi-term"
801
+ version = "0.50.3"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
804
+ dependencies = [
805
+ "windows-sys 0.61.2",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "num-traits"
810
+ version = "0.2.19"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
813
+ dependencies = [
814
+ "autocfg",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "num_cpus"
819
+ version = "1.17.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
822
+ dependencies = [
823
+ "hermit-abi",
824
+ "libc",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "once_cell"
829
+ version = "1.21.4"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
832
+
833
+ [[package]]
834
+ name = "once_cell_polyfill"
835
+ version = "1.70.2"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
838
+
839
+ [[package]]
840
+ name = "oorandom"
841
+ version = "11.1.5"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
844
+
845
+ [[package]]
846
+ name = "phf"
847
+ version = "0.11.3"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
850
+ dependencies = [
851
+ "phf_macros",
852
+ "phf_shared",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "phf_generator"
857
+ version = "0.11.3"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
860
+ dependencies = [
861
+ "phf_shared",
862
+ "rand",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "phf_macros"
867
+ version = "0.11.3"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
870
+ dependencies = [
871
+ "phf_generator",
872
+ "phf_shared",
873
+ "proc-macro2",
874
+ "quote",
875
+ "syn 2.0.117",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "phf_shared"
880
+ version = "0.11.3"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
883
+ dependencies = [
884
+ "siphasher",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "pin-project-lite"
889
+ version = "0.2.17"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
892
+
893
+ [[package]]
894
+ name = "pkg-config"
895
+ version = "0.3.33"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
898
+
899
+ [[package]]
900
+ name = "plotters"
901
+ version = "0.3.7"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
904
+ dependencies = [
905
+ "num-traits",
906
+ "plotters-backend",
907
+ "plotters-svg",
908
+ "wasm-bindgen",
909
+ "web-sys",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "plotters-backend"
914
+ version = "0.3.7"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
917
+
918
+ [[package]]
919
+ name = "plotters-svg"
920
+ version = "0.3.7"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
923
+ dependencies = [
924
+ "plotters-backend",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "portable-atomic"
929
+ version = "1.13.1"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
932
+
933
+ [[package]]
934
+ name = "ppv-lite86"
935
+ version = "0.2.21"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
938
+ dependencies = [
939
+ "zerocopy",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "prettyplease"
944
+ version = "0.2.37"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
947
+ dependencies = [
948
+ "proc-macro2",
949
+ "syn 2.0.117",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "proc-macro-crate"
954
+ version = "3.5.0"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
957
+ dependencies = [
958
+ "toml_edit",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "proc-macro2"
963
+ version = "1.0.106"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
966
+ dependencies = [
967
+ "unicode-ident",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "ptr_meta"
972
+ version = "0.1.4"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
975
+ dependencies = [
976
+ "ptr_meta_derive",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "ptr_meta_derive"
981
+ version = "0.1.4"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
984
+ dependencies = [
985
+ "proc-macro2",
986
+ "quote",
987
+ "syn 1.0.109",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "pyo3"
992
+ version = "0.28.3"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
995
+ dependencies = [
996
+ "libc",
997
+ "once_cell",
998
+ "portable-atomic",
999
+ "pyo3-build-config",
1000
+ "pyo3-ffi",
1001
+ "pyo3-macros",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "pyo3-build-config"
1006
+ version = "0.28.3"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1009
+ dependencies = [
1010
+ "target-lexicon",
1011
+ ]
1012
+
1013
+ [[package]]
1014
+ name = "pyo3-ffi"
1015
+ version = "0.28.3"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1018
+ dependencies = [
1019
+ "libc",
1020
+ "pyo3-build-config",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "pyo3-macros"
1025
+ version = "0.28.3"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1028
+ dependencies = [
1029
+ "proc-macro2",
1030
+ "pyo3-macros-backend",
1031
+ "quote",
1032
+ "syn 2.0.117",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "pyo3-macros-backend"
1037
+ version = "0.28.3"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1040
+ dependencies = [
1041
+ "heck",
1042
+ "proc-macro2",
1043
+ "pyo3-build-config",
1044
+ "quote",
1045
+ "syn 2.0.117",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "quick-xml"
1050
+ version = "0.39.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "958f21e8e7ceb5a1aa7fa87fab28e7c75976e0bfe7e23ff069e0a260f894067d"
1053
+ dependencies = [
1054
+ "encoding_rs",
1055
+ "memchr",
1056
+ ]
1057
+
1058
+ [[package]]
1059
+ name = "quote"
1060
+ version = "1.0.45"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1063
+ dependencies = [
1064
+ "proc-macro2",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "r-efi"
1069
+ version = "6.0.0"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1072
+
1073
+ [[package]]
1074
+ name = "radium"
1075
+ version = "0.7.0"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
1078
+
1079
+ [[package]]
1080
+ name = "rand"
1081
+ version = "0.8.6"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1084
+ dependencies = [
1085
+ "libc",
1086
+ "rand_chacha",
1087
+ "rand_core",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "rand_chacha"
1092
+ version = "0.3.1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1095
+ dependencies = [
1096
+ "ppv-lite86",
1097
+ "rand_core",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "rand_core"
1102
+ version = "0.6.4"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1105
+ dependencies = [
1106
+ "getrandom 0.2.17",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "rayon"
1111
+ version = "1.12.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1114
+ dependencies = [
1115
+ "either",
1116
+ "rayon-core",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "rayon-core"
1121
+ version = "1.13.0"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1124
+ dependencies = [
1125
+ "crossbeam-deque",
1126
+ "crossbeam-utils",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "regex"
1131
+ version = "1.12.3"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1134
+ dependencies = [
1135
+ "aho-corasick",
1136
+ "memchr",
1137
+ "regex-automata",
1138
+ "regex-syntax",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "regex-automata"
1143
+ version = "0.4.14"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1146
+ dependencies = [
1147
+ "aho-corasick",
1148
+ "memchr",
1149
+ "regex-syntax",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "regex-syntax"
1154
+ version = "0.8.10"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1157
+
1158
+ [[package]]
1159
+ name = "rend"
1160
+ version = "0.4.2"
1161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1162
+ checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
1163
+ dependencies = [
1164
+ "bytecheck",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "rkyv"
1169
+ version = "0.7.46"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
1172
+ dependencies = [
1173
+ "bitvec",
1174
+ "bytecheck",
1175
+ "bytes",
1176
+ "hashbrown 0.12.3",
1177
+ "ptr_meta",
1178
+ "rend",
1179
+ "rkyv_derive",
1180
+ "seahash",
1181
+ "tinyvec",
1182
+ "uuid",
1183
+ ]
1184
+
1185
+ [[package]]
1186
+ name = "rkyv_derive"
1187
+ version = "0.7.46"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
1190
+ dependencies = [
1191
+ "proc-macro2",
1192
+ "quote",
1193
+ "syn 1.0.109",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "rust_decimal"
1198
+ version = "1.41.0"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "2ce901f9a19d251159075a4c37af514c3b8ef99c22e02dd8c19161cf397ee94a"
1201
+ dependencies = [
1202
+ "arrayvec",
1203
+ "borsh",
1204
+ "bytes",
1205
+ "num-traits",
1206
+ "rand",
1207
+ "rkyv",
1208
+ "serde",
1209
+ "serde_json",
1210
+ "wasm-bindgen",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "rust_xlsxwriter"
1215
+ version = "0.94.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "efc4a0f1f7b425669996977016152b2939be9be44d40df252a5051c9c6b3b859"
1218
+ dependencies = [
1219
+ "ryu",
1220
+ "tempfile",
1221
+ "zip",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "rustix"
1226
+ version = "1.1.4"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1229
+ dependencies = [
1230
+ "bitflags",
1231
+ "errno",
1232
+ "libc",
1233
+ "linux-raw-sys",
1234
+ "windows-sys 0.61.2",
1235
+ ]
1236
+
1237
+ [[package]]
1238
+ name = "rustversion"
1239
+ version = "1.0.22"
1240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1241
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1242
+
1243
+ [[package]]
1244
+ name = "ryu"
1245
+ version = "1.0.23"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1248
+
1249
+ [[package]]
1250
+ name = "same-file"
1251
+ version = "1.0.6"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1254
+ dependencies = [
1255
+ "winapi-util",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "seahash"
1260
+ version = "4.1.0"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
1263
+
1264
+ [[package]]
1265
+ name = "semver"
1266
+ version = "1.0.28"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1269
+
1270
+ [[package]]
1271
+ name = "serde"
1272
+ version = "1.0.228"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1275
+ dependencies = [
1276
+ "serde_core",
1277
+ "serde_derive",
1278
+ ]
1279
+
1280
+ [[package]]
1281
+ name = "serde_core"
1282
+ version = "1.0.228"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1285
+ dependencies = [
1286
+ "serde_derive",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "serde_derive"
1291
+ version = "1.0.228"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1294
+ dependencies = [
1295
+ "proc-macro2",
1296
+ "quote",
1297
+ "syn 2.0.117",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "serde_json"
1302
+ version = "1.0.149"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1305
+ dependencies = [
1306
+ "itoa",
1307
+ "memchr",
1308
+ "serde",
1309
+ "serde_core",
1310
+ "zmij",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "sharded-slab"
1315
+ version = "0.1.7"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1318
+ dependencies = [
1319
+ "lazy_static",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "shlex"
1324
+ version = "1.3.0"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1327
+
1328
+ [[package]]
1329
+ name = "simd-adler32"
1330
+ version = "0.3.9"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1333
+
1334
+ [[package]]
1335
+ name = "simdutf8"
1336
+ version = "0.1.5"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
1339
+
1340
+ [[package]]
1341
+ name = "siphasher"
1342
+ version = "1.0.2"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
1345
+
1346
+ [[package]]
1347
+ name = "smallvec"
1348
+ version = "1.15.1"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1351
+
1352
+ [[package]]
1353
+ name = "ssfmt"
1354
+ version = "0.1.2"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "8cafd85a137485737308ec6b94c19639833ca96bb83cbad2bc94a0e0eb763410"
1357
+ dependencies = [
1358
+ "chrono",
1359
+ "lru",
1360
+ "thiserror",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "strsim"
1365
+ version = "0.11.1"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1368
+
1369
+ [[package]]
1370
+ name = "syn"
1371
+ version = "1.0.109"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1374
+ dependencies = [
1375
+ "proc-macro2",
1376
+ "quote",
1377
+ "unicode-ident",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "syn"
1382
+ version = "2.0.117"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1385
+ dependencies = [
1386
+ "proc-macro2",
1387
+ "quote",
1388
+ "unicode-ident",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "tap"
1393
+ version = "1.0.1"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1396
+
1397
+ [[package]]
1398
+ name = "target-lexicon"
1399
+ version = "0.13.5"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1402
+
1403
+ [[package]]
1404
+ name = "tempfile"
1405
+ version = "3.27.0"
1406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1407
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1408
+ dependencies = [
1409
+ "fastrand",
1410
+ "getrandom 0.4.2",
1411
+ "once_cell",
1412
+ "rustix",
1413
+ "windows-sys 0.61.2",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "thiserror"
1418
+ version = "2.0.18"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1421
+ dependencies = [
1422
+ "thiserror-impl",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "thiserror-impl"
1427
+ version = "2.0.18"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1430
+ dependencies = [
1431
+ "proc-macro2",
1432
+ "quote",
1433
+ "syn 2.0.117",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "thread_local"
1438
+ version = "1.1.9"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1441
+ dependencies = [
1442
+ "cfg-if",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "tinytemplate"
1447
+ version = "1.2.1"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1450
+ dependencies = [
1451
+ "serde",
1452
+ "serde_json",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "tinyvec"
1457
+ version = "1.11.0"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1460
+ dependencies = [
1461
+ "tinyvec_macros",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "tinyvec_macros"
1466
+ version = "0.1.1"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1469
+
1470
+ [[package]]
1471
+ name = "toml_datetime"
1472
+ version = "1.1.1+spec-1.1.0"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1475
+ dependencies = [
1476
+ "serde_core",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "toml_edit"
1481
+ version = "0.25.11+spec-1.1.0"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b"
1484
+ dependencies = [
1485
+ "indexmap",
1486
+ "toml_datetime",
1487
+ "toml_parser",
1488
+ "winnow",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "toml_parser"
1493
+ version = "1.1.2+spec-1.1.0"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1496
+ dependencies = [
1497
+ "winnow",
1498
+ ]
1499
+
1500
+ [[package]]
1501
+ name = "tracing"
1502
+ version = "0.1.44"
1503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1504
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1505
+ dependencies = [
1506
+ "pin-project-lite",
1507
+ "tracing-attributes",
1508
+ "tracing-core",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "tracing-attributes"
1513
+ version = "0.1.31"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1516
+ dependencies = [
1517
+ "proc-macro2",
1518
+ "quote",
1519
+ "syn 2.0.117",
1520
+ ]
1521
+
1522
+ [[package]]
1523
+ name = "tracing-core"
1524
+ version = "0.1.36"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1527
+ dependencies = [
1528
+ "once_cell",
1529
+ "valuable",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "tracing-log"
1534
+ version = "0.2.0"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1537
+ dependencies = [
1538
+ "log",
1539
+ "once_cell",
1540
+ "tracing-core",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "tracing-subscriber"
1545
+ version = "0.3.23"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1548
+ dependencies = [
1549
+ "matchers",
1550
+ "nu-ansi-term",
1551
+ "once_cell",
1552
+ "regex-automata",
1553
+ "sharded-slab",
1554
+ "smallvec",
1555
+ "thread_local",
1556
+ "tracing",
1557
+ "tracing-core",
1558
+ "tracing-log",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "typed-path"
1563
+ version = "0.12.3"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
1566
+
1567
+ [[package]]
1568
+ name = "unicode-ident"
1569
+ version = "1.0.24"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1572
+
1573
+ [[package]]
1574
+ name = "unicode-xid"
1575
+ version = "0.2.6"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1578
+
1579
+ [[package]]
1580
+ name = "utf8parse"
1581
+ version = "0.2.2"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1584
+
1585
+ [[package]]
1586
+ name = "uuid"
1587
+ version = "1.23.1"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
1590
+ dependencies = [
1591
+ "js-sys",
1592
+ "wasm-bindgen",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "valuable"
1597
+ version = "0.1.1"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1600
+
1601
+ [[package]]
1602
+ name = "vcpkg"
1603
+ version = "0.2.15"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1606
+
1607
+ [[package]]
1608
+ name = "version_check"
1609
+ version = "0.9.5"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1612
+
1613
+ [[package]]
1614
+ name = "walkdir"
1615
+ version = "2.5.0"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1618
+ dependencies = [
1619
+ "same-file",
1620
+ "winapi-util",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "wasi"
1625
+ version = "0.11.1+wasi-snapshot-preview1"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1628
+
1629
+ [[package]]
1630
+ name = "wasip2"
1631
+ version = "1.0.3+wasi-0.2.9"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1634
+ dependencies = [
1635
+ "wit-bindgen 0.57.1",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "wasip3"
1640
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1643
+ dependencies = [
1644
+ "wit-bindgen 0.51.0",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "wasm-bindgen"
1649
+ version = "0.2.118"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
1652
+ dependencies = [
1653
+ "cfg-if",
1654
+ "once_cell",
1655
+ "rustversion",
1656
+ "serde",
1657
+ "wasm-bindgen-macro",
1658
+ "wasm-bindgen-shared",
1659
+ ]
1660
+
1661
+ [[package]]
1662
+ name = "wasm-bindgen-macro"
1663
+ version = "0.2.118"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
1666
+ dependencies = [
1667
+ "quote",
1668
+ "wasm-bindgen-macro-support",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "wasm-bindgen-macro-support"
1673
+ version = "0.2.118"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
1676
+ dependencies = [
1677
+ "bumpalo",
1678
+ "proc-macro2",
1679
+ "quote",
1680
+ "syn 2.0.117",
1681
+ "wasm-bindgen-shared",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "wasm-bindgen-shared"
1686
+ version = "0.2.118"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
1689
+ dependencies = [
1690
+ "unicode-ident",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "wasm-encoder"
1695
+ version = "0.244.0"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1698
+ dependencies = [
1699
+ "leb128fmt",
1700
+ "wasmparser",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "wasm-metadata"
1705
+ version = "0.244.0"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1708
+ dependencies = [
1709
+ "anyhow",
1710
+ "indexmap",
1711
+ "wasm-encoder",
1712
+ "wasmparser",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "wasmparser"
1717
+ version = "0.244.0"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1720
+ dependencies = [
1721
+ "bitflags",
1722
+ "hashbrown 0.15.5",
1723
+ "indexmap",
1724
+ "semver",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "web-sys"
1729
+ version = "0.3.95"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
1732
+ dependencies = [
1733
+ "js-sys",
1734
+ "wasm-bindgen",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "winapi-util"
1739
+ version = "0.1.11"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1742
+ dependencies = [
1743
+ "windows-sys 0.61.2",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "windows-core"
1748
+ version = "0.62.2"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1751
+ dependencies = [
1752
+ "windows-implement",
1753
+ "windows-interface",
1754
+ "windows-link",
1755
+ "windows-result",
1756
+ "windows-strings",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "windows-implement"
1761
+ version = "0.60.2"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1764
+ dependencies = [
1765
+ "proc-macro2",
1766
+ "quote",
1767
+ "syn 2.0.117",
1768
+ ]
1769
+
1770
+ [[package]]
1771
+ name = "windows-interface"
1772
+ version = "0.59.3"
1773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1774
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1775
+ dependencies = [
1776
+ "proc-macro2",
1777
+ "quote",
1778
+ "syn 2.0.117",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "windows-link"
1783
+ version = "0.2.1"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1786
+
1787
+ [[package]]
1788
+ name = "windows-result"
1789
+ version = "0.4.1"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1792
+ dependencies = [
1793
+ "windows-link",
1794
+ ]
1795
+
1796
+ [[package]]
1797
+ name = "windows-strings"
1798
+ version = "0.5.1"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1801
+ dependencies = [
1802
+ "windows-link",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "windows-sys"
1807
+ version = "0.52.0"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1810
+ dependencies = [
1811
+ "windows-targets",
1812
+ ]
1813
+
1814
+ [[package]]
1815
+ name = "windows-sys"
1816
+ version = "0.61.2"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1819
+ dependencies = [
1820
+ "windows-link",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "windows-targets"
1825
+ version = "0.52.6"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1828
+ dependencies = [
1829
+ "windows_aarch64_gnullvm",
1830
+ "windows_aarch64_msvc",
1831
+ "windows_i686_gnu",
1832
+ "windows_i686_gnullvm",
1833
+ "windows_i686_msvc",
1834
+ "windows_x86_64_gnu",
1835
+ "windows_x86_64_gnullvm",
1836
+ "windows_x86_64_msvc",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "windows_aarch64_gnullvm"
1841
+ version = "0.52.6"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1844
+
1845
+ [[package]]
1846
+ name = "windows_aarch64_msvc"
1847
+ version = "0.52.6"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1850
+
1851
+ [[package]]
1852
+ name = "windows_i686_gnu"
1853
+ version = "0.52.6"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1856
+
1857
+ [[package]]
1858
+ name = "windows_i686_gnullvm"
1859
+ version = "0.52.6"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1862
+
1863
+ [[package]]
1864
+ name = "windows_i686_msvc"
1865
+ version = "0.52.6"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1868
+
1869
+ [[package]]
1870
+ name = "windows_x86_64_gnu"
1871
+ version = "0.52.6"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1874
+
1875
+ [[package]]
1876
+ name = "windows_x86_64_gnullvm"
1877
+ version = "0.52.6"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1880
+
1881
+ [[package]]
1882
+ name = "windows_x86_64_msvc"
1883
+ version = "0.52.6"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1886
+
1887
+ [[package]]
1888
+ name = "winnow"
1889
+ version = "1.0.1"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "09dac053f1cd375980747450bfc7250c264eaae0583872e845c0c7cd578872b5"
1892
+ dependencies = [
1893
+ "memchr",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "wit-bindgen"
1898
+ version = "0.51.0"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1901
+ dependencies = [
1902
+ "wit-bindgen-rust-macro",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "wit-bindgen"
1907
+ version = "0.57.1"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1910
+
1911
+ [[package]]
1912
+ name = "wit-bindgen-core"
1913
+ version = "0.51.0"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1916
+ dependencies = [
1917
+ "anyhow",
1918
+ "heck",
1919
+ "wit-parser",
1920
+ ]
1921
+
1922
+ [[package]]
1923
+ name = "wit-bindgen-rust"
1924
+ version = "0.51.0"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1927
+ dependencies = [
1928
+ "anyhow",
1929
+ "heck",
1930
+ "indexmap",
1931
+ "prettyplease",
1932
+ "syn 2.0.117",
1933
+ "wasm-metadata",
1934
+ "wit-bindgen-core",
1935
+ "wit-component",
1936
+ ]
1937
+
1938
+ [[package]]
1939
+ name = "wit-bindgen-rust-macro"
1940
+ version = "0.51.0"
1941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1942
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1943
+ dependencies = [
1944
+ "anyhow",
1945
+ "prettyplease",
1946
+ "proc-macro2",
1947
+ "quote",
1948
+ "syn 2.0.117",
1949
+ "wit-bindgen-core",
1950
+ "wit-bindgen-rust",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "wit-component"
1955
+ version = "0.244.0"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1958
+ dependencies = [
1959
+ "anyhow",
1960
+ "bitflags",
1961
+ "indexmap",
1962
+ "log",
1963
+ "serde",
1964
+ "serde_derive",
1965
+ "serde_json",
1966
+ "wasm-encoder",
1967
+ "wasm-metadata",
1968
+ "wasmparser",
1969
+ "wit-parser",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "wit-parser"
1974
+ version = "0.244.0"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1977
+ dependencies = [
1978
+ "anyhow",
1979
+ "id-arena",
1980
+ "indexmap",
1981
+ "log",
1982
+ "semver",
1983
+ "serde",
1984
+ "serde_derive",
1985
+ "serde_json",
1986
+ "unicode-xid",
1987
+ "wasmparser",
1988
+ ]
1989
+
1990
+ [[package]]
1991
+ name = "wyz"
1992
+ version = "0.5.1"
1993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1994
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1995
+ dependencies = [
1996
+ "tap",
1997
+ ]
1998
+
1999
+ [[package]]
2000
+ name = "xlstream-benchmarks"
2001
+ version = "0.1.0"
2002
+ dependencies = [
2003
+ "criterion",
2004
+ "memory-stats",
2005
+ "rust_xlsxwriter",
2006
+ "tempfile",
2007
+ "xlstream-core",
2008
+ "xlstream-eval",
2009
+ "xlstream-io",
2010
+ "xlstream-parse",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "xlstream-cli"
2015
+ version = "0.1.0"
2016
+ dependencies = [
2017
+ "clap",
2018
+ "tracing",
2019
+ "tracing-subscriber",
2020
+ "xlstream-core",
2021
+ "xlstream-eval",
2022
+ "xlstream-io",
2023
+ "xlstream-parse",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "xlstream-core"
2028
+ version = "0.1.0"
2029
+ dependencies = [
2030
+ "thiserror",
2031
+ ]
2032
+
2033
+ [[package]]
2034
+ name = "xlstream-eval"
2035
+ version = "0.1.0"
2036
+ dependencies = [
2037
+ "crossbeam-channel",
2038
+ "num_cpus",
2039
+ "rayon",
2040
+ "rust_decimal",
2041
+ "rust_xlsxwriter",
2042
+ "ssfmt",
2043
+ "tempfile",
2044
+ "tracing",
2045
+ "xlstream-core",
2046
+ "xlstream-io",
2047
+ "xlstream-parse",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "xlstream-io"
2052
+ version = "0.1.0"
2053
+ dependencies = [
2054
+ "calamine",
2055
+ "rust_xlsxwriter",
2056
+ "tempfile",
2057
+ "xlstream-core",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "xlstream-parse"
2062
+ version = "0.1.0"
2063
+ dependencies = [
2064
+ "formualizer-common",
2065
+ "formualizer-parse",
2066
+ "phf",
2067
+ "smallvec",
2068
+ "xlstream-core",
2069
+ ]
2070
+
2071
+ [[package]]
2072
+ name = "xlstream-python"
2073
+ version = "0.1.0"
2074
+ dependencies = [
2075
+ "pyo3",
2076
+ "xlstream-core",
2077
+ "xlstream-eval",
2078
+ "xlstream-io",
2079
+ ]
2080
+
2081
+ [[package]]
2082
+ name = "zerocopy"
2083
+ version = "0.8.48"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2086
+ dependencies = [
2087
+ "zerocopy-derive",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "zerocopy-derive"
2092
+ version = "0.8.48"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2095
+ dependencies = [
2096
+ "proc-macro2",
2097
+ "quote",
2098
+ "syn 2.0.117",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "zip"
2103
+ version = "7.2.0"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
2106
+ dependencies = [
2107
+ "crc32fast",
2108
+ "flate2",
2109
+ "indexmap",
2110
+ "memchr",
2111
+ "typed-path",
2112
+ "zopfli",
2113
+ ]
2114
+
2115
+ [[package]]
2116
+ name = "zlib-rs"
2117
+ version = "0.6.3"
2118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2119
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
2120
+
2121
+ [[package]]
2122
+ name = "zmij"
2123
+ version = "1.0.21"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2126
+
2127
+ [[package]]
2128
+ name = "zopfli"
2129
+ version = "0.8.3"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
2132
+ dependencies = [
2133
+ "bumpalo",
2134
+ "crc32fast",
2135
+ "log",
2136
+ "simd-adler32",
2137
+ ]