expanse-trie 0.3.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 (66) hide show
  1. expanse_trie-0.3.0/Cargo.lock +1469 -0
  2. expanse_trie-0.3.0/Cargo.toml +30 -0
  3. expanse_trie-0.3.0/LICENSE-APACHE +202 -0
  4. expanse_trie-0.3.0/LICENSE-MIT +21 -0
  5. expanse_trie-0.3.0/PKG-INFO +526 -0
  6. expanse_trie-0.3.0/README.md +488 -0
  7. expanse_trie-0.3.0/crates/expanse/Cargo.toml +82 -0
  8. expanse_trie-0.3.0/crates/expanse/README.md +488 -0
  9. expanse_trie-0.3.0/crates/expanse/benches/comparative.rs +196 -0
  10. expanse_trie-0.3.0/crates/expanse/benches/compare.rs +181 -0
  11. expanse_trie-0.3.0/crates/expanse/benches/concurrency.rs +186 -0
  12. expanse_trie-0.3.0/crates/expanse/benches/embedded.rs +135 -0
  13. expanse_trie-0.3.0/crates/expanse/benches/instructions.rs +353 -0
  14. expanse_trie-0.3.0/crates/expanse/benches/large_values.rs +239 -0
  15. expanse_trie-0.3.0/crates/expanse/benches/ycsb.rs +798 -0
  16. expanse_trie-0.3.0/crates/expanse/examples/bytes_per_key.rs +130 -0
  17. expanse_trie-0.3.0/crates/expanse/examples/bytes_per_key_32.rs +84 -0
  18. expanse_trie-0.3.0/crates/expanse/examples/concurrent_scaling.rs +128 -0
  19. expanse_trie-0.3.0/crates/expanse/examples/lookup_profile.rs +102 -0
  20. expanse_trie-0.3.0/crates/expanse/examples/popcnt_probe.rs +19 -0
  21. expanse_trie-0.3.0/crates/expanse/src/alloc.rs +791 -0
  22. expanse_trie-0.3.0/crates/expanse/src/bits.rs +1120 -0
  23. expanse_trie-0.3.0/crates/expanse/src/blobmap.rs +1046 -0
  24. expanse_trie-0.3.0/crates/expanse/src/blobmap32.rs +220 -0
  25. expanse_trie-0.3.0/crates/expanse/src/bytesmap.rs +358 -0
  26. expanse_trie-0.3.0/crates/expanse/src/get.rs +1241 -0
  27. expanse_trie-0.3.0/crates/expanse/src/leaf.rs +845 -0
  28. expanse_trie-0.3.0/crates/expanse/src/lib.rs +100 -0
  29. expanse_trie-0.3.0/crates/expanse/src/map.rs +1799 -0
  30. expanse_trie-0.3.0/crates/expanse/src/map32.rs +209 -0
  31. expanse_trie-0.3.0/crates/expanse/src/mutate.rs +2848 -0
  32. expanse_trie-0.3.0/crates/expanse/src/mutate_map.rs +2449 -0
  33. expanse_trie-0.3.0/crates/expanse/src/nav.rs +949 -0
  34. expanse_trie-0.3.0/crates/expanse/src/node.rs +684 -0
  35. expanse_trie-0.3.0/crates/expanse/src/node32.rs +254 -0
  36. expanse_trie-0.3.0/crates/expanse/src/occ.rs +566 -0
  37. expanse_trie-0.3.0/crates/expanse/src/set.rs +1305 -0
  38. expanse_trie-0.3.0/crates/expanse/src/set32.rs +197 -0
  39. expanse_trie-0.3.0/crates/expanse/src/slot.rs +394 -0
  40. expanse_trie-0.3.0/crates/expanse/src/slot32.rs +220 -0
  41. expanse_trie-0.3.0/crates/expanse/src/strmap.rs +1040 -0
  42. expanse_trie-0.3.0/crates/expanse/src/sync.rs +915 -0
  43. expanse_trie-0.3.0/crates/expanse/src/types.rs +401 -0
  44. expanse_trie-0.3.0/crates/expanse/src/types32.rs +332 -0
  45. expanse_trie-0.3.0/crates/expanse/src/validate.rs +399 -0
  46. expanse_trie-0.3.0/crates/expanse/tests/no_heap_churn.rs +277 -0
  47. expanse_trie-0.3.0/crates/expanse/tests/proptest_model.rs +206 -0
  48. expanse_trie-0.3.0/crates/expanse/tests/test_blobmap.rs +286 -0
  49. expanse_trie-0.3.0/crates/expanse/tests/test_visualizer_sync.rs +448 -0
  50. expanse_trie-0.3.0/crates/expanse/tests/test_ycsb.rs +346 -0
  51. expanse_trie-0.3.0/crates/expanse-py/Cargo.toml +31 -0
  52. expanse_trie-0.3.0/crates/expanse-py/README.md +33 -0
  53. expanse_trie-0.3.0/crates/expanse-py/expanse_trie.pyi +238 -0
  54. expanse_trie-0.3.0/crates/expanse-py/src/blobmap.rs +204 -0
  55. expanse_trie-0.3.0/crates/expanse-py/src/buffer.rs +117 -0
  56. expanse_trie-0.3.0/crates/expanse-py/src/bytesmap.rs +279 -0
  57. expanse_trie-0.3.0/crates/expanse-py/src/lib.rs +79 -0
  58. expanse_trie-0.3.0/crates/expanse-py/src/map.rs +419 -0
  59. expanse_trie-0.3.0/crates/expanse-py/src/set.rs +299 -0
  60. expanse_trie-0.3.0/crates/expanse-py/src/strmap.rs +405 -0
  61. expanse_trie-0.3.0/crates/expanse-py/src/sync.rs +724 -0
  62. expanse_trie-0.3.0/crates/expanse-py/tests/test_bindings.rs +493 -0
  63. expanse_trie-0.3.0/pyproject.toml +48 -0
  64. expanse_trie-0.3.0/python/expanse_trie/__init__.py +32 -0
  65. expanse_trie-0.3.0/python/expanse_trie/__init__.pyi +207 -0
  66. expanse_trie-0.3.0/python/expanse_trie/py.typed +1 -0
