memfork 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. memfork-0.1.0/Cargo.lock +1848 -0
  2. memfork-0.1.0/Cargo.toml +105 -0
  3. memfork-0.1.0/PKG-INFO +79 -0
  4. memfork-0.1.0/README.md +58 -0
  5. memfork-0.1.0/crates/memfork/Cargo.toml +78 -0
  6. memfork-0.1.0/crates/memfork/README.md +29 -0
  7. memfork-0.1.0/crates/memfork/src/cli.rs +509 -0
  8. memfork-0.1.0/crates/memfork/src/clients/clients.toml +167 -0
  9. memfork-0.1.0/crates/memfork/src/clients/edit.rs +552 -0
  10. memfork-0.1.0/crates/memfork/src/clients/mod.rs +640 -0
  11. memfork-0.1.0/crates/memfork/src/daemon.rs +407 -0
  12. memfork-0.1.0/crates/memfork/src/doctor.rs +470 -0
  13. memfork-0.1.0/crates/memfork/src/exec.rs +369 -0
  14. memfork-0.1.0/crates/memfork/src/init.rs +465 -0
  15. memfork-0.1.0/crates/memfork/src/launch.rs +242 -0
  16. memfork-0.1.0/crates/memfork/src/lib.rs +78 -0
  17. memfork-0.1.0/crates/memfork/src/main.rs +11 -0
  18. memfork-0.1.0/crates/memfork/src/mcp.rs +198 -0
  19. memfork-0.1.0/crates/memfork/src/persist/datadir.rs +330 -0
  20. memfork-0.1.0/crates/memfork/src/persist/lock.rs +434 -0
  21. memfork-0.1.0/crates/memfork/src/persist/mod.rs +251 -0
  22. memfork-0.1.0/crates/memfork/src/persist/snapshot.rs +250 -0
  23. memfork-0.1.0/crates/memfork/src/persist/wal.rs +464 -0
  24. memfork-0.1.0/crates/memfork/src/proxy.rs +485 -0
  25. memfork-0.1.0/crates/memfork/src/run.rs +697 -0
  26. memfork-0.1.0/crates/memfork/src/serve.rs +305 -0
  27. memfork-0.1.0/crates/memfork/src/tools/dispatch.rs +499 -0
  28. memfork-0.1.0/crates/memfork/src/tools/mod.rs +462 -0
  29. memfork-0.1.0/crates/memfork/src/tools/schema.rs +323 -0
  30. memfork-0.1.0/crates/memfork/src/tools/vendor.rs +186 -0
  31. memfork-0.1.0/crates/memfork-core/Cargo.toml +34 -0
  32. memfork-0.1.0/crates/memfork-core/README.md +32 -0
  33. memfork-0.1.0/crates/memfork-core/src/access.rs +165 -0
  34. memfork-0.1.0/crates/memfork-core/src/commit.rs +114 -0
  35. memfork-0.1.0/crates/memfork-core/src/db.rs +898 -0
  36. memfork-0.1.0/crates/memfork-core/src/encode.rs +173 -0
  37. memfork-0.1.0/crates/memfork-core/src/entry.rs +213 -0
  38. memfork-0.1.0/crates/memfork-core/src/error.rs +111 -0
  39. memfork-0.1.0/crates/memfork-core/src/evict.rs +272 -0
  40. memfork-0.1.0/crates/memfork-core/src/id.rs +83 -0
  41. memfork-0.1.0/crates/memfork-core/src/journal.rs +422 -0
  42. memfork-0.1.0/crates/memfork-core/src/lib.rs +116 -0
  43. memfork-0.1.0/crates/memfork-core/src/merge.rs +289 -0
  44. memfork-0.1.0/crates/memfork-core/src/search.rs +89 -0
  45. memfork-0.1.0/crates/memfork-core/src/store.rs +112 -0
  46. memfork-0.1.0/crates/memfork-core/src/txn.rs +200 -0
  47. memfork-0.1.0/crates/memfork-core/src/view.rs +124 -0
  48. memfork-0.1.0/crates/memfork-py/Cargo.toml +38 -0
  49. memfork-0.1.0/crates/memfork-py/README.md +58 -0
  50. memfork-0.1.0/crates/memfork-py/build.rs +29 -0
  51. memfork-0.1.0/crates/memfork-py/src/lib.rs +399 -0
  52. memfork-0.1.0/crates/memfork-py/tests/test_wheel.py +352 -0
  53. memfork-0.1.0/pyproject.toml +42 -0
  54. memfork-0.1.0/python/memfork/__init__.py +36 -0
  55. memfork-0.1.0/python/memfork/__main__.py +73 -0
  56. memfork-0.1.0/python/memfork/_spawn.py +75 -0
