mem7 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 (44) hide show
  1. mem7-0.1.0/Cargo.lock +1918 -0
  2. mem7-0.1.0/Cargo.toml +51 -0
  3. mem7-0.1.0/PKG-INFO +10 -0
  4. mem7-0.1.0/mem7/__init__.py +6 -0
  5. mem7-0.1.0/mem7/config.py +45 -0
  6. mem7-0.1.0/mem7/memory.py +204 -0
  7. mem7-0.1.0/mem7/prompts.py +61 -0
  8. mem7-0.1.0/pyproject.toml +24 -0
  9. mem7-0.1.0/src/bindings/mem7-python/Cargo.toml +22 -0
  10. mem7-0.1.0/src/bindings/mem7-python/src/engine.rs +183 -0
  11. mem7-0.1.0/src/bindings/mem7-python/src/lib.rs +10 -0
  12. mem7-0.1.0/src/bindings/mem7-python/src/types.rs +8 -0
  13. mem7-0.1.0/src/common/config/Cargo.toml +10 -0
  14. mem7-0.1.0/src/common/config/src/lib.rs +120 -0
  15. mem7-0.1.0/src/common/error/Cargo.toml +14 -0
  16. mem7-0.1.0/src/common/error/src/lib.rs +57 -0
  17. mem7-0.1.0/src/mem7-core/Cargo.toml +14 -0
  18. mem7-0.1.0/src/mem7-core/src/id.rs +25 -0
  19. mem7-0.1.0/src/mem7-core/src/lib.rs +5 -0
  20. mem7-0.1.0/src/mem7-core/src/types.rs +90 -0
  21. mem7-0.1.0/src/mem7-dedup/Cargo.toml +15 -0
  22. mem7-0.1.0/src/mem7-dedup/src/lib.rs +3 -0
  23. mem7-0.1.0/src/mem7-dedup/src/scorer.rs +149 -0
  24. mem7-0.1.0/src/mem7-embedding/Cargo.toml +18 -0
  25. mem7-0.1.0/src/mem7-embedding/src/client.rs +69 -0
  26. mem7-0.1.0/src/mem7-embedding/src/lib.rs +11 -0
  27. mem7-0.1.0/src/mem7-history/Cargo.toml +15 -0
  28. mem7-0.1.0/src/mem7-history/src/lib.rs +3 -0
  29. mem7-0.1.0/src/mem7-history/src/sqlite.rs +135 -0
  30. mem7-0.1.0/src/mem7-llm/Cargo.toml +18 -0
  31. mem7-0.1.0/src/mem7-llm/src/client.rs +72 -0
  32. mem7-0.1.0/src/mem7-llm/src/lib.rs +17 -0
  33. mem7-0.1.0/src/mem7-llm/src/types.rs +70 -0
  34. mem7-0.1.0/src/mem7-store/Cargo.toml +23 -0
  35. mem7-0.1.0/src/mem7-store/src/engine.rs +432 -0
  36. mem7-0.1.0/src/mem7-store/src/lib.rs +5 -0
  37. mem7-0.1.0/src/mem7-store/src/pipeline.rs +93 -0
  38. mem7-0.1.0/src/mem7-store/src/prompts.rs +97 -0
  39. mem7-0.1.0/src/mem7-vector/Cargo.toml +18 -0
  40. mem7-0.1.0/src/mem7-vector/src/distance.rs +61 -0
  41. mem7-0.1.0/src/mem7-vector/src/filter.rs +21 -0
  42. mem7-0.1.0/src/mem7-vector/src/index.rs +205 -0
  43. mem7-0.1.0/src/mem7-vector/src/lib.rs +47 -0
  44. mem7-0.1.0/src/mem7-vector/src/upstash.rs +351 -0