@@ -0,0 +1,1469 @@
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.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "allocator-api2"
25
+ version = "0.2.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "autocfg"
43
+ version = "1.5.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
46
+
47
+ [[package]]
48
+ name = "bincode"
49
+ version = "1.3.3"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
52
+ dependencies = [
53
+ "serde",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "bit-set"
58
+ version = "0.8.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
61
+ dependencies = [
62
+ "bit-vec",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "bit-vec"
67
+ version = "0.8.0"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
70
+
71
+ [[package]]
72
+ name = "bitflags"
73
+ version = "2.13.1"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
76
+
77
+ [[package]]
78
+ name = "bumpalo"
79
+ version = "3.20.3"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
82
+
83
+ [[package]]
84
+ name = "bytemuck"
85
+ version = "1.25.2"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
88
+
89
+ [[package]]
90
+ name = "byteorder"
91
+ version = "1.5.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
94
+
95
+ [[package]]
96
+ name = "cast"
97
+ version = "0.3.0"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
100
+
101
+ [[package]]
102
+ name = "cc"
103
+ version = "1.4.3"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
106
+ dependencies = [
107
+ "find-msvc-tools",
108
+ "shlex",
109
+ ]
110
+
111
+ [[package]]
112
+ name = "cfg-if"
113
+ version = "1.0.4"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
116
+
117
+ [[package]]
118
+ name = "ciborium"
119
+ version = "0.2.2"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
122
+ dependencies = [
123
+ "ciborium-io",
124
+ "ciborium-ll",
125
+ "serde",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "ciborium-io"
130
+ version = "0.2.2"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
133
+
134
+ [[package]]
135
+ name = "ciborium-ll"
136
+ version = "0.2.2"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
139
+ dependencies = [
140
+ "ciborium-io",
141
+ "half",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap"
146
+ version = "4.6.6"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
149
+ dependencies = [
150
+ "clap_builder",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "clap_builder"
155
+ version = "4.6.6"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
158
+ dependencies = [
159
+ "anstyle",
160
+ "clap_lex",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "clap_lex"
165
+ version = "1.1.0"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
168
+
169
+ [[package]]
170
+ name = "convert_case"
171
+ version = "0.6.0"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
174
+ dependencies = [
175
+ "unicode-segmentation",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "criterion"
180
+ version = "0.8.2"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
183
+ dependencies = [
184
+ "alloca",
185
+ "anes",
186
+ "cast",
187
+ "ciborium",
188
+ "clap",
189
+ "criterion-plot",
190
+ "itertools",
191
+ "num-traits",
192
+ "oorandom",
193
+ "page_size",
194
+ "plotters",
195
+ "rayon",
196
+ "regex",
197
+ "serde",
198
+ "serde_json",
199
+ "tinytemplate",
200
+ "walkdir",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "criterion-plot"
205
+ version = "0.8.2"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
208
+ dependencies = [
209
+ "cast",
210
+ "itertools",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "crossbeam-deque"
215
+ version = "0.8.7"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
218
+ dependencies = [
219
+ "crossbeam-epoch",
220
+ "crossbeam-utils",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "crossbeam-epoch"
225
+ version = "0.9.20"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
228
+ dependencies = [
229
+ "crossbeam-utils",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "crossbeam-skiplist"
234
+ version = "0.1.3"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
237
+ dependencies = [
238
+ "crossbeam-epoch",
239
+ "crossbeam-utils",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "crossbeam-utils"
244
+ version = "0.8.22"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
247
+
248
+ [[package]]
249
+ name = "crunchy"
250
+ version = "0.2.4"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
253
+
254
+ [[package]]
255
+ name = "ctor"
256
+ version = "0.2.9"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
259
+ dependencies = [
260
+ "quote",
261
+ "syn 2.0.119",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "derive_more"
266
+ version = "2.1.1"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
269
+ dependencies = [
270
+ "derive_more-impl",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "derive_more-impl"
275
+ version = "2.1.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
278
+ dependencies = [
279
+ "proc-macro2",
280
+ "quote",
281
+ "rustc_version",
282
+ "syn 2.0.119",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "either"
287
+ version = "1.17.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
290
+
291
+ [[package]]
292
+ name = "equivalent"
293
+ version = "1.0.2"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
296
+
297
+ [[package]]
298
+ name = "errno"
299
+ version = "0.3.14"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
302
+ dependencies = [
303
+ "libc",
304
+ "windows-sys",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "expanse-capi"
309
+ version = "0.3.0"
310
+ dependencies = [
311
+ "expanse-trie",
312
+ "iai-callgrind",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "expanse-node"
317
+ version = "0.3.0"
318
+ dependencies = [
319
+ "expanse-trie",
320
+ "napi",
321
+ "napi-build",
322
+ "napi-derive",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "expanse-py"
327
+ version = "0.3.0"
328
+ dependencies = [
329
+ "expanse-trie",
330
+ "pyo3",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "expanse-trie"
335
+ version = "0.3.0"
336
+ dependencies = [
337
+ "criterion",
338
+ "crossbeam-skiplist",
339
+ "hashbrown",
340
+ "iai-callgrind",
341
+ "loom",
342
+ "proptest",
343
+ "rand 0.8.7",
344
+ "rand_distr",
345
+ "roaring",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "fastrand"
350
+ version = "2.5.0"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
353
+
354
+ [[package]]
355
+ name = "find-msvc-tools"
356
+ version = "0.1.11"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
359
+
360
+ [[package]]
361
+ name = "fnv"
362
+ version = "1.0.7"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
365
+
366
+ [[package]]
367
+ name = "foldhash"
368
+ version = "0.1.5"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
371
+
372
+ [[package]]
373
+ name = "futures-core"
374
+ version = "0.3.34"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
377
+
378
+ [[package]]
379
+ name = "futures-task"
380
+ version = "0.3.34"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
383
+
384
+ [[package]]
385
+ name = "futures-util"
386
+ version = "0.3.34"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
389
+ dependencies = [
390
+ "futures-core",
391
+ "futures-task",
392
+ "pin-project-lite",
393
+ "slab",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "generator"
398
+ version = "0.8.9"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
401
+ dependencies = [
402
+ "cc",
403
+ "cfg-if",
404
+ "libc",
405
+ "log",
406
+ "rustversion",
407
+ "windows-link",
408
+ "windows-result",
409
+ ]
410
+
411
+ [[package]]
412
+ name = "getrandom"
413
+ version = "0.2.17"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
416
+ dependencies = [
417
+ "cfg-if",
418
+ "libc",
419
+ "wasi",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "getrandom"
424
+ version = "0.3.4"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
427
+ dependencies = [
428
+ "cfg-if",
429
+ "libc",
430
+ "r-efi 5.3.0",
431
+ "wasip2",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "getrandom"
436
+ version = "0.4.3"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
439
+ dependencies = [
440
+ "cfg-if",
441
+ "libc",
442
+ "r-efi 6.0.0",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "half"
447
+ version = "2.7.1"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
450
+ dependencies = [
451
+ "cfg-if",
452
+ "crunchy",
453
+ "zerocopy",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "hashbrown"
458
+ version = "0.15.5"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
461
+ dependencies = [
462
+ "allocator-api2",
463
+ "equivalent",
464
+ "foldhash",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "heck"
469
+ version = "0.5.0"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
472
+
473
+ [[package]]
474
+ name = "iai-callgrind"
475
+ version = "0.16.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "0b1e4910d3a9137442723dfb772c32dc10674c4181ca078d2fd227cd5dce9db0"
478
+ dependencies = [
479
+ "bincode",
480
+ "derive_more",
481
+ "iai-callgrind-macros",
482
+ "iai-callgrind-runner",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "iai-callgrind-macros"
487
+ version = "0.6.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "4d03775318d3f9f01b39ac6612b01464006dc397a654a89dd57df2fd34fb68c3"
490
+ dependencies = [
491
+ "derive_more",
492
+ "proc-macro-error2",
493
+ "proc-macro2",
494
+ "quote",
495
+ "serde",
496
+ "serde_json",
497
+ "syn 2.0.119",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "iai-callgrind-runner"
502
+ version = "0.16.1"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "b74c9743c00c3bca4aaffc69c87cae56837796cd362438daf354a3f785788c68"
505
+ dependencies = [
506
+ "serde",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "itertools"
511
+ version = "0.13.0"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
514
+ dependencies = [
515
+ "either",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "itoa"
520
+ version = "1.0.18"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
523
+
524
+ [[package]]
525
+ name = "js-sys"
526
+ version = "0.3.104"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
529
+ dependencies = [
530
+ "cfg-if",
531
+ "futures-util",
532
+ "wasm-bindgen",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "lazy_static"
537
+ version = "1.5.0"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
540
+
541
+ [[package]]
542
+ name = "libc"
543
+ version = "0.2.189"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
546
+
547
+ [[package]]
548
+ name = "libloading"
549
+ version = "0.8.9"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
552
+ dependencies = [
553
+ "cfg-if",
554
+ "windows-link",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "libm"
559
+ version = "0.2.16"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
562
+
563
+ [[package]]
564
+ name = "linux-raw-sys"
565
+ version = "0.12.1"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
568
+
569
+ [[package]]
570
+ name = "log"
571
+ version = "0.4.33"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
574
+
575
+ [[package]]
576
+ name = "loom"
577
+ version = "0.7.2"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
580
+ dependencies = [
581
+ "cfg-if",
582
+ "generator",
583
+ "scoped-tls",
584
+ "tracing",
585
+ "tracing-subscriber",
586
+ ]
587
+
588
+ [[package]]
589
+ name = "matchers"
590
+ version = "0.2.0"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
593
+ dependencies = [
594
+ "regex-automata",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "memchr"
599
+ version = "2.8.3"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
602
+
603
+ [[package]]
604
+ name = "napi"
605
+ version = "2.16.17"
606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
607
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
608
+ dependencies = [
609
+ "bitflags",
610
+ "ctor",
611
+ "napi-derive",
612
+ "napi-sys",
613
+ "once_cell",
614
+ "tokio",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "napi-build"
619
+ version = "2.4.1"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "60fdf9b392c50e7c4170fa633bd909490ed7835cea4c046776d1a4dd8d2ae0ab"
622
+
623
+ [[package]]
624
+ name = "napi-derive"
625
+ version = "2.16.13"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
628
+ dependencies = [
629
+ "cfg-if",
630
+ "convert_case",
631
+ "napi-derive-backend",
632
+ "proc-macro2",
633
+ "quote",
634
+ "syn 2.0.119",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "napi-derive-backend"
639
+ version = "1.0.75"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
642
+ dependencies = [
643
+ "convert_case",
644
+ "once_cell",
645
+ "proc-macro2",
646
+ "quote",
647
+ "regex",
648
+ "semver",
649
+ "syn 2.0.119",
650
+ ]
651
+
652
+ [[package]]
653
+ name = "napi-sys"
654
+ version = "2.4.0"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
657
+ dependencies = [
658
+ "libloading",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "nu-ansi-term"
663
+ version = "0.50.3"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
666
+ dependencies = [
667
+ "windows-sys",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "num-traits"
672
+ version = "0.2.19"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
675
+ dependencies = [
676
+ "autocfg",
677
+ "libm",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "once_cell"
682
+ version = "1.21.4"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
685
+
686
+ [[package]]
687
+ name = "oorandom"
688
+ version = "11.1.5"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
691
+
692
+ [[package]]
693
+ name = "page_size"
694
+ version = "0.6.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
697
+ dependencies = [
698
+ "libc",
699
+ "winapi",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "pin-project-lite"
704
+ version = "0.2.17"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
707
+
708
+ [[package]]
709
+ name = "plotters"
710
+ version = "0.3.7"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
713
+ dependencies = [
714
+ "num-traits",
715
+ "plotters-backend",
716
+ "plotters-svg",
717
+ "wasm-bindgen",
718
+ "web-sys",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "plotters-backend"
723
+ version = "0.3.7"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
726
+
727
+ [[package]]
728
+ name = "plotters-svg"
729
+ version = "0.3.7"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
732
+ dependencies = [
733
+ "plotters-backend",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "portable-atomic"
738
+ version = "1.15.0"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
741
+
742
+ [[package]]
743
+ name = "ppv-lite86"
744
+ version = "0.2.21"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
747
+ dependencies = [
748
+ "zerocopy",
749
+ ]
750
+
751
+ [[package]]
752
+ name = "proc-macro-error-attr2"
753
+ version = "2.0.0"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
756
+ dependencies = [
757
+ "proc-macro2",
758
+ "quote",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "proc-macro-error2"
763
+ version = "2.0.1"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
766
+ dependencies = [
767
+ "proc-macro-error-attr2",
768
+ "proc-macro2",
769
+ "quote",
770
+ "syn 2.0.119",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "proc-macro2"
775
+ version = "1.0.107"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
778
+ dependencies = [
779
+ "unicode-ident",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "proptest"
784
+ version = "1.11.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
787
+ dependencies = [
788
+ "bit-set",
789
+ "bit-vec",
790
+ "bitflags",
791
+ "num-traits",
792
+ "rand 0.9.5",
793
+ "rand_chacha 0.9.0",
794
+ "rand_xorshift",
795
+ "regex-syntax",
796
+ "rusty-fork",
797
+ "tempfile",
798
+ "unarray",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "pyo3"
803
+ version = "0.29.2"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
806
+ dependencies = [
807
+ "libc",
808
+ "once_cell",
809
+ "portable-atomic",
810
+ "pyo3-build-config",
811
+ "pyo3-ffi",
812
+ "pyo3-macros",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "pyo3-build-config"
817
+ version = "0.29.2"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
820
+ dependencies = [
821
+ "target-lexicon",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "pyo3-ffi"
826
+ version = "0.29.2"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
829
+ dependencies = [
830
+ "libc",
831
+ "pyo3-build-config",
832
+ ]
833
+
834
+ [[package]]
835
+ name = "pyo3-macros"
836
+ version = "0.29.2"
837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
838
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
839
+ dependencies = [
840
+ "proc-macro2",
841
+ "pyo3-macros-backend",
842
+ "quote",
843
+ "syn 2.0.119",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "pyo3-macros-backend"
848
+ version = "0.29.2"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
851
+ dependencies = [
852
+ "heck",
853
+ "proc-macro2",
854
+ "quote",
855
+ "syn 2.0.119",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "quick-error"
860
+ version = "1.2.3"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
863
+
864
+ [[package]]
865
+ name = "quote"
866
+ version = "1.0.47"
867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
868
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
869
+ dependencies = [
870
+ "proc-macro2",
871
+ ]
872
+
873
+ [[package]]
874
+ name = "r-efi"
875
+ version = "5.3.0"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
878
+
879
+ [[package]]
880
+ name = "r-efi"
881
+ version = "6.0.0"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
884
+
885
+ [[package]]
886
+ name = "rand"
887
+ version = "0.8.7"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
890
+ dependencies = [
891
+ "libc",
892
+ "rand_chacha 0.3.1",
893
+ "rand_core 0.6.4",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "rand"
898
+ version = "0.9.5"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
901
+ dependencies = [
902
+ "rand_chacha 0.9.0",
903
+ "rand_core 0.9.5",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "rand_chacha"
908
+ version = "0.3.1"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
911
+ dependencies = [
912
+ "ppv-lite86",
913
+ "rand_core 0.6.4",
914
+ ]
915
+
916
+ [[package]]
917
+ name = "rand_chacha"
918
+ version = "0.9.0"
919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
920
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
921
+ dependencies = [
922
+ "ppv-lite86",
923
+ "rand_core 0.9.5",
924
+ ]
925
+
926
+ [[package]]
927
+ name = "rand_core"
928
+ version = "0.6.4"
929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
930
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
931
+ dependencies = [
932
+ "getrandom 0.2.17",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "rand_core"
937
+ version = "0.9.5"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
940
+ dependencies = [
941
+ "getrandom 0.3.4",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "rand_distr"
946
+ version = "0.4.3"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
949
+ dependencies = [
950
+ "num-traits",
951
+ "rand 0.8.7",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "rand_xorshift"
956
+ version = "0.4.0"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
959
+ dependencies = [
960
+ "rand_core 0.9.5",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "rayon"
965
+ version = "1.12.0"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
968
+ dependencies = [
969
+ "either",
970
+ "rayon-core",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "rayon-core"
975
+ version = "1.13.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
978
+ dependencies = [
979
+ "crossbeam-deque",
980
+ "crossbeam-utils",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "regex"
985
+ version = "1.13.1"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
988
+ dependencies = [
989
+ "aho-corasick",
990
+ "memchr",
991
+ "regex-automata",
992
+ "regex-syntax",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "regex-automata"
997
+ version = "0.4.18"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1000
+ dependencies = [
1001
+ "aho-corasick",
1002
+ "memchr",
1003
+ "regex-syntax",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "regex-syntax"
1008
+ version = "0.8.11"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1011
+
1012
+ [[package]]
1013
+ name = "roaring"
1014
+ version = "0.10.12"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "19e8d2cfa184d94d0726d650a9f4a1be7f9b76ac9fdb954219878dc00c1c1e7b"
1017
+ dependencies = [
1018
+ "bytemuck",
1019
+ "byteorder",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "rustc_version"
1024
+ version = "0.4.1"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1027
+ dependencies = [
1028
+ "semver",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "rustix"
1033
+ version = "1.1.4"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1036
+ dependencies = [
1037
+ "bitflags",
1038
+ "errno",
1039
+ "libc",
1040
+ "linux-raw-sys",
1041
+ "windows-sys",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "rustversion"
1046
+ version = "1.0.23"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1049
+
1050
+ [[package]]
1051
+ name = "rusty-fork"
1052
+ version = "0.3.1"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1055
+ dependencies = [
1056
+ "fnv",
1057
+ "quick-error",
1058
+ "tempfile",
1059
+ "wait-timeout",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "same-file"
1064
+ version = "1.0.6"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1067
+ dependencies = [
1068
+ "winapi-util",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "scoped-tls"
1073
+ version = "1.0.1"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1076
+
1077
+ [[package]]
1078
+ name = "semver"
1079
+ version = "1.0.28"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1082
+
1083
+ [[package]]
1084
+ name = "serde"
1085
+ version = "1.0.229"
1086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1087
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1088
+ dependencies = [
1089
+ "serde_core",
1090
+ "serde_derive",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "serde_core"
1095
+ version = "1.0.229"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1098
+ dependencies = [
1099
+ "serde_derive",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "serde_derive"
1104
+ version = "1.0.229"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1107
+ dependencies = [
1108
+ "proc-macro2",
1109
+ "quote",
1110
+ "syn 3.0.3",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "serde_json"
1115
+ version = "1.0.151"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1118
+ dependencies = [
1119
+ "itoa",
1120
+ "memchr",
1121
+ "serde",
1122
+ "serde_core",
1123
+ "zmij",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "sharded-slab"
1128
+ version = "0.1.7"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1131
+ dependencies = [
1132
+ "lazy_static",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "shlex"
1137
+ version = "2.0.1"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1140
+
1141
+ [[package]]
1142
+ name = "slab"
1143
+ version = "0.4.12"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1146
+
1147
+ [[package]]
1148
+ name = "smallvec"
1149
+ version = "1.15.2"
1150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1151
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1152
+
1153
+ [[package]]
1154
+ name = "syn"
1155
+ version = "2.0.119"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1158
+ dependencies = [
1159
+ "proc-macro2",
1160
+ "quote",
1161
+ "unicode-ident",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "syn"
1166
+ version = "3.0.3"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1169
+ dependencies = [
1170
+ "proc-macro2",
1171
+ "quote",
1172
+ "unicode-ident",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "target-lexicon"
1177
+ version = "0.13.5"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1180
+
1181
+ [[package]]
1182
+ name = "tempfile"
1183
+ version = "3.27.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1186
+ dependencies = [
1187
+ "fastrand",
1188
+ "getrandom 0.4.3",
1189
+ "once_cell",
1190
+ "rustix",
1191
+ "windows-sys",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "thread_local"
1196
+ version = "1.1.10"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1199
+ dependencies = [
1200
+ "cfg-if",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "tinytemplate"
1205
+ version = "1.2.1"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1208
+ dependencies = [
1209
+ "serde",
1210
+ "serde_json",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "tokio"
1215
+ version = "1.53.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1218
+ dependencies = [
1219
+ "pin-project-lite",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "tracing"
1224
+ version = "0.1.44"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1227
+ dependencies = [
1228
+ "pin-project-lite",
1229
+ "tracing-core",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "tracing-core"
1234
+ version = "0.1.36"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1237
+ dependencies = [
1238
+ "once_cell",
1239
+ "valuable",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "tracing-log"
1244
+ version = "0.2.0"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1247
+ dependencies = [
1248
+ "log",
1249
+ "once_cell",
1250
+ "tracing-core",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "tracing-subscriber"
1255
+ version = "0.3.23"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1258
+ dependencies = [
1259
+ "matchers",
1260
+ "nu-ansi-term",
1261
+ "once_cell",
1262
+ "regex-automata",
1263
+ "sharded-slab",
1264
+ "smallvec",
1265
+ "thread_local",
1266
+ "tracing",
1267
+ "tracing-core",
1268
+ "tracing-log",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "unarray"
1273
+ version = "0.1.4"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1276
+
1277
+ [[package]]
1278
+ name = "unicode-ident"
1279
+ version = "1.0.24"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1282
+
1283
+ [[package]]
1284
+ name = "unicode-segmentation"
1285
+ version = "1.13.3"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
1288
+
1289
+ [[package]]
1290
+ name = "valuable"
1291
+ version = "0.1.1"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1294
+
1295
+ [[package]]
1296
+ name = "wait-timeout"
1297
+ version = "0.2.1"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1300
+ dependencies = [
1301
+ "libc",
1302
+ ]
1303
+
1304
+ [[package]]
1305
+ name = "walkdir"
1306
+ version = "2.5.0"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1309
+ dependencies = [
1310
+ "same-file",
1311
+ "winapi-util",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "wasi"
1316
+ version = "0.11.1+wasi-snapshot-preview1"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1319
+
1320
+ [[package]]
1321
+ name = "wasip2"
1322
+ version = "1.0.1+wasi-0.2.4"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1325
+ dependencies = [
1326
+ "wit-bindgen",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "wasm-bindgen"
1331
+ version = "0.2.127"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
1334
+ dependencies = [
1335
+ "cfg-if",
1336
+ "once_cell",
1337
+ "rustversion",
1338
+ "wasm-bindgen-macro",
1339
+ "wasm-bindgen-shared",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "wasm-bindgen-macro"
1344
+ version = "0.2.127"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
1347
+ dependencies = [
1348
+ "quote",
1349
+ "wasm-bindgen-macro-support",
1350
+ ]
1351
+
1352
+ [[package]]
1353
+ name = "wasm-bindgen-macro-support"
1354
+ version = "0.2.127"
1355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1356
+ checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
1357
+ dependencies = [
1358
+ "bumpalo",
1359
+ "proc-macro2",
1360
+ "quote",
1361
+ "syn 2.0.119",
1362
+ "wasm-bindgen-shared",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "wasm-bindgen-shared"
1367
+ version = "0.2.127"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
1370
+ dependencies = [
1371
+ "unicode-ident",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "web-sys"
1376
+ version = "0.3.104"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
1379
+ dependencies = [
1380
+ "js-sys",
1381
+ "wasm-bindgen",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "winapi"
1386
+ version = "0.3.9"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1389
+ dependencies = [
1390
+ "winapi-i686-pc-windows-gnu",
1391
+ "winapi-x86_64-pc-windows-gnu",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "winapi-i686-pc-windows-gnu"
1396
+ version = "0.4.0"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1399
+
1400
+ [[package]]
1401
+ name = "winapi-util"
1402
+ version = "0.1.11"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1405
+ dependencies = [
1406
+ "windows-sys",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "winapi-x86_64-pc-windows-gnu"
1411
+ version = "0.4.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1414
+
1415
+ [[package]]
1416
+ name = "windows-link"
1417
+ version = "0.2.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1420
+
1421
+ [[package]]
1422
+ name = "windows-result"
1423
+ version = "0.4.1"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1426
+ dependencies = [
1427
+ "windows-link",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "windows-sys"
1432
+ version = "0.61.2"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1435
+ dependencies = [
1436
+ "windows-link",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "wit-bindgen"
1441
+ version = "0.46.0"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1444
+
1445
+ [[package]]
1446
+ name = "zerocopy"
1447
+ version = "0.8.56"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1450
+ dependencies = [
1451
+ "zerocopy-derive",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "zerocopy-derive"
1456
+ version = "0.8.56"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1459
+ dependencies = [
1460
+ "proc-macro2",
1461
+ "quote",
1462
+ "syn 2.0.119",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "zmij"
1467
+ version = "1.0.23"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"