@@ -0,0 +1,1848 @@
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 = "android_system_properties"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstream"
25
+ version = "1.0.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
28
+ dependencies = [
29
+ "anstyle",
30
+ "anstyle-parse",
31
+ "anstyle-query",
32
+ "anstyle-wincon",
33
+ "colorchoice",
34
+ "is_terminal_polyfill",
35
+ "utf8parse",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.14"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
43
+
44
+ [[package]]
45
+ name = "anstyle-parse"
46
+ version = "1.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
49
+ dependencies = [
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-query"
55
+ version = "1.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
58
+ dependencies = [
59
+ "windows-sys",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-wincon"
64
+ version = "3.0.11"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
67
+ dependencies = [
68
+ "anstyle",
69
+ "once_cell_polyfill",
70
+ "windows-sys",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "archery"
75
+ version = "1.2.3"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "33ca55ee147b1926dbea904f50fe4902494e97bc742205abbbf10c709e43815f"
78
+ dependencies = [
79
+ "triomphe",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "arrayvec"
84
+ version = "0.7.8"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
87
+
88
+ [[package]]
89
+ name = "assert_cmd"
90
+ version = "2.2.2"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
93
+ dependencies = [
94
+ "anstyle",
95
+ "bstr",
96
+ "libc",
97
+ "predicates",
98
+ "predicates-core",
99
+ "predicates-tree",
100
+ "wait-timeout",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "async-trait"
105
+ version = "0.1.92"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667"
108
+ dependencies = [
109
+ "proc-macro2",
110
+ "quote",
111
+ "syn 3.0.6",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "atomic-waker"
116
+ version = "1.1.2"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
119
+
120
+ [[package]]
121
+ name = "autocfg"
122
+ version = "1.5.1"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
125
+
126
+ [[package]]
127
+ name = "base64"
128
+ version = "0.23.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
131
+
132
+ [[package]]
133
+ name = "bit-set"
134
+ version = "0.8.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
137
+ dependencies = [
138
+ "bit-vec",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "bit-vec"
143
+ version = "0.8.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
146
+
147
+ [[package]]
148
+ name = "bitflags"
149
+ version = "2.13.2"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
152
+
153
+ [[package]]
154
+ name = "blake3"
155
+ version = "1.8.7"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae"
158
+ dependencies = [
159
+ "arrayvec",
160
+ "cc",
161
+ "cfg-if",
162
+ "constant_time_eq",
163
+ "cpufeatures",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "bstr"
168
+ version = "1.13.1"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
171
+ dependencies = [
172
+ "memchr",
173
+ "regex-automata",
174
+ "serde_core",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "bumpalo"
179
+ version = "3.20.3"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
182
+
183
+ [[package]]
184
+ name = "bytes"
185
+ version = "1.12.1"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
188
+
189
+ [[package]]
190
+ name = "cap"
191
+ version = "0.1.2"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "6f125eb85b84a24c36b02ed1d22c9dd8632f53b3cde6e4d23512f94021030003"
194
+
195
+ [[package]]
196
+ name = "cc"
197
+ version = "1.4.7"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "54413ede23c2daf518f35156dfde027feb2374004d63bd497f983c8db9c0e313"
200
+ dependencies = [
201
+ "find-msvc-tools",
202
+ "shlex",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "cfg-if"
207
+ version = "1.0.5"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
210
+
211
+ [[package]]
212
+ name = "cfg_aliases"
213
+ version = "0.2.2"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
216
+
217
+ [[package]]
218
+ name = "chacha20"
219
+ version = "0.10.2"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06"
222
+ dependencies = [
223
+ "cfg-if",
224
+ "cpufeatures",
225
+ "rand_core 0.10.1",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "chrono"
230
+ version = "0.4.45"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
233
+ dependencies = [
234
+ "iana-time-zone",
235
+ "num-traits",
236
+ "serde",
237
+ "windows-link",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "clap"
242
+ version = "4.6.7"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "aa8876b300ab35ba921adea3dfd70157a46249b33f95c9084ae5709785478946"
245
+ dependencies = [
246
+ "clap_builder",
247
+ "clap_derive",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "clap_builder"
252
+ version = "4.6.7"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "ec0797fb7aeb1406c84efac526901f7ec3ead2124f946b494e72879d4b54704d"
255
+ dependencies = [
256
+ "anstream",
257
+ "anstyle",
258
+ "clap_lex",
259
+ "strsim",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "clap_derive"
264
+ version = "4.6.7"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "f9c751b79415d4e559e3d1fcf128e09e720eb673a06d26cf6f392d37d75b66e0"
267
+ dependencies = [
268
+ "heck",
269
+ "proc-macro2",
270
+ "quote",
271
+ "syn 3.0.6",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap_lex"
276
+ version = "1.1.1"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "1c133bc6a41be0d194c306b5506d15e6feeea7b1d6604bd3f8310dfb2ca96486"
279
+
280
+ [[package]]
281
+ name = "colorchoice"
282
+ version = "1.0.5"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
285
+
286
+ [[package]]
287
+ name = "constant_time_eq"
288
+ version = "0.4.2"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
291
+
292
+ [[package]]
293
+ name = "core-foundation-sys"
294
+ version = "0.8.7"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
297
+
298
+ [[package]]
299
+ name = "cpufeatures"
300
+ version = "0.3.1"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
303
+ dependencies = [
304
+ "libc",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "difflib"
309
+ version = "0.4.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
312
+
313
+ [[package]]
314
+ name = "dyn-clone"
315
+ version = "1.0.20"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
318
+
319
+ [[package]]
320
+ name = "equivalent"
321
+ version = "1.0.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
324
+
325
+ [[package]]
326
+ name = "errno"
327
+ version = "0.3.14"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
330
+ dependencies = [
331
+ "libc",
332
+ "windows-sys",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "fastrand"
337
+ version = "2.5.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
340
+
341
+ [[package]]
342
+ name = "find-msvc-tools"
343
+ version = "0.1.13"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "ef25905e51abafe4dcea6c15fec58c57b601cdbd0ee53d22ea1d3016c587d39b"
346
+
347
+ [[package]]
348
+ name = "float-cmp"
349
+ version = "0.10.0"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
352
+ dependencies = [
353
+ "num-traits",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "fnv"
358
+ version = "1.0.7"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
361
+
362
+ [[package]]
363
+ name = "futures"
364
+ version = "0.3.34"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3"
367
+ dependencies = [
368
+ "futures-channel",
369
+ "futures-core",
370
+ "futures-executor",
371
+ "futures-io",
372
+ "futures-sink",
373
+ "futures-task",
374
+ "futures-util",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "futures-channel"
379
+ version = "0.3.34"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4"
382
+ dependencies = [
383
+ "futures-core",
384
+ "futures-sink",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "futures-core"
389
+ version = "0.3.34"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
392
+
393
+ [[package]]
394
+ name = "futures-executor"
395
+ version = "0.3.34"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432"
398
+ dependencies = [
399
+ "futures-core",
400
+ "futures-task",
401
+ "futures-util",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "futures-io"
406
+ version = "0.3.34"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed"
409
+
410
+ [[package]]
411
+ name = "futures-macro"
412
+ version = "0.3.34"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
415
+ dependencies = [
416
+ "proc-macro2",
417
+ "quote",
418
+ "syn 3.0.6",
419
+ ]
420
+
421
+ [[package]]
422
+ name = "futures-sink"
423
+ version = "0.3.34"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d"
426
+
427
+ [[package]]
428
+ name = "futures-task"
429
+ version = "0.3.34"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
432
+
433
+ [[package]]
434
+ name = "futures-util"
435
+ version = "0.3.34"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
438
+ dependencies = [
439
+ "futures-channel",
440
+ "futures-core",
441
+ "futures-io",
442
+ "futures-macro",
443
+ "futures-sink",
444
+ "futures-task",
445
+ "memchr",
446
+ "pin-project-lite",
447
+ "slab",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "getrandom"
452
+ version = "0.3.4"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
455
+ dependencies = [
456
+ "cfg-if",
457
+ "libc",
458
+ "r-efi 5.3.0",
459
+ "wasip2",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "getrandom"
464
+ version = "0.4.3"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
467
+ dependencies = [
468
+ "cfg-if",
469
+ "libc",
470
+ "r-efi 6.0.0",
471
+ "rand_core 0.10.1",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "hashbrown"
476
+ version = "0.17.1"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
479
+
480
+ [[package]]
481
+ name = "heck"
482
+ version = "0.5.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
485
+
486
+ [[package]]
487
+ name = "http"
488
+ version = "1.5.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
491
+ dependencies = [
492
+ "bytes",
493
+ "itoa",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "http-body"
498
+ version = "1.1.0"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
501
+ dependencies = [
502
+ "bytes",
503
+ "http",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "http-body-util"
508
+ version = "0.1.5"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c"
511
+ dependencies = [
512
+ "bytes",
513
+ "futures-core",
514
+ "http",
515
+ "http-body",
516
+ "pin-project-lite",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "httparse"
521
+ version = "1.10.1"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
524
+
525
+ [[package]]
526
+ name = "httpdate"
527
+ version = "1.0.3"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
530
+
531
+ [[package]]
532
+ name = "hyper"
533
+ version = "1.11.1"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43"
536
+ dependencies = [
537
+ "atomic-waker",
538
+ "bytes",
539
+ "futures-channel",
540
+ "futures-core",
541
+ "http",
542
+ "http-body",
543
+ "httparse",
544
+ "httpdate",
545
+ "itoa",
546
+ "pin-project-lite",
547
+ "smallvec",
548
+ "tokio",
549
+ "want",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "hyper-util"
554
+ version = "0.1.20"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
557
+ dependencies = [
558
+ "bytes",
559
+ "futures-channel",
560
+ "futures-util",
561
+ "http",
562
+ "http-body",
563
+ "hyper",
564
+ "libc",
565
+ "pin-project-lite",
566
+ "socket2",
567
+ "tokio",
568
+ "tower-service",
569
+ "tracing",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "iana-time-zone"
574
+ version = "0.1.65"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
577
+ dependencies = [
578
+ "android_system_properties",
579
+ "core-foundation-sys",
580
+ "iana-time-zone-haiku",
581
+ "js-sys",
582
+ "log",
583
+ "wasm-bindgen",
584
+ "windows-core",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "iana-time-zone-haiku"
589
+ version = "0.1.2"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
592
+ dependencies = [
593
+ "cc",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "indexmap"
598
+ version = "2.14.2"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
601
+ dependencies = [
602
+ "equivalent",
603
+ "hashbrown",
604
+ "serde",
605
+ "serde_core",
606
+ ]
607
+
608
+ [[package]]
609
+ name = "is_terminal_polyfill"
610
+ version = "1.70.2"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
613
+
614
+ [[package]]
615
+ name = "itoa"
616
+ version = "1.0.18"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
619
+
620
+ [[package]]
621
+ name = "js-sys"
622
+ version = "0.3.105"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
625
+ dependencies = [
626
+ "cfg-if",
627
+ "futures-util",
628
+ "wasm-bindgen",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "lazy_static"
633
+ version = "1.5.0"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
636
+
637
+ [[package]]
638
+ name = "libc"
639
+ version = "0.2.189"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
642
+
643
+ [[package]]
644
+ name = "linux-raw-sys"
645
+ version = "0.12.1"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
648
+
649
+ [[package]]
650
+ name = "lock_api"
651
+ version = "0.4.14"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
654
+ dependencies = [
655
+ "scopeguard",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "log"
660
+ version = "0.4.34"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
663
+
664
+ [[package]]
665
+ name = "matchers"
666
+ version = "0.2.0"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
669
+ dependencies = [
670
+ "regex-automata",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "memchr"
675
+ version = "2.8.3"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
678
+
679
+ [[package]]
680
+ name = "memfork"
681
+ version = "0.1.0"
682
+ dependencies = [
683
+ "assert_cmd",
684
+ "blake3",
685
+ "bytes",
686
+ "clap",
687
+ "futures",
688
+ "getrandom 0.4.3",
689
+ "http-body-util",
690
+ "hyper",
691
+ "hyper-util",
692
+ "memfork-core",
693
+ "parking_lot",
694
+ "predicates",
695
+ "rmcp",
696
+ "serde",
697
+ "serde_json",
698
+ "tempfile",
699
+ "thiserror",
700
+ "tokio",
701
+ "tokio-util",
702
+ "toml",
703
+ "toml_edit",
704
+ "tower-service",
705
+ "tracing-subscriber",
706
+ "windows-sys",
707
+ ]
708
+
709
+ [[package]]
710
+ name = "memfork-core"
711
+ version = "0.1.0"
712
+ dependencies = [
713
+ "blake3",
714
+ "bytes",
715
+ "cap",
716
+ "parking_lot",
717
+ "proptest",
718
+ "rpds",
719
+ "serde",
720
+ "serde_json",
721
+ "smallvec",
722
+ "thiserror",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "memfork-py"
727
+ version = "0.1.0"
728
+ dependencies = [
729
+ "memfork",
730
+ "memfork-core",
731
+ "pyo3",
732
+ "serde_json",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "mio"
737
+ version = "1.2.3"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "4b18443e9c262bfe8fa82f51666e2642c53393f7e5c27b3e1aeab922cff5b9d8"
740
+ dependencies = [
741
+ "libc",
742
+ "wasi",
743
+ "windows-sys",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "nix"
748
+ version = "0.31.3"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d"
751
+ dependencies = [
752
+ "bitflags",
753
+ "cfg-if",
754
+ "cfg_aliases",
755
+ "libc",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "normalize-line-endings"
760
+ version = "0.3.0"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
763
+
764
+ [[package]]
765
+ name = "num-traits"
766
+ version = "0.2.19"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
769
+ dependencies = [
770
+ "autocfg",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "once_cell"
775
+ version = "1.21.4"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
778
+
779
+ [[package]]
780
+ name = "once_cell_polyfill"
781
+ version = "1.70.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
784
+
785
+ [[package]]
786
+ name = "parking_lot"
787
+ version = "0.12.5"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
790
+ dependencies = [
791
+ "lock_api",
792
+ "parking_lot_core",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "parking_lot_core"
797
+ version = "0.9.12"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
800
+ dependencies = [
801
+ "cfg-if",
802
+ "libc",
803
+ "redox_syscall",
804
+ "smallvec",
805
+ "windows-link",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "pastey"
810
+ version = "0.2.3"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4"
813
+
814
+ [[package]]
815
+ name = "pin-project-lite"
816
+ version = "0.2.17"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
819
+
820
+ [[package]]
821
+ name = "portable-atomic"
822
+ version = "1.15.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
825
+
826
+ [[package]]
827
+ name = "ppv-lite86"
828
+ version = "0.2.21"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
831
+ dependencies = [
832
+ "zerocopy",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "predicates"
837
+ version = "3.1.4"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
840
+ dependencies = [
841
+ "anstyle",
842
+ "difflib",
843
+ "float-cmp",
844
+ "normalize-line-endings",
845
+ "predicates-core",
846
+ "regex",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "predicates-core"
851
+ version = "1.0.10"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
854
+
855
+ [[package]]
856
+ name = "predicates-tree"
857
+ version = "1.0.13"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
860
+ dependencies = [
861
+ "predicates-core",
862
+ "termtree",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "proc-macro2"
867
+ version = "1.0.107"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
870
+ dependencies = [
871
+ "unicode-ident",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "process-wrap"
876
+ version = "10.0.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "0e3f4237d0e4741eb50bc5584db701f1299c85fa31ff0274dd6445e79dc42d12"
879
+ dependencies = [
880
+ "futures",
881
+ "indexmap",
882
+ "nix",
883
+ "tokio",
884
+ "tracing",
885
+ "windows",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "proptest"
890
+ version = "1.11.0"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
893
+ dependencies = [
894
+ "bit-set",
895
+ "bit-vec",
896
+ "bitflags",
897
+ "num-traits",
898
+ "rand 0.9.5",
899
+ "rand_chacha",
900
+ "rand_xorshift",
901
+ "regex-syntax",
902
+ "rusty-fork",
903
+ "tempfile",
904
+ "unarray",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "pyo3"
909
+ version = "0.29.2"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
912
+ dependencies = [
913
+ "libc",
914
+ "once_cell",
915
+ "portable-atomic",
916
+ "pyo3-build-config",
917
+ "pyo3-ffi",
918
+ "pyo3-macros",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "pyo3-build-config"
923
+ version = "0.29.2"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
926
+ dependencies = [
927
+ "target-lexicon",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "pyo3-ffi"
932
+ version = "0.29.2"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
935
+ dependencies = [
936
+ "libc",
937
+ "pyo3-build-config",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "pyo3-macros"
942
+ version = "0.29.2"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
945
+ dependencies = [
946
+ "proc-macro2",
947
+ "pyo3-macros-backend",
948
+ "quote",
949
+ "syn 2.0.119",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "pyo3-macros-backend"
954
+ version = "0.29.2"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
957
+ dependencies = [
958
+ "heck",
959
+ "proc-macro2",
960
+ "quote",
961
+ "syn 2.0.119",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "quick-error"
966
+ version = "1.2.3"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
969
+
970
+ [[package]]
971
+ name = "quote"
972
+ version = "1.0.47"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
975
+ dependencies = [
976
+ "proc-macro2",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "r-efi"
981
+ version = "5.3.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
984
+
985
+ [[package]]
986
+ name = "r-efi"
987
+ version = "6.0.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
990
+
991
+ [[package]]
992
+ name = "rand"
993
+ version = "0.9.5"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
996
+ dependencies = [
997
+ "rand_chacha",
998
+ "rand_core 0.9.5",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "rand"
1003
+ version = "0.10.3"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "65c9fb96cbc91e3478eaae79a69fcd3f1ae4ad052e471fe6732fff548984b4af"
1006
+ dependencies = [
1007
+ "chacha20",
1008
+ "getrandom 0.4.3",
1009
+ "rand_core 0.10.1",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "rand_chacha"
1014
+ version = "0.9.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1017
+ dependencies = [
1018
+ "ppv-lite86",
1019
+ "rand_core 0.9.5",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "rand_core"
1024
+ version = "0.9.5"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1027
+ dependencies = [
1028
+ "getrandom 0.3.4",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "rand_core"
1033
+ version = "0.10.1"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1036
+
1037
+ [[package]]
1038
+ name = "rand_xorshift"
1039
+ version = "0.4.0"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1042
+ dependencies = [
1043
+ "rand_core 0.9.5",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "redox_syscall"
1048
+ version = "0.5.18"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1051
+ dependencies = [
1052
+ "bitflags",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "ref-cast"
1057
+ version = "1.0.27"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
1060
+ dependencies = [
1061
+ "ref-cast-impl",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "ref-cast-impl"
1066
+ version = "1.0.27"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
1069
+ dependencies = [
1070
+ "proc-macro2",
1071
+ "quote",
1072
+ "syn 3.0.6",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "regex"
1077
+ version = "1.13.1"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1080
+ dependencies = [
1081
+ "aho-corasick",
1082
+ "memchr",
1083
+ "regex-automata",
1084
+ "regex-syntax",
1085
+ ]
1086
+
1087
+ [[package]]
1088
+ name = "regex-automata"
1089
+ version = "0.4.18"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1092
+ dependencies = [
1093
+ "aho-corasick",
1094
+ "memchr",
1095
+ "regex-syntax",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "regex-syntax"
1100
+ version = "0.8.11"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1103
+
1104
+ [[package]]
1105
+ name = "rmcp"
1106
+ version = "3.4.0"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "b23c62fe489ac1d401ab32688cfacac3737a8978dc3343e5361464c7724fd3cb"
1109
+ dependencies = [
1110
+ "async-trait",
1111
+ "base64",
1112
+ "bytes",
1113
+ "chrono",
1114
+ "futures",
1115
+ "http",
1116
+ "http-body",
1117
+ "http-body-util",
1118
+ "indexmap",
1119
+ "pastey",
1120
+ "pin-project-lite",
1121
+ "process-wrap",
1122
+ "rand 0.10.3",
1123
+ "schemars",
1124
+ "serde",
1125
+ "serde_json",
1126
+ "sse-stream",
1127
+ "thiserror",
1128
+ "tokio",
1129
+ "tokio-stream",
1130
+ "tokio-util",
1131
+ "tower-service",
1132
+ "tracing",
1133
+ "uuid",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "rpds"
1138
+ version = "1.2.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "e025feb26210bc196b908e72deb063b1b4000754304341cbc168a1e72c857ebc"
1141
+ dependencies = [
1142
+ "archery",
1143
+ "smallvec",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "rustix"
1148
+ version = "1.1.5"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "891efababe418670775f199f0d233d84843c227a0949a883ce15b37c78d6629d"
1151
+ dependencies = [
1152
+ "bitflags",
1153
+ "errno",
1154
+ "libc",
1155
+ "linux-raw-sys",
1156
+ "windows-sys",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "rustversion"
1161
+ version = "1.0.23"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1164
+
1165
+ [[package]]
1166
+ name = "rusty-fork"
1167
+ version = "0.3.1"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1170
+ dependencies = [
1171
+ "fnv",
1172
+ "quick-error",
1173
+ "tempfile",
1174
+ "wait-timeout",
1175
+ ]
1176
+
1177
+ [[package]]
1178
+ name = "schemars"
1179
+ version = "1.2.2"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
1182
+ dependencies = [
1183
+ "chrono",
1184
+ "dyn-clone",
1185
+ "ref-cast",
1186
+ "schemars_derive",
1187
+ "serde",
1188
+ "serde_json",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "schemars_derive"
1193
+ version = "1.2.2"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "d98c67716b46af2f0b8cf752abc930f6f9aecfbf671ecfb531db8a31dbe4e2ba"
1196
+ dependencies = [
1197
+ "proc-macro2",
1198
+ "quote",
1199
+ "serde_derive_internals",
1200
+ "syn 3.0.6",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "scopeguard"
1205
+ version = "1.2.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1208
+
1209
+ [[package]]
1210
+ name = "serde"
1211
+ version = "1.0.229"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1214
+ dependencies = [
1215
+ "serde_core",
1216
+ "serde_derive",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "serde_core"
1221
+ version = "1.0.229"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1224
+ dependencies = [
1225
+ "serde_derive",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "serde_derive"
1230
+ version = "1.0.229"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1233
+ dependencies = [
1234
+ "proc-macro2",
1235
+ "quote",
1236
+ "syn 3.0.6",
1237
+ ]
1238
+
1239
+ [[package]]
1240
+ name = "serde_derive_internals"
1241
+ version = "0.30.0"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "f852137cce035d6a4df67ccce505ff6b3e9fd3a10e3e52b24dc71e650bb1a9bd"
1244
+ dependencies = [
1245
+ "proc-macro2",
1246
+ "quote",
1247
+ "syn 3.0.6",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "serde_json"
1252
+ version = "1.0.151"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1255
+ dependencies = [
1256
+ "indexmap",
1257
+ "itoa",
1258
+ "memchr",
1259
+ "serde",
1260
+ "serde_core",
1261
+ "zmij",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "serde_spanned"
1266
+ version = "1.1.1"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1269
+ dependencies = [
1270
+ "serde_core",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "sharded-slab"
1275
+ version = "0.1.7"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1278
+ dependencies = [
1279
+ "lazy_static",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "shlex"
1284
+ version = "2.0.1"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1287
+
1288
+ [[package]]
1289
+ name = "signal-hook-registry"
1290
+ version = "1.4.8"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1293
+ dependencies = [
1294
+ "errno",
1295
+ "libc",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "slab"
1300
+ version = "0.4.12"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1303
+
1304
+ [[package]]
1305
+ name = "smallvec"
1306
+ version = "1.16.1"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
1309
+
1310
+ [[package]]
1311
+ name = "socket2"
1312
+ version = "0.6.5"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
1315
+ dependencies = [
1316
+ "libc",
1317
+ "windows-sys",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "sse-stream"
1322
+ version = "0.2.6"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "c25ac7aff0abd1dbc474536e40416e1102c7dd9bfba0b9861c6d357f835dcfb4"
1325
+ dependencies = [
1326
+ "bytes",
1327
+ "futures-util",
1328
+ "http-body",
1329
+ "http-body-util",
1330
+ "pin-project-lite",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "strsim"
1335
+ version = "0.11.1"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1338
+
1339
+ [[package]]
1340
+ name = "syn"
1341
+ version = "2.0.119"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1344
+ dependencies = [
1345
+ "proc-macro2",
1346
+ "quote",
1347
+ "unicode-ident",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "syn"
1352
+ version = "3.0.6"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
1355
+ dependencies = [
1356
+ "proc-macro2",
1357
+ "quote",
1358
+ "unicode-ident",
1359
+ ]
1360
+
1361
+ [[package]]
1362
+ name = "target-lexicon"
1363
+ version = "0.13.5"
1364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1365
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1366
+
1367
+ [[package]]
1368
+ name = "tempfile"
1369
+ version = "3.27.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1372
+ dependencies = [
1373
+ "fastrand",
1374
+ "getrandom 0.4.3",
1375
+ "once_cell",
1376
+ "rustix",
1377
+ "windows-sys",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "termtree"
1382
+ version = "0.5.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1385
+
1386
+ [[package]]
1387
+ name = "thiserror"
1388
+ version = "2.0.20"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1391
+ dependencies = [
1392
+ "thiserror-impl",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "thiserror-impl"
1397
+ version = "2.0.20"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1400
+ dependencies = [
1401
+ "proc-macro2",
1402
+ "quote",
1403
+ "syn 3.0.6",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "thread_local"
1408
+ version = "1.1.10"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1411
+ dependencies = [
1412
+ "cfg-if",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "tokio"
1417
+ version = "1.53.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
1420
+ dependencies = [
1421
+ "bytes",
1422
+ "libc",
1423
+ "mio",
1424
+ "pin-project-lite",
1425
+ "signal-hook-registry",
1426
+ "socket2",
1427
+ "tokio-macros",
1428
+ "windows-sys",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "tokio-macros"
1433
+ version = "2.7.2"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e"
1436
+ dependencies = [
1437
+ "proc-macro2",
1438
+ "quote",
1439
+ "syn 3.0.6",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "tokio-stream"
1444
+ version = "0.1.19"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
1447
+ dependencies = [
1448
+ "futures-core",
1449
+ "pin-project-lite",
1450
+ "tokio",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "tokio-util"
1455
+ version = "0.7.19"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
1458
+ dependencies = [
1459
+ "bytes",
1460
+ "futures-core",
1461
+ "futures-sink",
1462
+ "libc",
1463
+ "pin-project-lite",
1464
+ "tokio",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "toml"
1469
+ version = "1.1.6+spec-1.1.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "920602543f0911ab71da12c50d59701da54c196d1a2bf5cb4b75667f137a406a"
1472
+ dependencies = [
1473
+ "indexmap",
1474
+ "serde_core",
1475
+ "serde_spanned",
1476
+ "toml_datetime",
1477
+ "toml_parser",
1478
+ "toml_writer",
1479
+ "winnow",
1480
+ ]
1481
+
1482
+ [[package]]
1483
+ name = "toml_datetime"
1484
+ version = "1.1.1+spec-1.1.0"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1487
+ dependencies = [
1488
+ "serde_core",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "toml_edit"
1493
+ version = "0.25.15+spec-1.1.0"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "1340ea94a5856333492c9064b02c778b191dd2c853778d9609debdcdfea3a614"
1496
+ dependencies = [
1497
+ "indexmap",
1498
+ "toml_datetime",
1499
+ "toml_parser",
1500
+ "toml_writer",
1501
+ "winnow",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "toml_parser"
1506
+ version = "1.1.3+spec-1.1.0"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
1509
+ dependencies = [
1510
+ "winnow",
1511
+ ]
1512
+
1513
+ [[package]]
1514
+ name = "toml_writer"
1515
+ version = "1.1.2+spec-1.1.0"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
1518
+
1519
+ [[package]]
1520
+ name = "tower-service"
1521
+ version = "0.3.3"
1522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1523
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1524
+
1525
+ [[package]]
1526
+ name = "tracing"
1527
+ version = "0.1.44"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1530
+ dependencies = [
1531
+ "pin-project-lite",
1532
+ "tracing-attributes",
1533
+ "tracing-core",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "tracing-attributes"
1538
+ version = "0.1.31"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1541
+ dependencies = [
1542
+ "proc-macro2",
1543
+ "quote",
1544
+ "syn 2.0.119",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "tracing-core"
1549
+ version = "0.1.36"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1552
+ dependencies = [
1553
+ "once_cell",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "tracing-subscriber"
1558
+ version = "0.3.23"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1561
+ dependencies = [
1562
+ "matchers",
1563
+ "once_cell",
1564
+ "regex-automata",
1565
+ "sharded-slab",
1566
+ "thread_local",
1567
+ "tracing",
1568
+ "tracing-core",
1569
+ ]
1570
+
1571
+ [[package]]
1572
+ name = "triomphe"
1573
+ version = "0.1.16"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "b40688ea6389c8171614b25491f71d4a27946e0c7ce2da1c6de27e25abf1a0ae"
1576
+
1577
+ [[package]]
1578
+ name = "try-lock"
1579
+ version = "0.2.5"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1582
+
1583
+ [[package]]
1584
+ name = "unarray"
1585
+ version = "0.1.4"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1588
+
1589
+ [[package]]
1590
+ name = "unicode-ident"
1591
+ version = "1.0.26"
1592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1593
+ checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
1594
+
1595
+ [[package]]
1596
+ name = "utf8parse"
1597
+ version = "0.2.2"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1600
+
1601
+ [[package]]
1602
+ name = "uuid"
1603
+ version = "1.26.1"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "2ef6dac1e96601b4fb3acccccff2139741fcb757cb9a36089bf5be91cfb285ce"
1606
+ dependencies = [
1607
+ "getrandom 0.4.3",
1608
+ "js-sys",
1609
+ "wasm-bindgen",
1610
+ ]
1611
+
1612
+ [[package]]
1613
+ name = "wait-timeout"
1614
+ version = "0.2.1"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1617
+ dependencies = [
1618
+ "libc",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "want"
1623
+ version = "0.3.1"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1626
+ dependencies = [
1627
+ "try-lock",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "wasi"
1632
+ version = "0.11.1+wasi-snapshot-preview1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1635
+
1636
+ [[package]]
1637
+ name = "wasip2"
1638
+ version = "1.0.4+wasi-0.2.12"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1641
+ dependencies = [
1642
+ "wit-bindgen",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "wasm-bindgen"
1647
+ version = "0.2.128"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
1650
+ dependencies = [
1651
+ "cfg-if",
1652
+ "once_cell",
1653
+ "rustversion",
1654
+ "wasm-bindgen-macro",
1655
+ "wasm-bindgen-shared",
1656
+ ]
1657
+
1658
+ [[package]]
1659
+ name = "wasm-bindgen-macro"
1660
+ version = "0.2.128"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
1663
+ dependencies = [
1664
+ "quote",
1665
+ "wasm-bindgen-macro-support",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "wasm-bindgen-macro-support"
1670
+ version = "0.2.128"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
1673
+ dependencies = [
1674
+ "bumpalo",
1675
+ "proc-macro2",
1676
+ "quote",
1677
+ "syn 3.0.6",
1678
+ "wasm-bindgen-shared",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "wasm-bindgen-shared"
1683
+ version = "0.2.128"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
1686
+ dependencies = [
1687
+ "unicode-ident",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "windows"
1692
+ version = "0.62.2"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
1695
+ dependencies = [
1696
+ "windows-collections",
1697
+ "windows-core",
1698
+ "windows-future",
1699
+ "windows-numerics",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "windows-collections"
1704
+ version = "0.3.2"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
1707
+ dependencies = [
1708
+ "windows-core",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "windows-core"
1713
+ version = "0.62.2"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1716
+ dependencies = [
1717
+ "windows-implement",
1718
+ "windows-interface",
1719
+ "windows-link",
1720
+ "windows-result",
1721
+ "windows-strings",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "windows-future"
1726
+ version = "0.3.2"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
1729
+ dependencies = [
1730
+ "windows-core",
1731
+ "windows-link",
1732
+ "windows-threading",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "windows-implement"
1737
+ version = "0.60.2"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1740
+ dependencies = [
1741
+ "proc-macro2",
1742
+ "quote",
1743
+ "syn 2.0.119",
1744
+ ]
1745
+
1746
+ [[package]]
1747
+ name = "windows-interface"
1748
+ version = "0.59.3"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1751
+ dependencies = [
1752
+ "proc-macro2",
1753
+ "quote",
1754
+ "syn 2.0.119",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "windows-link"
1759
+ version = "0.2.1"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1762
+
1763
+ [[package]]
1764
+ name = "windows-numerics"
1765
+ version = "0.3.1"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
1768
+ dependencies = [
1769
+ "windows-core",
1770
+ "windows-link",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "windows-result"
1775
+ version = "0.4.1"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1778
+ dependencies = [
1779
+ "windows-link",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "windows-strings"
1784
+ version = "0.5.1"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1787
+ dependencies = [
1788
+ "windows-link",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "windows-sys"
1793
+ version = "0.61.2"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1796
+ dependencies = [
1797
+ "windows-link",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "windows-threading"
1802
+ version = "0.2.1"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
1805
+ dependencies = [
1806
+ "windows-link",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "winnow"
1811
+ version = "1.0.4"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
1814
+ dependencies = [
1815
+ "memchr",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "wit-bindgen"
1820
+ version = "0.57.1"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1823
+
1824
+ [[package]]
1825
+ name = "zerocopy"
1826
+ version = "0.8.57"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
1829
+ dependencies = [
1830
+ "zerocopy-derive",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "zerocopy-derive"
1835
+ version = "0.8.57"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
1838
+ dependencies = [
1839
+ "proc-macro2",
1840
+ "quote",
1841
+ "syn 2.0.119",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "zmij"
1846
+ version = "1.0.23"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"