surp 1.0.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 (42) hide show
  1. surp-1.0.0/Cargo.lock +1913 -0
  2. surp-1.0.0/Cargo.toml +44 -0
  3. surp-1.0.0/PKG-INFO +27 -0
  4. surp-1.0.0/pyproject.toml +50 -0
  5. surp-1.0.0/python/surp/__init__.py +59 -0
  6. surp-1.0.0/python/surp/__init__.pyi +56 -0
  7. surp-1.0.0/python/surp/_types.pyi +39 -0
  8. surp-1.0.0/python/surp/exceptions.py +27 -0
  9. surp-1.0.0/python/surp/exceptions.pyi +8 -0
  10. surp-1.0.0/python/surp/py.typed +1 -0
  11. surp-1.0.0/python/surp/rfc001.py +64 -0
  12. surp-1.0.0/python/surp/rfc001.pyi +24 -0
  13. surp-1.0.0/surp-core/Cargo.toml +56 -0
  14. surp-1.0.0/surp-core/README.md +227 -0
  15. surp-1.0.0/surp-core/benches/codec_bench.rs +450 -0
  16. surp-1.0.0/surp-core/src/block.rs +191 -0
  17. surp-1.0.0/surp-core/src/checksum.rs +167 -0
  18. surp-1.0.0/surp-core/src/decoder.rs +1631 -0
  19. surp-1.0.0/surp-core/src/encoder.rs +537 -0
  20. surp-1.0.0/surp-core/src/error.rs +90 -0
  21. surp-1.0.0/surp-core/src/lib.rs +48 -0
  22. surp-1.0.0/surp-core/src/limits.rs +60 -0
  23. surp-1.0.0/surp-core/src/rfc001/ast.rs +279 -0
  24. surp-1.0.0/surp-core/src/rfc001/cbf.rs +1800 -0
  25. surp-1.0.0/surp-core/src/rfc001/cql.rs +301 -0
  26. surp-1.0.0/surp-core/src/rfc001/ctn.rs +1762 -0
  27. surp-1.0.0/surp-core/src/rfc001/mod.rs +20 -0
  28. surp-1.0.0/surp-core/src/text.rs +795 -0
  29. surp-1.0.0/surp-core/src/traits.rs +975 -0
  30. surp-1.0.0/surp-core/src/value.rs +298 -0
  31. surp-1.0.0/surp-core/src/varint.rs +233 -0
  32. surp-1.0.0/surp-core/src/wire.rs +161 -0
  33. surp-1.0.0/surp-core/tests/adversarial.rs +1110 -0
  34. surp-1.0.0/surp-core/tests/proptest.rs +113 -0
  35. surp-1.0.0/surp-core/tests/proptest_extended.rs +437 -0
  36. surp-1.0.0/surp-core/tests/roundtrip.rs +193 -0
  37. surp-1.0.0/surp-core/tests/stress.rs +393 -0
  38. surp-1.0.0/surp-python/Cargo.toml +20 -0
  39. surp-1.0.0/surp-python/README.md +227 -0
  40. surp-1.0.0/surp-python/build.rs +116 -0
  41. surp-1.0.0/surp-python/src/lib.rs +1123 -0
  42. surp-1.0.0/surp-python/tests/test_native.py +214 -0