mem7-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,1918 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "anyhow"
7
+ version = "1.0.102"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
10
+
11
+ [[package]]
12
+ name = "async-trait"
13
+ version = "0.1.89"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
16
+ dependencies = [
17
+ "proc-macro2",
18
+ "quote",
19
+ "syn",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "atomic-waker"
24
+ version = "1.1.2"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
27
+
28
+ [[package]]
29
+ name = "base64"
30
+ version = "0.22.1"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
33
+
34
+ [[package]]
35
+ name = "bitflags"
36
+ version = "2.11.0"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
39
+
40
+ [[package]]
41
+ name = "bumpalo"
42
+ version = "3.20.2"
43
+ source = "registry+https://github.com/rust-lang/crates.io-index"
44
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
45
+
46
+ [[package]]
47
+ name = "bytes"
48
+ version = "1.11.1"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
51
+
52
+ [[package]]
53
+ name = "cc"
54
+ version = "1.2.56"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
57
+ dependencies = [
58
+ "find-msvc-tools",
59
+ "shlex",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "cfg-if"
64
+ version = "1.0.4"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
67
+
68
+ [[package]]
69
+ name = "cfg_aliases"
70
+ version = "0.2.1"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
73
+
74
+ [[package]]
75
+ name = "crossbeam-channel"
76
+ version = "0.5.15"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
79
+ dependencies = [
80
+ "crossbeam-utils",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "crossbeam-utils"
85
+ version = "0.8.21"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
88
+
89
+ [[package]]
90
+ name = "displaydoc"
91
+ version = "0.2.5"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
94
+ dependencies = [
95
+ "proc-macro2",
96
+ "quote",
97
+ "syn",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "equivalent"
102
+ version = "1.0.2"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
105
+
106
+ [[package]]
107
+ name = "errno"
108
+ version = "0.3.14"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
111
+ dependencies = [
112
+ "libc",
113
+ "windows-sys 0.61.2",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "fallible-iterator"
118
+ version = "0.3.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
121
+
122
+ [[package]]
123
+ name = "fallible-streaming-iterator"
124
+ version = "0.1.9"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
127
+
128
+ [[package]]
129
+ name = "find-msvc-tools"
130
+ version = "0.1.9"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
133
+
134
+ [[package]]
135
+ name = "foldhash"
136
+ version = "0.1.5"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
139
+
140
+ [[package]]
141
+ name = "form_urlencoded"
142
+ version = "1.2.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
145
+ dependencies = [
146
+ "percent-encoding",
147
+ ]
148
+
149
+ [[package]]
150
+ name = "futures-channel"
151
+ version = "0.3.32"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
154
+ dependencies = [
155
+ "futures-core",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "futures-core"
160
+ version = "0.3.32"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
163
+
164
+ [[package]]
165
+ name = "futures-task"
166
+ version = "0.3.32"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
169
+
170
+ [[package]]
171
+ name = "futures-util"
172
+ version = "0.3.32"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
175
+ dependencies = [
176
+ "futures-core",
177
+ "futures-task",
178
+ "pin-project-lite",
179
+ "slab",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "getrandom"
184
+ version = "0.2.17"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
187
+ dependencies = [
188
+ "cfg-if",
189
+ "js-sys",
190
+ "libc",
191
+ "wasi",
192
+ "wasm-bindgen",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "getrandom"
197
+ version = "0.3.4"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
200
+ dependencies = [
201
+ "cfg-if",
202
+ "js-sys",
203
+ "libc",
204
+ "r-efi 5.3.0",
205
+ "wasip2",
206
+ "wasm-bindgen",
207
+ ]
208
+
209
+ [[package]]
210
+ name = "getrandom"
211
+ version = "0.4.2"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
214
+ dependencies = [
215
+ "cfg-if",
216
+ "libc",
217
+ "r-efi 6.0.0",
218
+ "wasip2",
219
+ "wasip3",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "hashbrown"
224
+ version = "0.15.5"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
227
+ dependencies = [
228
+ "foldhash",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "hashbrown"
233
+ version = "0.16.1"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
236
+
237
+ [[package]]
238
+ name = "hashlink"
239
+ version = "0.10.0"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
242
+ dependencies = [
243
+ "hashbrown 0.15.5",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "heck"
248
+ version = "0.5.0"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
251
+
252
+ [[package]]
253
+ name = "http"
254
+ version = "1.4.0"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
257
+ dependencies = [
258
+ "bytes",
259
+ "itoa",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "http-body"
264
+ version = "1.0.1"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
267
+ dependencies = [
268
+ "bytes",
269
+ "http",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "http-body-util"
274
+ version = "0.1.3"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
277
+ dependencies = [
278
+ "bytes",
279
+ "futures-core",
280
+ "http",
281
+ "http-body",
282
+ "pin-project-lite",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "httparse"
287
+ version = "1.10.1"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
290
+
291
+ [[package]]
292
+ name = "hyper"
293
+ version = "1.8.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
296
+ dependencies = [
297
+ "atomic-waker",
298
+ "bytes",
299
+ "futures-channel",
300
+ "futures-core",
301
+ "http",
302
+ "http-body",
303
+ "httparse",
304
+ "itoa",
305
+ "pin-project-lite",
306
+ "pin-utils",
307
+ "smallvec",
308
+ "tokio",
309
+ "want",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "hyper-rustls"
314
+ version = "0.27.7"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
317
+ dependencies = [
318
+ "http",
319
+ "hyper",
320
+ "hyper-util",
321
+ "rustls",
322
+ "rustls-pki-types",
323
+ "tokio",
324
+ "tokio-rustls",
325
+ "tower-service",
326
+ "webpki-roots",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "hyper-util"
331
+ version = "0.1.20"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
334
+ dependencies = [
335
+ "base64",
336
+ "bytes",
337
+ "futures-channel",
338
+ "futures-util",
339
+ "http",
340
+ "http-body",
341
+ "hyper",
342
+ "ipnet",
343
+ "libc",
344
+ "percent-encoding",
345
+ "pin-project-lite",
346
+ "socket2",
347
+ "tokio",
348
+ "tower-service",
349
+ "tracing",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "icu_collections"
354
+ version = "2.1.1"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
357
+ dependencies = [
358
+ "displaydoc",
359
+ "potential_utf",
360
+ "yoke",
361
+ "zerofrom",
362
+ "zerovec",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "icu_locale_core"
367
+ version = "2.1.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
370
+ dependencies = [
371
+ "displaydoc",
372
+ "litemap",
373
+ "tinystr",
374
+ "writeable",
375
+ "zerovec",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "icu_normalizer"
380
+ version = "2.1.1"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
383
+ dependencies = [
384
+ "icu_collections",
385
+ "icu_normalizer_data",
386
+ "icu_properties",
387
+ "icu_provider",
388
+ "smallvec",
389
+ "zerovec",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "icu_normalizer_data"
394
+ version = "2.1.1"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
397
+
398
+ [[package]]
399
+ name = "icu_properties"
400
+ version = "2.1.2"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
403
+ dependencies = [
404
+ "icu_collections",
405
+ "icu_locale_core",
406
+ "icu_properties_data",
407
+ "icu_provider",
408
+ "zerotrie",
409
+ "zerovec",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "icu_properties_data"
414
+ version = "2.1.2"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
417
+
418
+ [[package]]
419
+ name = "icu_provider"
420
+ version = "2.1.1"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
423
+ dependencies = [
424
+ "displaydoc",
425
+ "icu_locale_core",
426
+ "writeable",
427
+ "yoke",
428
+ "zerofrom",
429
+ "zerotrie",
430
+ "zerovec",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "id-arena"
435
+ version = "2.3.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
438
+
439
+ [[package]]
440
+ name = "idna"
441
+ version = "1.1.0"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
444
+ dependencies = [
445
+ "idna_adapter",
446
+ "smallvec",
447
+ "utf8_iter",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "idna_adapter"
452
+ version = "1.2.1"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
455
+ dependencies = [
456
+ "icu_normalizer",
457
+ "icu_properties",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "indexmap"
462
+ version = "2.13.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
465
+ dependencies = [
466
+ "equivalent",
467
+ "hashbrown 0.16.1",
468
+ "serde",
469
+ "serde_core",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "ipnet"
474
+ version = "2.12.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
477
+
478
+ [[package]]
479
+ name = "iri-string"
480
+ version = "0.7.10"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
483
+ dependencies = [
484
+ "memchr",
485
+ "serde",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "itoa"
490
+ version = "1.0.17"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
493
+
494
+ [[package]]
495
+ name = "js-sys"
496
+ version = "0.3.91"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
499
+ dependencies = [
500
+ "once_cell",
501
+ "wasm-bindgen",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "leb128fmt"
506
+ version = "0.1.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
509
+
510
+ [[package]]
511
+ name = "libc"
512
+ version = "0.2.183"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
515
+
516
+ [[package]]
517
+ name = "libsqlite3-sys"
518
+ version = "0.35.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f"
521
+ dependencies = [
522
+ "cc",
523
+ "pkg-config",
524
+ "vcpkg",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "litemap"
529
+ version = "0.8.1"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
532
+
533
+ [[package]]
534
+ name = "lock_api"
535
+ version = "0.4.14"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
538
+ dependencies = [
539
+ "scopeguard",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "log"
544
+ version = "0.4.29"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
547
+
548
+ [[package]]
549
+ name = "lru-slab"
550
+ version = "0.1.2"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
553
+
554
+ [[package]]
555
+ name = "mem7-config"
556
+ version = "0.1.0"
557
+ dependencies = [
558
+ "serde",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "mem7-core"
563
+ version = "0.1.0"
564
+ dependencies = [
565
+ "mem7-config",
566
+ "mem7-error",
567
+ "serde",
568
+ "serde_json",
569
+ "uuid",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "mem7-dedup"
574
+ version = "0.1.0"
575
+ dependencies = [
576
+ "mem7-core",
577
+ "mem7-error",
578
+ "serde",
579
+ "serde_json",
580
+ "tracing",
581
+ "uuid",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "mem7-embedding"
586
+ version = "0.1.0"
587
+ dependencies = [
588
+ "async-trait",
589
+ "mem7-config",
590
+ "mem7-core",
591
+ "mem7-error",
592
+ "reqwest",
593
+ "serde",
594
+ "serde_json",
595
+ "tokio",
596
+ "tracing",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "mem7-error"
601
+ version = "0.1.0"
602
+ dependencies = [
603
+ "reqwest",
604
+ "rusqlite",
605
+ "serde_json",
606
+ "thiserror",
607
+ "tokio-rusqlite",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "mem7-history"
612
+ version = "0.1.0"
613
+ dependencies = [
614
+ "mem7-core",
615
+ "mem7-error",
616
+ "rusqlite",
617
+ "tokio-rusqlite",
618
+ "tracing",
619
+ "uuid",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "mem7-llm"
624
+ version = "0.1.0"
625
+ dependencies = [
626
+ "async-trait",
627
+ "mem7-config",
628
+ "mem7-core",
629
+ "mem7-error",
630
+ "reqwest",
631
+ "serde",
632
+ "serde_json",
633
+ "tokio",
634
+ "tracing",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "mem7-python"
639
+ version = "0.1.0"
640
+ dependencies = [
641
+ "mem7-config",
642
+ "mem7-core",
643
+ "mem7-error",
644
+ "mem7-store",
645
+ "pyo3",
646
+ "serde_json",
647
+ "tokio",
648
+ "uuid",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "mem7-store"
653
+ version = "0.1.0"
654
+ dependencies = [
655
+ "async-trait",
656
+ "mem7-config",
657
+ "mem7-core",
658
+ "mem7-dedup",
659
+ "mem7-embedding",
660
+ "mem7-error",
661
+ "mem7-history",
662
+ "mem7-llm",
663
+ "mem7-vector",
664
+ "serde",
665
+ "serde_json",
666
+ "tokio",
667
+ "tracing",
668
+ "uuid",
669
+ ]
670
+
671
+ [[package]]
672
+ name = "mem7-vector"
673
+ version = "0.1.0"
674
+ dependencies = [
675
+ "async-trait",
676
+ "mem7-core",
677
+ "mem7-error",
678
+ "reqwest",
679
+ "serde",
680
+ "serde_json",
681
+ "tokio",
682
+ "tracing",
683
+ "uuid",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "memchr"
688
+ version = "2.8.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
691
+
692
+ [[package]]
693
+ name = "mio"
694
+ version = "1.1.1"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
697
+ dependencies = [
698
+ "libc",
699
+ "wasi",
700
+ "windows-sys 0.61.2",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "once_cell"
705
+ version = "1.21.3"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
708
+
709
+ [[package]]
710
+ name = "parking_lot"
711
+ version = "0.12.5"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
714
+ dependencies = [
715
+ "lock_api",
716
+ "parking_lot_core",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "parking_lot_core"
721
+ version = "0.9.12"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
724
+ dependencies = [
725
+ "cfg-if",
726
+ "libc",
727
+ "redox_syscall",
728
+ "smallvec",
729
+ "windows-link",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "percent-encoding"
734
+ version = "2.3.2"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
737
+
738
+ [[package]]
739
+ name = "pin-project-lite"
740
+ version = "0.2.17"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
743
+
744
+ [[package]]
745
+ name = "pin-utils"
746
+ version = "0.1.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
749
+
750
+ [[package]]
751
+ name = "pkg-config"
752
+ version = "0.3.32"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
755
+
756
+ [[package]]
757
+ name = "portable-atomic"
758
+ version = "1.13.1"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
761
+
762
+ [[package]]
763
+ name = "potential_utf"
764
+ version = "0.1.4"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
767
+ dependencies = [
768
+ "zerovec",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "ppv-lite86"
773
+ version = "0.2.21"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
776
+ dependencies = [
777
+ "zerocopy",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "prettyplease"
782
+ version = "0.2.37"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
785
+ dependencies = [
786
+ "proc-macro2",
787
+ "syn",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "proc-macro2"
792
+ version = "1.0.106"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
795
+ dependencies = [
796
+ "unicode-ident",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "pyo3"
801
+ version = "0.28.2"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
804
+ dependencies = [
805
+ "libc",
806
+ "once_cell",
807
+ "portable-atomic",
808
+ "pyo3-build-config",
809
+ "pyo3-ffi",
810
+ "pyo3-macros",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "pyo3-build-config"
815
+ version = "0.28.2"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
818
+ dependencies = [
819
+ "target-lexicon",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "pyo3-ffi"
824
+ version = "0.28.2"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
827
+ dependencies = [
828
+ "libc",
829
+ "pyo3-build-config",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "pyo3-macros"
834
+ version = "0.28.2"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
837
+ dependencies = [
838
+ "proc-macro2",
839
+ "pyo3-macros-backend",
840
+ "quote",
841
+ "syn",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "pyo3-macros-backend"
846
+ version = "0.28.2"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
849
+ dependencies = [
850
+ "heck",
851
+ "proc-macro2",
852
+ "pyo3-build-config",
853
+ "quote",
854
+ "syn",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "quinn"
859
+ version = "0.11.9"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
862
+ dependencies = [
863
+ "bytes",
864
+ "cfg_aliases",
865
+ "pin-project-lite",
866
+ "quinn-proto",
867
+ "quinn-udp",
868
+ "rustc-hash",
869
+ "rustls",
870
+ "socket2",
871
+ "thiserror",
872
+ "tokio",
873
+ "tracing",
874
+ "web-time",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "quinn-proto"
879
+ version = "0.11.13"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
882
+ dependencies = [
883
+ "bytes",
884
+ "getrandom 0.3.4",
885
+ "lru-slab",
886
+ "rand",
887
+ "ring",
888
+ "rustc-hash",
889
+ "rustls",
890
+ "rustls-pki-types",
891
+ "slab",
892
+ "thiserror",
893
+ "tinyvec",
894
+ "tracing",
895
+ "web-time",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "quinn-udp"
900
+ version = "0.5.14"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
903
+ dependencies = [
904
+ "cfg_aliases",
905
+ "libc",
906
+ "once_cell",
907
+ "socket2",
908
+ "tracing",
909
+ "windows-sys 0.52.0",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "quote"
914
+ version = "1.0.45"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
917
+ dependencies = [
918
+ "proc-macro2",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "r-efi"
923
+ version = "5.3.0"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
926
+
927
+ [[package]]
928
+ name = "r-efi"
929
+ version = "6.0.0"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
932
+
933
+ [[package]]
934
+ name = "rand"
935
+ version = "0.9.2"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
938
+ dependencies = [
939
+ "rand_chacha",
940
+ "rand_core",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "rand_chacha"
945
+ version = "0.9.0"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
948
+ dependencies = [
949
+ "ppv-lite86",
950
+ "rand_core",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "rand_core"
955
+ version = "0.9.5"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
958
+ dependencies = [
959
+ "getrandom 0.3.4",
960
+ ]
961
+
962
+ [[package]]
963
+ name = "redox_syscall"
964
+ version = "0.5.18"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
967
+ dependencies = [
968
+ "bitflags",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "reqwest"
973
+ version = "0.12.28"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
976
+ dependencies = [
977
+ "base64",
978
+ "bytes",
979
+ "futures-core",
980
+ "http",
981
+ "http-body",
982
+ "http-body-util",
983
+ "hyper",
984
+ "hyper-rustls",
985
+ "hyper-util",
986
+ "js-sys",
987
+ "log",
988
+ "percent-encoding",
989
+ "pin-project-lite",
990
+ "quinn",
991
+ "rustls",
992
+ "rustls-pki-types",
993
+ "serde",
994
+ "serde_json",
995
+ "serde_urlencoded",
996
+ "sync_wrapper",
997
+ "tokio",
998
+ "tokio-rustls",
999
+ "tower",
1000
+ "tower-http",
1001
+ "tower-service",
1002
+ "url",
1003
+ "wasm-bindgen",
1004
+ "wasm-bindgen-futures",
1005
+ "web-sys",
1006
+ "webpki-roots",
1007
+ ]
1008
+
1009
+ [[package]]
1010
+ name = "ring"
1011
+ version = "0.17.14"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1014
+ dependencies = [
1015
+ "cc",
1016
+ "cfg-if",
1017
+ "getrandom 0.2.17",
1018
+ "libc",
1019
+ "untrusted",
1020
+ "windows-sys 0.52.0",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "rusqlite"
1025
+ version = "0.37.0"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f"
1028
+ dependencies = [
1029
+ "bitflags",
1030
+ "fallible-iterator",
1031
+ "fallible-streaming-iterator",
1032
+ "hashlink",
1033
+ "libsqlite3-sys",
1034
+ "smallvec",
1035
+ ]
1036
+
1037
+ [[package]]
1038
+ name = "rustc-hash"
1039
+ version = "2.1.1"
1040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1041
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1042
+
1043
+ [[package]]
1044
+ name = "rustls"
1045
+ version = "0.23.37"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
1048
+ dependencies = [
1049
+ "once_cell",
1050
+ "ring",
1051
+ "rustls-pki-types",
1052
+ "rustls-webpki",
1053
+ "subtle",
1054
+ "zeroize",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "rustls-pki-types"
1059
+ version = "1.14.0"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1062
+ dependencies = [
1063
+ "web-time",
1064
+ "zeroize",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "rustls-webpki"
1069
+ version = "0.103.9"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1072
+ dependencies = [
1073
+ "ring",
1074
+ "rustls-pki-types",
1075
+ "untrusted",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "rustversion"
1080
+ version = "1.0.22"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1083
+
1084
+ [[package]]
1085
+ name = "ryu"
1086
+ version = "1.0.23"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1089
+
1090
+ [[package]]
1091
+ name = "scopeguard"
1092
+ version = "1.2.0"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1095
+
1096
+ [[package]]
1097
+ name = "semver"
1098
+ version = "1.0.27"
1099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1100
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1101
+
1102
+ [[package]]
1103
+ name = "serde"
1104
+ version = "1.0.228"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1107
+ dependencies = [
1108
+ "serde_core",
1109
+ "serde_derive",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "serde_core"
1114
+ version = "1.0.228"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1117
+ dependencies = [
1118
+ "serde_derive",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "serde_derive"
1123
+ version = "1.0.228"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1126
+ dependencies = [
1127
+ "proc-macro2",
1128
+ "quote",
1129
+ "syn",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "serde_json"
1134
+ version = "1.0.149"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1137
+ dependencies = [
1138
+ "itoa",
1139
+ "memchr",
1140
+ "serde",
1141
+ "serde_core",
1142
+ "zmij",
1143
+ ]
1144
+
1145
+ [[package]]
1146
+ name = "serde_urlencoded"
1147
+ version = "0.7.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1150
+ dependencies = [
1151
+ "form_urlencoded",
1152
+ "itoa",
1153
+ "ryu",
1154
+ "serde",
1155
+ ]
1156
+
1157
+ [[package]]
1158
+ name = "shlex"
1159
+ version = "1.3.0"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1162
+
1163
+ [[package]]
1164
+ name = "signal-hook-registry"
1165
+ version = "1.4.8"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1168
+ dependencies = [
1169
+ "errno",
1170
+ "libc",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "slab"
1175
+ version = "0.4.12"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1178
+
1179
+ [[package]]
1180
+ name = "smallvec"
1181
+ version = "1.15.1"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1184
+
1185
+ [[package]]
1186
+ name = "socket2"
1187
+ version = "0.6.3"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1190
+ dependencies = [
1191
+ "libc",
1192
+ "windows-sys 0.61.2",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "stable_deref_trait"
1197
+ version = "1.2.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1200
+
1201
+ [[package]]
1202
+ name = "subtle"
1203
+ version = "2.6.1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1206
+
1207
+ [[package]]
1208
+ name = "syn"
1209
+ version = "2.0.117"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1212
+ dependencies = [
1213
+ "proc-macro2",
1214
+ "quote",
1215
+ "unicode-ident",
1216
+ ]
1217
+
1218
+ [[package]]
1219
+ name = "sync_wrapper"
1220
+ version = "1.0.2"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1223
+ dependencies = [
1224
+ "futures-core",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "synstructure"
1229
+ version = "0.13.2"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1232
+ dependencies = [
1233
+ "proc-macro2",
1234
+ "quote",
1235
+ "syn",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "target-lexicon"
1240
+ version = "0.13.5"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1243
+
1244
+ [[package]]
1245
+ name = "thiserror"
1246
+ version = "2.0.18"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1249
+ dependencies = [
1250
+ "thiserror-impl",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "thiserror-impl"
1255
+ version = "2.0.18"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1258
+ dependencies = [
1259
+ "proc-macro2",
1260
+ "quote",
1261
+ "syn",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "tinystr"
1266
+ version = "0.8.2"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1269
+ dependencies = [
1270
+ "displaydoc",
1271
+ "zerovec",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "tinyvec"
1276
+ version = "1.10.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1279
+ dependencies = [
1280
+ "tinyvec_macros",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "tinyvec_macros"
1285
+ version = "0.1.1"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1288
+
1289
+ [[package]]
1290
+ name = "tokio"
1291
+ version = "1.50.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1294
+ dependencies = [
1295
+ "bytes",
1296
+ "libc",
1297
+ "mio",
1298
+ "parking_lot",
1299
+ "pin-project-lite",
1300
+ "signal-hook-registry",
1301
+ "socket2",
1302
+ "tokio-macros",
1303
+ "windows-sys 0.61.2",
1304
+ ]
1305
+
1306
+ [[package]]
1307
+ name = "tokio-macros"
1308
+ version = "2.6.1"
1309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1310
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
1311
+ dependencies = [
1312
+ "proc-macro2",
1313
+ "quote",
1314
+ "syn",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "tokio-rusqlite"
1319
+ version = "0.7.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "302563ae4a2127f3d2c105f4f2f0bd7cae3609371755600ebc148e0ccd8510d6"
1322
+ dependencies = [
1323
+ "crossbeam-channel",
1324
+ "rusqlite",
1325
+ "tokio",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "tokio-rustls"
1330
+ version = "0.26.4"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1333
+ dependencies = [
1334
+ "rustls",
1335
+ "tokio",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "tower"
1340
+ version = "0.5.3"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1343
+ dependencies = [
1344
+ "futures-core",
1345
+ "futures-util",
1346
+ "pin-project-lite",
1347
+ "sync_wrapper",
1348
+ "tokio",
1349
+ "tower-layer",
1350
+ "tower-service",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "tower-http"
1355
+ version = "0.6.8"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
1358
+ dependencies = [
1359
+ "bitflags",
1360
+ "bytes",
1361
+ "futures-util",
1362
+ "http",
1363
+ "http-body",
1364
+ "iri-string",
1365
+ "pin-project-lite",
1366
+ "tower",
1367
+ "tower-layer",
1368
+ "tower-service",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "tower-layer"
1373
+ version = "0.3.3"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1376
+
1377
+ [[package]]
1378
+ name = "tower-service"
1379
+ version = "0.3.3"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1382
+
1383
+ [[package]]
1384
+ name = "tracing"
1385
+ version = "0.1.44"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1388
+ dependencies = [
1389
+ "pin-project-lite",
1390
+ "tracing-attributes",
1391
+ "tracing-core",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "tracing-attributes"
1396
+ version = "0.1.31"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1399
+ dependencies = [
1400
+ "proc-macro2",
1401
+ "quote",
1402
+ "syn",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "tracing-core"
1407
+ version = "0.1.36"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1410
+ dependencies = [
1411
+ "once_cell",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "try-lock"
1416
+ version = "0.2.5"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1419
+
1420
+ [[package]]
1421
+ name = "unicode-ident"
1422
+ version = "1.0.24"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1425
+
1426
+ [[package]]
1427
+ name = "unicode-xid"
1428
+ version = "0.2.6"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1431
+
1432
+ [[package]]
1433
+ name = "untrusted"
1434
+ version = "0.9.0"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1437
+
1438
+ [[package]]
1439
+ name = "url"
1440
+ version = "2.5.8"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1443
+ dependencies = [
1444
+ "form_urlencoded",
1445
+ "idna",
1446
+ "percent-encoding",
1447
+ "serde",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "utf8_iter"
1452
+ version = "1.0.4"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1455
+
1456
+ [[package]]
1457
+ name = "uuid"
1458
+ version = "1.22.0"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
1461
+ dependencies = [
1462
+ "getrandom 0.4.2",
1463
+ "js-sys",
1464
+ "serde_core",
1465
+ "wasm-bindgen",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "vcpkg"
1470
+ version = "0.2.15"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1473
+
1474
+ [[package]]
1475
+ name = "want"
1476
+ version = "0.3.1"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1479
+ dependencies = [
1480
+ "try-lock",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "wasi"
1485
+ version = "0.11.1+wasi-snapshot-preview1"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1488
+
1489
+ [[package]]
1490
+ name = "wasip2"
1491
+ version = "1.0.2+wasi-0.2.9"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1494
+ dependencies = [
1495
+ "wit-bindgen",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "wasip3"
1500
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1503
+ dependencies = [
1504
+ "wit-bindgen",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "wasm-bindgen"
1509
+ version = "0.2.114"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
1512
+ dependencies = [
1513
+ "cfg-if",
1514
+ "once_cell",
1515
+ "rustversion",
1516
+ "wasm-bindgen-macro",
1517
+ "wasm-bindgen-shared",
1518
+ ]
1519
+
1520
+ [[package]]
1521
+ name = "wasm-bindgen-futures"
1522
+ version = "0.4.64"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
1525
+ dependencies = [
1526
+ "cfg-if",
1527
+ "futures-util",
1528
+ "js-sys",
1529
+ "once_cell",
1530
+ "wasm-bindgen",
1531
+ "web-sys",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "wasm-bindgen-macro"
1536
+ version = "0.2.114"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
1539
+ dependencies = [
1540
+ "quote",
1541
+ "wasm-bindgen-macro-support",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "wasm-bindgen-macro-support"
1546
+ version = "0.2.114"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
1549
+ dependencies = [
1550
+ "bumpalo",
1551
+ "proc-macro2",
1552
+ "quote",
1553
+ "syn",
1554
+ "wasm-bindgen-shared",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "wasm-bindgen-shared"
1559
+ version = "0.2.114"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
1562
+ dependencies = [
1563
+ "unicode-ident",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "wasm-encoder"
1568
+ version = "0.244.0"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1571
+ dependencies = [
1572
+ "leb128fmt",
1573
+ "wasmparser",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "wasm-metadata"
1578
+ version = "0.244.0"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1581
+ dependencies = [
1582
+ "anyhow",
1583
+ "indexmap",
1584
+ "wasm-encoder",
1585
+ "wasmparser",
1586
+ ]
1587
+
1588
+ [[package]]
1589
+ name = "wasmparser"
1590
+ version = "0.244.0"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1593
+ dependencies = [
1594
+ "bitflags",
1595
+ "hashbrown 0.15.5",
1596
+ "indexmap",
1597
+ "semver",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "web-sys"
1602
+ version = "0.3.91"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
1605
+ dependencies = [
1606
+ "js-sys",
1607
+ "wasm-bindgen",
1608
+ ]
1609
+
1610
+ [[package]]
1611
+ name = "web-time"
1612
+ version = "1.1.0"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1615
+ dependencies = [
1616
+ "js-sys",
1617
+ "wasm-bindgen",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "webpki-roots"
1622
+ version = "1.0.6"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
1625
+ dependencies = [
1626
+ "rustls-pki-types",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "windows-link"
1631
+ version = "0.2.1"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1634
+
1635
+ [[package]]
1636
+ name = "windows-sys"
1637
+ version = "0.52.0"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1640
+ dependencies = [
1641
+ "windows-targets",
1642
+ ]
1643
+
1644
+ [[package]]
1645
+ name = "windows-sys"
1646
+ version = "0.61.2"
1647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1648
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1649
+ dependencies = [
1650
+ "windows-link",
1651
+ ]
1652
+
1653
+ [[package]]
1654
+ name = "windows-targets"
1655
+ version = "0.52.6"
1656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1657
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1658
+ dependencies = [
1659
+ "windows_aarch64_gnullvm",
1660
+ "windows_aarch64_msvc",
1661
+ "windows_i686_gnu",
1662
+ "windows_i686_gnullvm",
1663
+ "windows_i686_msvc",
1664
+ "windows_x86_64_gnu",
1665
+ "windows_x86_64_gnullvm",
1666
+ "windows_x86_64_msvc",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "windows_aarch64_gnullvm"
1671
+ version = "0.52.6"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1674
+
1675
+ [[package]]
1676
+ name = "windows_aarch64_msvc"
1677
+ version = "0.52.6"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1680
+
1681
+ [[package]]
1682
+ name = "windows_i686_gnu"
1683
+ version = "0.52.6"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1686
+
1687
+ [[package]]
1688
+ name = "windows_i686_gnullvm"
1689
+ version = "0.52.6"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1692
+
1693
+ [[package]]
1694
+ name = "windows_i686_msvc"
1695
+ version = "0.52.6"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1698
+
1699
+ [[package]]
1700
+ name = "windows_x86_64_gnu"
1701
+ version = "0.52.6"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1704
+
1705
+ [[package]]
1706
+ name = "windows_x86_64_gnullvm"
1707
+ version = "0.52.6"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1710
+
1711
+ [[package]]
1712
+ name = "windows_x86_64_msvc"
1713
+ version = "0.52.6"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1716
+
1717
+ [[package]]
1718
+ name = "wit-bindgen"
1719
+ version = "0.51.0"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1722
+ dependencies = [
1723
+ "wit-bindgen-rust-macro",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "wit-bindgen-core"
1728
+ version = "0.51.0"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1731
+ dependencies = [
1732
+ "anyhow",
1733
+ "heck",
1734
+ "wit-parser",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "wit-bindgen-rust"
1739
+ version = "0.51.0"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1742
+ dependencies = [
1743
+ "anyhow",
1744
+ "heck",
1745
+ "indexmap",
1746
+ "prettyplease",
1747
+ "syn",
1748
+ "wasm-metadata",
1749
+ "wit-bindgen-core",
1750
+ "wit-component",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "wit-bindgen-rust-macro"
1755
+ version = "0.51.0"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1758
+ dependencies = [
1759
+ "anyhow",
1760
+ "prettyplease",
1761
+ "proc-macro2",
1762
+ "quote",
1763
+ "syn",
1764
+ "wit-bindgen-core",
1765
+ "wit-bindgen-rust",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "wit-component"
1770
+ version = "0.244.0"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1773
+ dependencies = [
1774
+ "anyhow",
1775
+ "bitflags",
1776
+ "indexmap",
1777
+ "log",
1778
+ "serde",
1779
+ "serde_derive",
1780
+ "serde_json",
1781
+ "wasm-encoder",
1782
+ "wasm-metadata",
1783
+ "wasmparser",
1784
+ "wit-parser",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "wit-parser"
1789
+ version = "0.244.0"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1792
+ dependencies = [
1793
+ "anyhow",
1794
+ "id-arena",
1795
+ "indexmap",
1796
+ "log",
1797
+ "semver",
1798
+ "serde",
1799
+ "serde_derive",
1800
+ "serde_json",
1801
+ "unicode-xid",
1802
+ "wasmparser",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "writeable"
1807
+ version = "0.6.2"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
1810
+
1811
+ [[package]]
1812
+ name = "yoke"
1813
+ version = "0.8.1"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
1816
+ dependencies = [
1817
+ "stable_deref_trait",
1818
+ "yoke-derive",
1819
+ "zerofrom",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "yoke-derive"
1824
+ version = "0.8.1"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
1827
+ dependencies = [
1828
+ "proc-macro2",
1829
+ "quote",
1830
+ "syn",
1831
+ "synstructure",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "zerocopy"
1836
+ version = "0.8.42"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "f2578b716f8a7a858b7f02d5bd870c14bf4ddbbcf3a4c05414ba6503640505e3"
1839
+ dependencies = [
1840
+ "zerocopy-derive",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "zerocopy-derive"
1845
+ version = "0.8.42"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "7e6cc098ea4d3bd6246687de65af3f920c430e236bee1e3bf2e441463f08a02f"
1848
+ dependencies = [
1849
+ "proc-macro2",
1850
+ "quote",
1851
+ "syn",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "zerofrom"
1856
+ version = "0.1.6"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1859
+ dependencies = [
1860
+ "zerofrom-derive",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "zerofrom-derive"
1865
+ version = "0.1.6"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1868
+ dependencies = [
1869
+ "proc-macro2",
1870
+ "quote",
1871
+ "syn",
1872
+ "synstructure",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "zeroize"
1877
+ version = "1.8.2"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1880
+
1881
+ [[package]]
1882
+ name = "zerotrie"
1883
+ version = "0.2.3"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
1886
+ dependencies = [
1887
+ "displaydoc",
1888
+ "yoke",
1889
+ "zerofrom",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "zerovec"
1894
+ version = "0.11.5"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
1897
+ dependencies = [
1898
+ "yoke",
1899
+ "zerofrom",
1900
+ "zerovec-derive",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "zerovec-derive"
1905
+ version = "0.11.2"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
1908
+ dependencies = [
1909
+ "proc-macro2",
1910
+ "quote",
1911
+ "syn",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "zmij"
1916
+ version = "1.0.21"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"