surp-1.0.0/Cargo.lock ADDED
@@ -0,0 +1,1913 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "0.6.21"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.13"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "0.2.7"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys 0.61.2",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys 0.61.2",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anyhow"
81
+ version = "1.0.102"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
84
+
85
+ [[package]]
86
+ name = "autocfg"
87
+ version = "1.5.0"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
90
+
91
+ [[package]]
92
+ name = "base64"
93
+ version = "0.22.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
96
+
97
+ [[package]]
98
+ name = "bit-set"
99
+ version = "0.8.0"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
102
+ dependencies = [
103
+ "bit-vec",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "bit-vec"
108
+ version = "0.8.0"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
111
+
112
+ [[package]]
113
+ name = "bitflags"
114
+ version = "2.11.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
117
+
118
+ [[package]]
119
+ name = "block-buffer"
120
+ version = "0.10.4"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
123
+ dependencies = [
124
+ "generic-array",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "bumpalo"
129
+ version = "3.20.2"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
132
+
133
+ [[package]]
134
+ name = "bytecount"
135
+ version = "0.6.9"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
138
+
139
+ [[package]]
140
+ name = "bytes"
141
+ version = "1.11.1"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
144
+
145
+ [[package]]
146
+ name = "cast"
147
+ version = "0.3.0"
148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
149
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
150
+
151
+ [[package]]
152
+ name = "cc"
153
+ version = "1.2.56"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
156
+ dependencies = [
157
+ "find-msvc-tools",
158
+ "jobserver",
159
+ "libc",
160
+ "shlex",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "cfg-if"
165
+ version = "1.0.4"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
168
+
169
+ [[package]]
170
+ name = "chrono"
171
+ version = "0.4.44"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
174
+ dependencies = [
175
+ "iana-time-zone",
176
+ "js-sys",
177
+ "num-traits",
178
+ "serde",
179
+ "wasm-bindgen",
180
+ "windows-link",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "ciborium"
185
+ version = "0.2.2"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
188
+ dependencies = [
189
+ "ciborium-io",
190
+ "ciborium-ll",
191
+ "serde",
192
+ ]
193
+
194
+ [[package]]
195
+ name = "ciborium-io"
196
+ version = "0.2.2"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
199
+
200
+ [[package]]
201
+ name = "ciborium-ll"
202
+ version = "0.2.2"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
205
+ dependencies = [
206
+ "ciborium-io",
207
+ "half",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "clap"
212
+ version = "4.5.60"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
215
+ dependencies = [
216
+ "clap_builder",
217
+ "clap_derive",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "clap_builder"
222
+ version = "4.5.60"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
225
+ dependencies = [
226
+ "anstream",
227
+ "anstyle",
228
+ "clap_lex",
229
+ "strsim",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "clap_derive"
234
+ version = "4.5.55"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
237
+ dependencies = [
238
+ "heck",
239
+ "proc-macro2",
240
+ "quote",
241
+ "syn",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "clap_lex"
246
+ version = "1.0.0"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
249
+
250
+ [[package]]
251
+ name = "colorchoice"
252
+ version = "1.0.4"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
255
+
256
+ [[package]]
257
+ name = "core-foundation-sys"
258
+ version = "0.8.7"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
261
+
262
+ [[package]]
263
+ name = "cpufeatures"
264
+ version = "0.2.17"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
267
+ dependencies = [
268
+ "libc",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "crc32fast"
273
+ version = "1.5.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
276
+ dependencies = [
277
+ "cfg-if",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "criterion"
282
+ version = "0.5.1"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
285
+ dependencies = [
286
+ "anes",
287
+ "cast",
288
+ "ciborium",
289
+ "clap",
290
+ "criterion-plot",
291
+ "is-terminal",
292
+ "itertools",
293
+ "num-traits",
294
+ "once_cell",
295
+ "oorandom",
296
+ "plotters",
297
+ "rayon",
298
+ "regex",
299
+ "serde",
300
+ "serde_derive",
301
+ "serde_json",
302
+ "tinytemplate",
303
+ "walkdir",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "criterion-plot"
308
+ version = "0.5.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
311
+ dependencies = [
312
+ "cast",
313
+ "itertools",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "crossbeam-deque"
318
+ version = "0.8.6"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
321
+ dependencies = [
322
+ "crossbeam-epoch",
323
+ "crossbeam-utils",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "crossbeam-epoch"
328
+ version = "0.9.18"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
331
+ dependencies = [
332
+ "crossbeam-utils",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "crossbeam-utils"
337
+ version = "0.8.21"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
340
+
341
+ [[package]]
342
+ name = "crunchy"
343
+ version = "0.2.4"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
346
+
347
+ [[package]]
348
+ name = "crypto-common"
349
+ version = "0.1.7"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
352
+ dependencies = [
353
+ "generic-array",
354
+ "typenum",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "csv"
359
+ version = "1.4.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
362
+ dependencies = [
363
+ "csv-core",
364
+ "itoa",
365
+ "ryu",
366
+ "serde_core",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "csv-core"
371
+ version = "0.1.13"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
374
+ dependencies = [
375
+ "memchr",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "digest"
380
+ version = "0.10.7"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
383
+ dependencies = [
384
+ "block-buffer",
385
+ "crypto-common",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "either"
390
+ version = "1.15.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
393
+
394
+ [[package]]
395
+ name = "equivalent"
396
+ version = "1.0.2"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
399
+
400
+ [[package]]
401
+ name = "errno"
402
+ version = "0.3.14"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
405
+ dependencies = [
406
+ "libc",
407
+ "windows-sys 0.61.2",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "fastrand"
412
+ version = "2.3.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
415
+
416
+ [[package]]
417
+ name = "find-msvc-tools"
418
+ version = "0.1.9"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
421
+
422
+ [[package]]
423
+ name = "fnv"
424
+ version = "1.0.7"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
427
+
428
+ [[package]]
429
+ name = "foldhash"
430
+ version = "0.1.5"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
433
+
434
+ [[package]]
435
+ name = "generic-array"
436
+ version = "0.14.7"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
439
+ dependencies = [
440
+ "typenum",
441
+ "version_check",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "getrandom"
446
+ version = "0.3.4"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
449
+ dependencies = [
450
+ "cfg-if",
451
+ "libc",
452
+ "r-efi",
453
+ "wasip2",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "getrandom"
458
+ version = "0.4.1"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
461
+ dependencies = [
462
+ "cfg-if",
463
+ "libc",
464
+ "r-efi",
465
+ "wasip2",
466
+ "wasip3",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "half"
471
+ version = "2.7.1"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
474
+ dependencies = [
475
+ "cfg-if",
476
+ "crunchy",
477
+ "zerocopy",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "hashbrown"
482
+ version = "0.15.5"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
485
+ dependencies = [
486
+ "foldhash",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "hashbrown"
491
+ version = "0.16.1"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
494
+
495
+ [[package]]
496
+ name = "heck"
497
+ version = "0.5.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
500
+
501
+ [[package]]
502
+ name = "hermit-abi"
503
+ version = "0.5.2"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
506
+
507
+ [[package]]
508
+ name = "iana-time-zone"
509
+ version = "0.1.65"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
512
+ dependencies = [
513
+ "android_system_properties",
514
+ "core-foundation-sys",
515
+ "iana-time-zone-haiku",
516
+ "js-sys",
517
+ "log",
518
+ "wasm-bindgen",
519
+ "windows-core",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "iana-time-zone-haiku"
524
+ version = "0.1.2"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
527
+ dependencies = [
528
+ "cc",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "id-arena"
533
+ version = "2.3.0"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
536
+
537
+ [[package]]
538
+ name = "indexmap"
539
+ version = "2.13.0"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
542
+ dependencies = [
543
+ "equivalent",
544
+ "hashbrown 0.16.1",
545
+ "serde",
546
+ "serde_core",
547
+ ]
548
+
549
+ [[package]]
550
+ name = "is-terminal"
551
+ version = "0.4.17"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
554
+ dependencies = [
555
+ "hermit-abi",
556
+ "libc",
557
+ "windows-sys 0.61.2",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "is_terminal_polyfill"
562
+ version = "1.70.2"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
565
+
566
+ [[package]]
567
+ name = "itertools"
568
+ version = "0.10.5"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
571
+ dependencies = [
572
+ "either",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "itoa"
577
+ version = "1.0.17"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
580
+
581
+ [[package]]
582
+ name = "jobserver"
583
+ version = "0.1.34"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
586
+ dependencies = [
587
+ "getrandom 0.3.4",
588
+ "libc",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "js-sys"
593
+ version = "0.3.90"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "14dc6f6450b3f6d4ed5b16327f38fed626d375a886159ca555bd7822c0c3a5a6"
596
+ dependencies = [
597
+ "once_cell",
598
+ "wasm-bindgen",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "leb128fmt"
603
+ version = "0.1.0"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
606
+
607
+ [[package]]
608
+ name = "libc"
609
+ version = "0.2.182"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
612
+
613
+ [[package]]
614
+ name = "linux-raw-sys"
615
+ version = "0.12.1"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
618
+
619
+ [[package]]
620
+ name = "lock_api"
621
+ version = "0.4.14"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
624
+ dependencies = [
625
+ "scopeguard",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "log"
630
+ version = "0.4.29"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
633
+
634
+ [[package]]
635
+ name = "lz4_flex"
636
+ version = "0.11.5"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
639
+ dependencies = [
640
+ "twox-hash",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "memchr"
645
+ version = "2.8.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
648
+
649
+ [[package]]
650
+ name = "memmap2"
651
+ version = "0.9.10"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
654
+ dependencies = [
655
+ "libc",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "mio"
660
+ version = "1.1.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
663
+ dependencies = [
664
+ "libc",
665
+ "wasi",
666
+ "windows-sys 0.61.2",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "num-traits"
671
+ version = "0.2.19"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
674
+ dependencies = [
675
+ "autocfg",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "once_cell"
680
+ version = "1.21.3"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
683
+
684
+ [[package]]
685
+ name = "once_cell_polyfill"
686
+ version = "1.70.2"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
689
+
690
+ [[package]]
691
+ name = "oorandom"
692
+ version = "11.1.5"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
695
+
696
+ [[package]]
697
+ name = "papergrid"
698
+ version = "0.14.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "b915f831b85d984193fdc3d3611505871dc139b2534530fa01c1a6a6707b6723"
701
+ dependencies = [
702
+ "bytecount",
703
+ "fnv",
704
+ "unicode-width",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "parking_lot"
709
+ version = "0.12.5"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
712
+ dependencies = [
713
+ "lock_api",
714
+ "parking_lot_core",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "parking_lot_core"
719
+ version = "0.9.12"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
722
+ dependencies = [
723
+ "cfg-if",
724
+ "libc",
725
+ "redox_syscall",
726
+ "smallvec",
727
+ "windows-link",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "pin-project-lite"
732
+ version = "0.2.16"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
735
+
736
+ [[package]]
737
+ name = "pkg-config"
738
+ version = "0.3.32"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
741
+
742
+ [[package]]
743
+ name = "plotters"
744
+ version = "0.3.7"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
747
+ dependencies = [
748
+ "num-traits",
749
+ "plotters-backend",
750
+ "plotters-svg",
751
+ "wasm-bindgen",
752
+ "web-sys",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "plotters-backend"
757
+ version = "0.3.7"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
760
+
761
+ [[package]]
762
+ name = "plotters-svg"
763
+ version = "0.3.7"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
766
+ dependencies = [
767
+ "plotters-backend",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "portable-atomic"
772
+ version = "1.13.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
775
+
776
+ [[package]]
777
+ name = "ppv-lite86"
778
+ version = "0.2.21"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
781
+ dependencies = [
782
+ "zerocopy",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "prettyplease"
787
+ version = "0.2.37"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
790
+ dependencies = [
791
+ "proc-macro2",
792
+ "syn",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "proc-macro-error-attr2"
797
+ version = "2.0.0"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
800
+ dependencies = [
801
+ "proc-macro2",
802
+ "quote",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "proc-macro-error2"
807
+ version = "2.0.1"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
810
+ dependencies = [
811
+ "proc-macro-error-attr2",
812
+ "proc-macro2",
813
+ "quote",
814
+ "syn",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "proc-macro2"
819
+ version = "1.0.106"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
822
+ dependencies = [
823
+ "unicode-ident",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "proptest"
828
+ version = "1.10.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
831
+ dependencies = [
832
+ "bit-set",
833
+ "bit-vec",
834
+ "bitflags",
835
+ "num-traits",
836
+ "rand",
837
+ "rand_chacha",
838
+ "rand_xorshift",
839
+ "regex-syntax",
840
+ "rusty-fork",
841
+ "tempfile",
842
+ "unarray",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "pyo3"
847
+ version = "0.28.2"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
850
+ dependencies = [
851
+ "libc",
852
+ "once_cell",
853
+ "portable-atomic",
854
+ "pyo3-build-config",
855
+ "pyo3-ffi",
856
+ "pyo3-macros",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "pyo3-build-config"
861
+ version = "0.28.2"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
864
+ dependencies = [
865
+ "target-lexicon",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "pyo3-ffi"
870
+ version = "0.28.2"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
873
+ dependencies = [
874
+ "libc",
875
+ "pyo3-build-config",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "pyo3-macros"
880
+ version = "0.28.2"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
883
+ dependencies = [
884
+ "proc-macro2",
885
+ "pyo3-macros-backend",
886
+ "quote",
887
+ "syn",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "pyo3-macros-backend"
892
+ version = "0.28.2"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
895
+ dependencies = [
896
+ "heck",
897
+ "proc-macro2",
898
+ "pyo3-build-config",
899
+ "quote",
900
+ "syn",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "quick-error"
905
+ version = "1.2.3"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
908
+
909
+ [[package]]
910
+ name = "quote"
911
+ version = "1.0.44"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
914
+ dependencies = [
915
+ "proc-macro2",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "r-efi"
920
+ version = "5.3.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
923
+
924
+ [[package]]
925
+ name = "rand"
926
+ version = "0.9.2"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
929
+ dependencies = [
930
+ "rand_chacha",
931
+ "rand_core",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "rand_chacha"
936
+ version = "0.9.0"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
939
+ dependencies = [
940
+ "ppv-lite86",
941
+ "rand_core",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "rand_core"
946
+ version = "0.9.5"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
949
+ dependencies = [
950
+ "getrandom 0.3.4",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "rand_xorshift"
955
+ version = "0.4.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
958
+ dependencies = [
959
+ "rand_core",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "rayon"
964
+ version = "1.11.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
967
+ dependencies = [
968
+ "either",
969
+ "rayon-core",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "rayon-core"
974
+ version = "1.13.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
977
+ dependencies = [
978
+ "crossbeam-deque",
979
+ "crossbeam-utils",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "redox_syscall"
984
+ version = "0.5.18"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
987
+ dependencies = [
988
+ "bitflags",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "regex"
993
+ version = "1.12.3"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
996
+ dependencies = [
997
+ "aho-corasick",
998
+ "memchr",
999
+ "regex-automata",
1000
+ "regex-syntax",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "regex-automata"
1005
+ version = "0.4.14"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1008
+ dependencies = [
1009
+ "aho-corasick",
1010
+ "memchr",
1011
+ "regex-syntax",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "regex-syntax"
1016
+ version = "0.8.10"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1019
+
1020
+ [[package]]
1021
+ name = "rmp"
1022
+ version = "0.8.15"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
1025
+ dependencies = [
1026
+ "num-traits",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "rmp-serde"
1031
+ version = "1.3.1"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
1034
+ dependencies = [
1035
+ "rmp",
1036
+ "serde",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "rustix"
1041
+ version = "1.1.4"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1044
+ dependencies = [
1045
+ "bitflags",
1046
+ "errno",
1047
+ "libc",
1048
+ "linux-raw-sys",
1049
+ "windows-sys 0.61.2",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "rustversion"
1054
+ version = "1.0.22"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1057
+
1058
+ [[package]]
1059
+ name = "rusty-fork"
1060
+ version = "0.3.1"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1063
+ dependencies = [
1064
+ "fnv",
1065
+ "quick-error",
1066
+ "tempfile",
1067
+ "wait-timeout",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "ryu"
1072
+ version = "1.0.23"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1075
+
1076
+ [[package]]
1077
+ name = "same-file"
1078
+ version = "1.0.6"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1081
+ dependencies = [
1082
+ "winapi-util",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "scopeguard"
1087
+ version = "1.2.0"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1090
+
1091
+ [[package]]
1092
+ name = "semver"
1093
+ version = "1.0.27"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1096
+
1097
+ [[package]]
1098
+ name = "serde"
1099
+ version = "1.0.228"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1102
+ dependencies = [
1103
+ "serde_core",
1104
+ "serde_derive",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "serde_core"
1109
+ version = "1.0.228"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1112
+ dependencies = [
1113
+ "serde_derive",
1114
+ ]
1115
+
1116
+ [[package]]
1117
+ name = "serde_derive"
1118
+ version = "1.0.228"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1121
+ dependencies = [
1122
+ "proc-macro2",
1123
+ "quote",
1124
+ "syn",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "serde_json"
1129
+ version = "1.0.149"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1132
+ dependencies = [
1133
+ "itoa",
1134
+ "memchr",
1135
+ "serde",
1136
+ "serde_core",
1137
+ "zmij",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "sha2"
1142
+ version = "0.10.9"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1145
+ dependencies = [
1146
+ "cfg-if",
1147
+ "cpufeatures",
1148
+ "digest",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "shlex"
1153
+ version = "1.3.0"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1156
+
1157
+ [[package]]
1158
+ name = "signal-hook-registry"
1159
+ version = "1.4.8"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1162
+ dependencies = [
1163
+ "errno",
1164
+ "libc",
1165
+ ]
1166
+
1167
+ [[package]]
1168
+ name = "smallvec"
1169
+ version = "1.15.1"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1172
+
1173
+ [[package]]
1174
+ name = "snap"
1175
+ version = "1.1.1"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
1178
+
1179
+ [[package]]
1180
+ name = "socket2"
1181
+ version = "0.6.2"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1184
+ dependencies = [
1185
+ "libc",
1186
+ "windows-sys 0.60.2",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "strsim"
1191
+ version = "0.11.1"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1194
+
1195
+ [[package]]
1196
+ name = "surp-bench"
1197
+ version = "1.0.0"
1198
+ dependencies = [
1199
+ "chrono",
1200
+ "ciborium",
1201
+ "clap",
1202
+ "csv",
1203
+ "rmp-serde",
1204
+ "serde",
1205
+ "serde_json",
1206
+ "sha2",
1207
+ "surp-core",
1208
+ "tabled",
1209
+ "tikv-jemallocator",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "surp-cli"
1214
+ version = "1.0.0"
1215
+ dependencies = [
1216
+ "clap",
1217
+ "serde",
1218
+ "serde_json",
1219
+ "surp-core",
1220
+ "thiserror",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "surp-compression"
1225
+ version = "1.0.0"
1226
+ dependencies = [
1227
+ "lz4_flex",
1228
+ "snap",
1229
+ "surp-core",
1230
+ "thiserror",
1231
+ "zstd",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "surp-core"
1236
+ version = "1.0.0"
1237
+ dependencies = [
1238
+ "base64",
1239
+ "bumpalo",
1240
+ "bytes",
1241
+ "crc32fast",
1242
+ "criterion",
1243
+ "lz4_flex",
1244
+ "proptest",
1245
+ "serde_json",
1246
+ "snap",
1247
+ "thiserror",
1248
+ "xxhash-rust",
1249
+ "zstd",
1250
+ ]
1251
+
1252
+ [[package]]
1253
+ name = "surp-derive"
1254
+ version = "1.0.0"
1255
+ dependencies = [
1256
+ "proc-macro2",
1257
+ "quote",
1258
+ "surp-core",
1259
+ "syn",
1260
+ "xxhash-rust",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "surp-examples"
1265
+ version = "1.0.0"
1266
+ dependencies = [
1267
+ "surp-core",
1268
+ "surp-derive",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "surp-ffi"
1273
+ version = "1.0.0"
1274
+ dependencies = [
1275
+ "serde_json",
1276
+ "surp-core",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "surp-io"
1281
+ version = "1.0.0"
1282
+ dependencies = [
1283
+ "bytes",
1284
+ "memmap2",
1285
+ "surp-core",
1286
+ "thiserror",
1287
+ "tokio",
1288
+ ]
1289
+
1290
+ [[package]]
1291
+ name = "surp-python"
1292
+ version = "1.0.0"
1293
+ dependencies = [
1294
+ "pyo3",
1295
+ "surp-core",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "surp-simd"
1300
+ version = "1.0.0"
1301
+ dependencies = [
1302
+ "surp-core",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "syn"
1307
+ version = "2.0.117"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1310
+ dependencies = [
1311
+ "proc-macro2",
1312
+ "quote",
1313
+ "unicode-ident",
1314
+ ]
1315
+
1316
+ [[package]]
1317
+ name = "tabled"
1318
+ version = "0.18.0"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "121d8171ee5687a4978d1b244f7d99c43e7385a272185a2f1e1fa4dc0979d444"
1321
+ dependencies = [
1322
+ "papergrid",
1323
+ "tabled_derive",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "tabled_derive"
1328
+ version = "0.10.0"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "52d9946811baad81710ec921809e2af67ad77719418673b2a3794932d57b7538"
1331
+ dependencies = [
1332
+ "heck",
1333
+ "proc-macro-error2",
1334
+ "proc-macro2",
1335
+ "quote",
1336
+ "syn",
1337
+ ]
1338
+
1339
+ [[package]]
1340
+ name = "target-lexicon"
1341
+ version = "0.13.5"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1344
+
1345
+ [[package]]
1346
+ name = "tempfile"
1347
+ version = "3.26.0"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
1350
+ dependencies = [
1351
+ "fastrand",
1352
+ "getrandom 0.4.1",
1353
+ "once_cell",
1354
+ "rustix",
1355
+ "windows-sys 0.61.2",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "thiserror"
1360
+ version = "2.0.18"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1363
+ dependencies = [
1364
+ "thiserror-impl",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "thiserror-impl"
1369
+ version = "2.0.18"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1372
+ dependencies = [
1373
+ "proc-macro2",
1374
+ "quote",
1375
+ "syn",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "tikv-jemalloc-sys"
1380
+ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
1383
+ dependencies = [
1384
+ "cc",
1385
+ "libc",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "tikv-jemallocator"
1390
+ version = "0.6.1"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
1393
+ dependencies = [
1394
+ "libc",
1395
+ "tikv-jemalloc-sys",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "tinytemplate"
1400
+ version = "1.2.1"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1403
+ dependencies = [
1404
+ "serde",
1405
+ "serde_json",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "tokio"
1410
+ version = "1.49.0"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1413
+ dependencies = [
1414
+ "bytes",
1415
+ "libc",
1416
+ "mio",
1417
+ "parking_lot",
1418
+ "pin-project-lite",
1419
+ "signal-hook-registry",
1420
+ "socket2",
1421
+ "tokio-macros",
1422
+ "windows-sys 0.61.2",
1423
+ ]
1424
+
1425
+ [[package]]
1426
+ name = "tokio-macros"
1427
+ version = "2.6.0"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1430
+ dependencies = [
1431
+ "proc-macro2",
1432
+ "quote",
1433
+ "syn",
1434
+ ]
1435
+
1436
+ [[package]]
1437
+ name = "twox-hash"
1438
+ version = "2.1.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1441
+
1442
+ [[package]]
1443
+ name = "typenum"
1444
+ version = "1.19.0"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1447
+
1448
+ [[package]]
1449
+ name = "unarray"
1450
+ version = "0.1.4"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1453
+
1454
+ [[package]]
1455
+ name = "unicode-ident"
1456
+ version = "1.0.24"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1459
+
1460
+ [[package]]
1461
+ name = "unicode-width"
1462
+ version = "0.2.2"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1465
+
1466
+ [[package]]
1467
+ name = "unicode-xid"
1468
+ version = "0.2.6"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1471
+
1472
+ [[package]]
1473
+ name = "utf8parse"
1474
+ version = "0.2.2"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1477
+
1478
+ [[package]]
1479
+ name = "version_check"
1480
+ version = "0.9.5"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1483
+
1484
+ [[package]]
1485
+ name = "wait-timeout"
1486
+ version = "0.2.1"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1489
+ dependencies = [
1490
+ "libc",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "walkdir"
1495
+ version = "2.5.0"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1498
+ dependencies = [
1499
+ "same-file",
1500
+ "winapi-util",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "wasi"
1505
+ version = "0.11.1+wasi-snapshot-preview1"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1508
+
1509
+ [[package]]
1510
+ name = "wasip2"
1511
+ version = "1.0.2+wasi-0.2.9"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1514
+ dependencies = [
1515
+ "wit-bindgen",
1516
+ ]
1517
+
1518
+ [[package]]
1519
+ name = "wasip3"
1520
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1523
+ dependencies = [
1524
+ "wit-bindgen",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "wasm-bindgen"
1529
+ version = "0.2.113"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "60722a937f594b7fde9adb894d7c092fc1bb6612897c46368d18e7a20208eff2"
1532
+ dependencies = [
1533
+ "cfg-if",
1534
+ "once_cell",
1535
+ "rustversion",
1536
+ "wasm-bindgen-macro",
1537
+ "wasm-bindgen-shared",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "wasm-bindgen-macro"
1542
+ version = "0.2.113"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "0fac8c6395094b6b91c4af293f4c79371c163f9a6f56184d2c9a85f5a95f3950"
1545
+ dependencies = [
1546
+ "quote",
1547
+ "wasm-bindgen-macro-support",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "wasm-bindgen-macro-support"
1552
+ version = "0.2.113"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "ab3fabce6159dc20728033842636887e4877688ae94382766e00b180abac9d60"
1555
+ dependencies = [
1556
+ "bumpalo",
1557
+ "proc-macro2",
1558
+ "quote",
1559
+ "syn",
1560
+ "wasm-bindgen-shared",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "wasm-bindgen-shared"
1565
+ version = "0.2.113"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "de0e091bdb824da87dc01d967388880d017a0a9bc4f3bdc0d86ee9f9336e3bb5"
1568
+ dependencies = [
1569
+ "unicode-ident",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "wasm-encoder"
1574
+ version = "0.244.0"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1577
+ dependencies = [
1578
+ "leb128fmt",
1579
+ "wasmparser",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "wasm-metadata"
1584
+ version = "0.244.0"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1587
+ dependencies = [
1588
+ "anyhow",
1589
+ "indexmap",
1590
+ "wasm-encoder",
1591
+ "wasmparser",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "wasmparser"
1596
+ version = "0.244.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1599
+ dependencies = [
1600
+ "bitflags",
1601
+ "hashbrown 0.15.5",
1602
+ "indexmap",
1603
+ "semver",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "web-sys"
1608
+ version = "0.3.90"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "705eceb4ce901230f8625bd1d665128056ccbe4b7408faa625eec1ba80f59a97"
1611
+ dependencies = [
1612
+ "js-sys",
1613
+ "wasm-bindgen",
1614
+ ]
1615
+
1616
+ [[package]]
1617
+ name = "winapi-util"
1618
+ version = "0.1.11"
1619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1620
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1621
+ dependencies = [
1622
+ "windows-sys 0.61.2",
1623
+ ]
1624
+
1625
+ [[package]]
1626
+ name = "windows-core"
1627
+ version = "0.62.2"
1628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1629
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1630
+ dependencies = [
1631
+ "windows-implement",
1632
+ "windows-interface",
1633
+ "windows-link",
1634
+ "windows-result",
1635
+ "windows-strings",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "windows-implement"
1640
+ version = "0.60.2"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1643
+ dependencies = [
1644
+ "proc-macro2",
1645
+ "quote",
1646
+ "syn",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "windows-interface"
1651
+ version = "0.59.3"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1654
+ dependencies = [
1655
+ "proc-macro2",
1656
+ "quote",
1657
+ "syn",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "windows-link"
1662
+ version = "0.2.1"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1665
+
1666
+ [[package]]
1667
+ name = "windows-result"
1668
+ version = "0.4.1"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1671
+ dependencies = [
1672
+ "windows-link",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "windows-strings"
1677
+ version = "0.5.1"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1680
+ dependencies = [
1681
+ "windows-link",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "windows-sys"
1686
+ version = "0.60.2"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1689
+ dependencies = [
1690
+ "windows-targets",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "windows-sys"
1695
+ version = "0.61.2"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1698
+ dependencies = [
1699
+ "windows-link",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "windows-targets"
1704
+ version = "0.53.5"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1707
+ dependencies = [
1708
+ "windows-link",
1709
+ "windows_aarch64_gnullvm",
1710
+ "windows_aarch64_msvc",
1711
+ "windows_i686_gnu",
1712
+ "windows_i686_gnullvm",
1713
+ "windows_i686_msvc",
1714
+ "windows_x86_64_gnu",
1715
+ "windows_x86_64_gnullvm",
1716
+ "windows_x86_64_msvc",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "windows_aarch64_gnullvm"
1721
+ version = "0.53.1"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1724
+
1725
+ [[package]]
1726
+ name = "windows_aarch64_msvc"
1727
+ version = "0.53.1"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1730
+
1731
+ [[package]]
1732
+ name = "windows_i686_gnu"
1733
+ version = "0.53.1"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1736
+
1737
+ [[package]]
1738
+ name = "windows_i686_gnullvm"
1739
+ version = "0.53.1"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1742
+
1743
+ [[package]]
1744
+ name = "windows_i686_msvc"
1745
+ version = "0.53.1"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1748
+
1749
+ [[package]]
1750
+ name = "windows_x86_64_gnu"
1751
+ version = "0.53.1"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1754
+
1755
+ [[package]]
1756
+ name = "windows_x86_64_gnullvm"
1757
+ version = "0.53.1"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1760
+
1761
+ [[package]]
1762
+ name = "windows_x86_64_msvc"
1763
+ version = "0.53.1"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1766
+
1767
+ [[package]]
1768
+ name = "wit-bindgen"
1769
+ version = "0.51.0"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1772
+ dependencies = [
1773
+ "wit-bindgen-rust-macro",
1774
+ ]
1775
+
1776
+ [[package]]
1777
+ name = "wit-bindgen-core"
1778
+ version = "0.51.0"
1779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1780
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1781
+ dependencies = [
1782
+ "anyhow",
1783
+ "heck",
1784
+ "wit-parser",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "wit-bindgen-rust"
1789
+ version = "0.51.0"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1792
+ dependencies = [
1793
+ "anyhow",
1794
+ "heck",
1795
+ "indexmap",
1796
+ "prettyplease",
1797
+ "syn",
1798
+ "wasm-metadata",
1799
+ "wit-bindgen-core",
1800
+ "wit-component",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "wit-bindgen-rust-macro"
1805
+ version = "0.51.0"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1808
+ dependencies = [
1809
+ "anyhow",
1810
+ "prettyplease",
1811
+ "proc-macro2",
1812
+ "quote",
1813
+ "syn",
1814
+ "wit-bindgen-core",
1815
+ "wit-bindgen-rust",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "wit-component"
1820
+ version = "0.244.0"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1823
+ dependencies = [
1824
+ "anyhow",
1825
+ "bitflags",
1826
+ "indexmap",
1827
+ "log",
1828
+ "serde",
1829
+ "serde_derive",
1830
+ "serde_json",
1831
+ "wasm-encoder",
1832
+ "wasm-metadata",
1833
+ "wasmparser",
1834
+ "wit-parser",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "wit-parser"
1839
+ version = "0.244.0"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1842
+ dependencies = [
1843
+ "anyhow",
1844
+ "id-arena",
1845
+ "indexmap",
1846
+ "log",
1847
+ "semver",
1848
+ "serde",
1849
+ "serde_derive",
1850
+ "serde_json",
1851
+ "unicode-xid",
1852
+ "wasmparser",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "xxhash-rust"
1857
+ version = "0.8.15"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
1860
+
1861
+ [[package]]
1862
+ name = "zerocopy"
1863
+ version = "0.8.39"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
1866
+ dependencies = [
1867
+ "zerocopy-derive",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "zerocopy-derive"
1872
+ version = "0.8.39"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
1875
+ dependencies = [
1876
+ "proc-macro2",
1877
+ "quote",
1878
+ "syn",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "zmij"
1883
+ version = "1.0.21"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
1886
+
1887
+ [[package]]
1888
+ name = "zstd"
1889
+ version = "0.13.3"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
1892
+ dependencies = [
1893
+ "zstd-safe",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "zstd-safe"
1898
+ version = "7.2.4"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
1901
+ dependencies = [
1902
+ "zstd-sys",
1903
+ ]
1904
+
1905
+ [[package]]
1906
+ name = "zstd-sys"
1907
+ version = "2.0.16+zstd.1.5.7"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
1910
+ dependencies = [
1911
+ "cc",
1912
+ "pkg-config",
1913
+ ]