tokenfold 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 (33) hide show
  1. tokenfold-0.1.0/Cargo.lock +1380 -0
  2. tokenfold-0.1.0/Cargo.toml +23 -0
  3. tokenfold-0.1.0/PKG-INFO +252 -0
  4. tokenfold-0.1.0/README.md +239 -0
  5. tokenfold-0.1.0/crates/tokenfold-core/Cargo.toml +30 -0
  6. tokenfold-0.1.0/crates/tokenfold-core/benches/THRESHOLDS.toml +16 -0
  7. tokenfold-0.1.0/crates/tokenfold-core/benches/compression_bench.rs +227 -0
  8. tokenfold-0.1.0/crates/tokenfold-core/examples/quickstart.rs +61 -0
  9. tokenfold-0.1.0/crates/tokenfold-core/src/budget.rs +460 -0
  10. tokenfold-0.1.0/crates/tokenfold-core/src/errors.rs +47 -0
  11. tokenfold-0.1.0/crates/tokenfold-core/src/filters.rs +1441 -0
  12. tokenfold-0.1.0/crates/tokenfold-core/src/input.rs +63 -0
  13. tokenfold-0.1.0/crates/tokenfold-core/src/lib.rs +20 -0
  14. tokenfold-0.1.0/crates/tokenfold-core/src/modes.rs +287 -0
  15. tokenfold-0.1.0/crates/tokenfold-core/src/pipeline.rs +765 -0
  16. tokenfold-0.1.0/crates/tokenfold-core/src/report.rs +327 -0
  17. tokenfold-0.1.0/crates/tokenfold-core/src/retrieval_store.rs +611 -0
  18. tokenfold-0.1.0/crates/tokenfold-core/src/safety.rs +130 -0
  19. tokenfold-0.1.0/crates/tokenfold-core/src/stats.rs +1118 -0
  20. tokenfold-0.1.0/crates/tokenfold-core/src/status.rs +49 -0
  21. tokenfold-0.1.0/crates/tokenfold-core/src/token_estimator.rs +107 -0
  22. tokenfold-0.1.0/crates/tokenfold-core/src/transforms/diff.rs +250 -0
  23. tokenfold-0.1.0/crates/tokenfold-core/src/transforms/json.rs +171 -0
  24. tokenfold-0.1.0/crates/tokenfold-core/src/transforms/logs.rs +234 -0
  25. tokenfold-0.1.0/crates/tokenfold-core/src/transforms/mod.rs +11 -0
  26. tokenfold-0.1.0/crates/tokenfold-core/src/transforms/redaction.rs +256 -0
  27. tokenfold-0.1.0/crates/tokenfold-core/src/transforms/schema.rs +240 -0
  28. tokenfold-0.1.0/crates/tokenfold-core/tests/golden.rs +74 -0
  29. tokenfold-0.1.0/crates/tokenfold-core/tests/integration.rs +285 -0
  30. tokenfold-0.1.0/crates/tokenfold-core/tests/property_tests.rs +96 -0
  31. tokenfold-0.1.0/crates/tokenfold-py/Cargo.toml +28 -0
  32. tokenfold-0.1.0/crates/tokenfold-py/src/lib.rs +859 -0
  33. tokenfold-0.1.0/pyproject.toml +28 -0
@@ -0,0 +1,1380 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "1.0.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "1.0.0"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.5"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
+ dependencies = [
50
+ "windows-sys 0.61.2",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.11"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell_polyfill",
61
+ "windows-sys 0.61.2",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "anyhow"
66
+ version = "1.0.103"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
69
+
70
+ [[package]]
71
+ name = "ascii"
72
+ version = "1.1.0"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
75
+
76
+ [[package]]
77
+ name = "autocfg"
78
+ version = "1.5.1"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
81
+
82
+ [[package]]
83
+ name = "base64"
84
+ version = "0.22.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
87
+
88
+ [[package]]
89
+ name = "base64ct"
90
+ version = "1.8.3"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
93
+
94
+ [[package]]
95
+ name = "bit-set"
96
+ version = "0.5.3"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
99
+ dependencies = [
100
+ "bit-vec 0.6.3",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "bit-set"
105
+ version = "0.8.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
108
+ dependencies = [
109
+ "bit-vec 0.8.0",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "bit-vec"
114
+ version = "0.6.3"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
117
+
118
+ [[package]]
119
+ name = "bit-vec"
120
+ version = "0.8.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
123
+
124
+ [[package]]
125
+ name = "bitflags"
126
+ version = "2.13.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
129
+
130
+ [[package]]
131
+ name = "block-buffer"
132
+ version = "0.10.4"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
135
+ dependencies = [
136
+ "generic-array",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "bstr"
141
+ version = "1.12.3"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "5cee35f73844aa3014bb606320a6c1f010249dbdf43342fe54b5a4f6a8ed4b79"
144
+ dependencies = [
145
+ "memchr",
146
+ "regex-automata",
147
+ "serde_core",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "bytes"
152
+ version = "1.12.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
155
+
156
+ [[package]]
157
+ name = "cc"
158
+ version = "1.2.67"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
161
+ dependencies = [
162
+ "find-msvc-tools",
163
+ "shlex",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "cfg-if"
168
+ version = "1.0.4"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
171
+
172
+ [[package]]
173
+ name = "chunked_transfer"
174
+ version = "1.5.0"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
177
+
178
+ [[package]]
179
+ name = "clap"
180
+ version = "4.6.1"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
183
+ dependencies = [
184
+ "clap_builder",
185
+ "clap_derive",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "clap_builder"
190
+ version = "4.6.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
193
+ dependencies = [
194
+ "anstream",
195
+ "anstyle",
196
+ "clap_lex",
197
+ "strsim",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "clap_derive"
202
+ version = "4.6.1"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
205
+ dependencies = [
206
+ "heck",
207
+ "proc-macro2",
208
+ "quote",
209
+ "syn",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "clap_lex"
214
+ version = "1.1.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
217
+
218
+ [[package]]
219
+ name = "colorchoice"
220
+ version = "1.0.5"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
223
+
224
+ [[package]]
225
+ name = "const-oid"
226
+ version = "0.9.6"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
229
+
230
+ [[package]]
231
+ name = "cpufeatures"
232
+ version = "0.2.17"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
235
+ dependencies = [
236
+ "libc",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "crypto-common"
241
+ version = "0.1.7"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
244
+ dependencies = [
245
+ "generic-array",
246
+ "typenum",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "curve25519-dalek"
251
+ version = "4.1.3"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
254
+ dependencies = [
255
+ "cfg-if",
256
+ "cpufeatures",
257
+ "curve25519-dalek-derive",
258
+ "digest",
259
+ "fiat-crypto",
260
+ "rustc_version",
261
+ "subtle",
262
+ "zeroize",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "curve25519-dalek-derive"
267
+ version = "0.1.1"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
270
+ dependencies = [
271
+ "proc-macro2",
272
+ "quote",
273
+ "syn",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "der"
278
+ version = "0.7.10"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
281
+ dependencies = [
282
+ "const-oid",
283
+ "zeroize",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "digest"
288
+ version = "0.10.7"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
291
+ dependencies = [
292
+ "block-buffer",
293
+ "crypto-common",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "ed25519"
298
+ version = "2.2.3"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
301
+ dependencies = [
302
+ "pkcs8",
303
+ "signature",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "ed25519-dalek"
308
+ version = "2.2.0"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
311
+ dependencies = [
312
+ "curve25519-dalek",
313
+ "ed25519",
314
+ "serde",
315
+ "sha2",
316
+ "subtle",
317
+ "zeroize",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "equivalent"
322
+ version = "1.0.2"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
325
+
326
+ [[package]]
327
+ name = "errno"
328
+ version = "0.3.14"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
331
+ dependencies = [
332
+ "libc",
333
+ "windows-sys 0.61.2",
334
+ ]
335
+
336
+ [[package]]
337
+ name = "fancy-regex"
338
+ version = "0.13.0"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "531e46835a22af56d1e3b66f04844bed63158bc094a628bec1d321d9b4c44bf2"
341
+ dependencies = [
342
+ "bit-set 0.5.3",
343
+ "regex-automata",
344
+ "regex-syntax",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "fastrand"
349
+ version = "2.4.1"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
352
+
353
+ [[package]]
354
+ name = "fiat-crypto"
355
+ version = "0.2.9"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
358
+
359
+ [[package]]
360
+ name = "find-msvc-tools"
361
+ version = "0.1.9"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
364
+
365
+ [[package]]
366
+ name = "fnv"
367
+ version = "1.0.7"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
370
+
371
+ [[package]]
372
+ name = "generic-array"
373
+ version = "0.14.7"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
376
+ dependencies = [
377
+ "typenum",
378
+ "version_check",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "getrandom"
383
+ version = "0.2.17"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
386
+ dependencies = [
387
+ "cfg-if",
388
+ "libc",
389
+ "wasi",
390
+ ]
391
+
392
+ [[package]]
393
+ name = "getrandom"
394
+ version = "0.3.4"
395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
396
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
397
+ dependencies = [
398
+ "cfg-if",
399
+ "libc",
400
+ "r-efi 5.3.0",
401
+ "wasip2",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "getrandom"
406
+ version = "0.4.3"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
409
+ dependencies = [
410
+ "cfg-if",
411
+ "libc",
412
+ "r-efi 6.0.0",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "hashbrown"
417
+ version = "0.17.1"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
420
+
421
+ [[package]]
422
+ name = "heck"
423
+ version = "0.5.0"
424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
425
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
426
+
427
+ [[package]]
428
+ name = "http"
429
+ version = "1.4.2"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
432
+ dependencies = [
433
+ "bytes",
434
+ "itoa",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "httparse"
439
+ version = "1.10.1"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
442
+
443
+ [[package]]
444
+ name = "httpdate"
445
+ version = "1.0.3"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
448
+
449
+ [[package]]
450
+ name = "indexmap"
451
+ version = "2.14.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
454
+ dependencies = [
455
+ "equivalent",
456
+ "hashbrown",
457
+ ]
458
+
459
+ [[package]]
460
+ name = "is_terminal_polyfill"
461
+ version = "1.70.2"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
464
+
465
+ [[package]]
466
+ name = "itoa"
467
+ version = "1.0.18"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
470
+
471
+ [[package]]
472
+ name = "lazy_static"
473
+ version = "1.5.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
476
+
477
+ [[package]]
478
+ name = "libc"
479
+ version = "0.2.186"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
482
+
483
+ [[package]]
484
+ name = "linux-raw-sys"
485
+ version = "0.12.1"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
488
+
489
+ [[package]]
490
+ name = "log"
491
+ version = "0.4.33"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
494
+
495
+ [[package]]
496
+ name = "memchr"
497
+ version = "2.8.3"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
500
+
501
+ [[package]]
502
+ name = "num-traits"
503
+ version = "0.2.19"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
506
+ dependencies = [
507
+ "autocfg",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "once_cell"
512
+ version = "1.21.4"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
515
+
516
+ [[package]]
517
+ name = "once_cell_polyfill"
518
+ version = "1.70.2"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
521
+
522
+ [[package]]
523
+ name = "percent-encoding"
524
+ version = "2.3.2"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
527
+
528
+ [[package]]
529
+ name = "pkcs8"
530
+ version = "0.10.2"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
533
+ dependencies = [
534
+ "der",
535
+ "spki",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "portable-atomic"
540
+ version = "1.13.1"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
543
+
544
+ [[package]]
545
+ name = "ppv-lite86"
546
+ version = "0.2.21"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
549
+ dependencies = [
550
+ "zerocopy",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "proc-macro2"
555
+ version = "1.0.106"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
558
+ dependencies = [
559
+ "unicode-ident",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "proptest"
564
+ version = "1.11.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
567
+ dependencies = [
568
+ "bit-set 0.8.0",
569
+ "bit-vec 0.8.0",
570
+ "bitflags",
571
+ "num-traits",
572
+ "rand",
573
+ "rand_chacha",
574
+ "rand_xorshift",
575
+ "regex-syntax",
576
+ "rusty-fork",
577
+ "tempfile",
578
+ "unarray",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "pyo3"
583
+ version = "0.29.0"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
586
+ dependencies = [
587
+ "libc",
588
+ "once_cell",
589
+ "portable-atomic",
590
+ "pyo3-build-config",
591
+ "pyo3-ffi",
592
+ "pyo3-macros",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "pyo3-build-config"
597
+ version = "0.29.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
600
+ dependencies = [
601
+ "target-lexicon",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "pyo3-ffi"
606
+ version = "0.29.0"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
609
+ dependencies = [
610
+ "libc",
611
+ "pyo3-build-config",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "pyo3-macros"
616
+ version = "0.29.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
619
+ dependencies = [
620
+ "proc-macro2",
621
+ "pyo3-macros-backend",
622
+ "quote",
623
+ "syn",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "pyo3-macros-backend"
628
+ version = "0.29.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
631
+ dependencies = [
632
+ "heck",
633
+ "proc-macro2",
634
+ "quote",
635
+ "syn",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "quick-error"
640
+ version = "1.2.3"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
643
+
644
+ [[package]]
645
+ name = "quote"
646
+ version = "1.0.46"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
649
+ dependencies = [
650
+ "proc-macro2",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "r-efi"
655
+ version = "5.3.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
658
+
659
+ [[package]]
660
+ name = "r-efi"
661
+ version = "6.0.0"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
664
+
665
+ [[package]]
666
+ name = "rand"
667
+ version = "0.9.5"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
670
+ dependencies = [
671
+ "rand_chacha",
672
+ "rand_core 0.9.5",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "rand_chacha"
677
+ version = "0.9.0"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
680
+ dependencies = [
681
+ "ppv-lite86",
682
+ "rand_core 0.9.5",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "rand_core"
687
+ version = "0.6.4"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
690
+ dependencies = [
691
+ "getrandom 0.2.17",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "rand_core"
696
+ version = "0.9.5"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
699
+ dependencies = [
700
+ "getrandom 0.3.4",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "rand_xorshift"
705
+ version = "0.4.0"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
708
+ dependencies = [
709
+ "rand_core 0.9.5",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "regex"
714
+ version = "1.13.0"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
717
+ dependencies = [
718
+ "aho-corasick",
719
+ "memchr",
720
+ "regex-automata",
721
+ "regex-syntax",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "regex-automata"
726
+ version = "0.4.15"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
729
+ dependencies = [
730
+ "aho-corasick",
731
+ "memchr",
732
+ "regex-syntax",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "regex-syntax"
737
+ version = "0.8.11"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
740
+
741
+ [[package]]
742
+ name = "ring"
743
+ version = "0.17.14"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
746
+ dependencies = [
747
+ "cc",
748
+ "cfg-if",
749
+ "getrandom 0.2.17",
750
+ "libc",
751
+ "untrusted",
752
+ "windows-sys 0.52.0",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "rustc-hash"
757
+ version = "1.1.0"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
760
+
761
+ [[package]]
762
+ name = "rustc_version"
763
+ version = "0.4.1"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
766
+ dependencies = [
767
+ "semver",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "rustix"
772
+ version = "1.1.4"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
775
+ dependencies = [
776
+ "bitflags",
777
+ "errno",
778
+ "libc",
779
+ "linux-raw-sys",
780
+ "windows-sys 0.61.2",
781
+ ]
782
+
783
+ [[package]]
784
+ name = "rustls"
785
+ version = "0.23.41"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
788
+ dependencies = [
789
+ "log",
790
+ "once_cell",
791
+ "ring",
792
+ "rustls-pki-types",
793
+ "rustls-webpki",
794
+ "subtle",
795
+ "zeroize",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "rustls-pki-types"
800
+ version = "1.15.0"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
803
+ dependencies = [
804
+ "zeroize",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "rustls-webpki"
809
+ version = "0.103.13"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
812
+ dependencies = [
813
+ "ring",
814
+ "rustls-pki-types",
815
+ "untrusted",
816
+ ]
817
+
818
+ [[package]]
819
+ name = "rusty-fork"
820
+ version = "0.3.1"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
823
+ dependencies = [
824
+ "fnv",
825
+ "quick-error",
826
+ "tempfile",
827
+ "wait-timeout",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "semver"
832
+ version = "1.0.28"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
835
+
836
+ [[package]]
837
+ name = "serde"
838
+ version = "1.0.228"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
841
+ dependencies = [
842
+ "serde_core",
843
+ "serde_derive",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "serde_core"
848
+ version = "1.0.228"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
851
+ dependencies = [
852
+ "serde_derive",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "serde_derive"
857
+ version = "1.0.228"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
860
+ dependencies = [
861
+ "proc-macro2",
862
+ "quote",
863
+ "syn",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "serde_json"
868
+ version = "1.0.150"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
871
+ dependencies = [
872
+ "indexmap",
873
+ "itoa",
874
+ "memchr",
875
+ "serde",
876
+ "serde_core",
877
+ "zmij",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "serde_spanned"
882
+ version = "0.6.9"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
885
+ dependencies = [
886
+ "serde",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "sha2"
891
+ version = "0.10.9"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
894
+ dependencies = [
895
+ "cfg-if",
896
+ "cpufeatures",
897
+ "digest",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "shlex"
902
+ version = "2.0.1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
905
+
906
+ [[package]]
907
+ name = "signature"
908
+ version = "2.2.0"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
911
+ dependencies = [
912
+ "rand_core 0.6.4",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "spki"
917
+ version = "0.7.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
920
+ dependencies = [
921
+ "base64ct",
922
+ "der",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "strsim"
927
+ version = "0.11.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
930
+
931
+ [[package]]
932
+ name = "subtle"
933
+ version = "2.6.1"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
936
+
937
+ [[package]]
938
+ name = "syn"
939
+ version = "2.0.118"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
942
+ dependencies = [
943
+ "proc-macro2",
944
+ "quote",
945
+ "unicode-ident",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "target-lexicon"
950
+ version = "0.13.5"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
953
+
954
+ [[package]]
955
+ name = "tempfile"
956
+ version = "3.27.0"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
959
+ dependencies = [
960
+ "fastrand",
961
+ "getrandom 0.4.3",
962
+ "once_cell",
963
+ "rustix",
964
+ "windows-sys 0.61.2",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "thiserror"
969
+ version = "1.0.69"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
972
+ dependencies = [
973
+ "thiserror-impl",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "thiserror-impl"
978
+ version = "1.0.69"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
981
+ dependencies = [
982
+ "proc-macro2",
983
+ "quote",
984
+ "syn",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "tiktoken-rs"
989
+ version = "0.7.0"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "25563eeba904d770acf527e8b370fe9a5547bacd20ff84a0b6c3bc41288e5625"
992
+ dependencies = [
993
+ "anyhow",
994
+ "base64",
995
+ "bstr",
996
+ "fancy-regex",
997
+ "lazy_static",
998
+ "regex",
999
+ "rustc-hash",
1000
+ ]
1001
+
1002
+ [[package]]
1003
+ name = "tiny_http"
1004
+ version = "0.12.0"
1005
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1006
+ checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
1007
+ dependencies = [
1008
+ "ascii",
1009
+ "chunked_transfer",
1010
+ "httpdate",
1011
+ "log",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "tokenfold-adapters"
1016
+ version = "0.1.0"
1017
+ dependencies = [
1018
+ "serde",
1019
+ "serde_json",
1020
+ "tokenfold-core",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "tokenfold-admin"
1025
+ version = "0.1.0"
1026
+ dependencies = [
1027
+ "ed25519-dalek",
1028
+ "serde",
1029
+ "serde_json",
1030
+ "sha2",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "tokenfold-cli"
1035
+ version = "0.1.0"
1036
+ dependencies = [
1037
+ "clap",
1038
+ "serde",
1039
+ "serde_json",
1040
+ "tokenfold-core",
1041
+ "tokenfold-learn",
1042
+ "tokenfold-output",
1043
+ "toml",
1044
+ ]
1045
+
1046
+ [[package]]
1047
+ name = "tokenfold-core"
1048
+ version = "0.1.0"
1049
+ dependencies = [
1050
+ "proptest",
1051
+ "regex",
1052
+ "serde",
1053
+ "serde_json",
1054
+ "sha2",
1055
+ "thiserror",
1056
+ "tiktoken-rs",
1057
+ "toml",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "tokenfold-image"
1062
+ version = "0.1.0"
1063
+
1064
+ [[package]]
1065
+ name = "tokenfold-learn"
1066
+ version = "0.1.0"
1067
+ dependencies = [
1068
+ "tokenfold-core",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "tokenfold-output"
1073
+ version = "0.1.0"
1074
+ dependencies = [
1075
+ "tokenfold-core",
1076
+ ]
1077
+
1078
+ [[package]]
1079
+ name = "tokenfold-proxy"
1080
+ version = "0.1.0"
1081
+ dependencies = [
1082
+ "clap",
1083
+ "serde",
1084
+ "serde_json",
1085
+ "tiny_http",
1086
+ "tokenfold-core",
1087
+ "ureq",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "tokenfold-py"
1092
+ version = "0.1.0"
1093
+ dependencies = [
1094
+ "pyo3",
1095
+ "serde_json",
1096
+ "tokenfold-core",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "tokenfold-rag"
1101
+ version = "0.1.0"
1102
+
1103
+ [[package]]
1104
+ name = "toml"
1105
+ version = "0.8.23"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1108
+ dependencies = [
1109
+ "serde",
1110
+ "serde_spanned",
1111
+ "toml_datetime",
1112
+ "toml_edit",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "toml_datetime"
1117
+ version = "0.6.11"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1120
+ dependencies = [
1121
+ "serde",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "toml_edit"
1126
+ version = "0.22.27"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1129
+ dependencies = [
1130
+ "indexmap",
1131
+ "serde",
1132
+ "serde_spanned",
1133
+ "toml_datetime",
1134
+ "toml_write",
1135
+ "winnow",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "toml_write"
1140
+ version = "0.1.2"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1143
+
1144
+ [[package]]
1145
+ name = "typenum"
1146
+ version = "1.20.1"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1149
+
1150
+ [[package]]
1151
+ name = "unarray"
1152
+ version = "0.1.4"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1155
+
1156
+ [[package]]
1157
+ name = "unicode-ident"
1158
+ version = "1.0.24"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1161
+
1162
+ [[package]]
1163
+ name = "untrusted"
1164
+ version = "0.9.0"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1167
+
1168
+ [[package]]
1169
+ name = "ureq"
1170
+ version = "3.3.0"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "dea7109cdcd5864d4eeb1b58a1648dc9bf520360d7af16ec26d0a9354bafcfc0"
1173
+ dependencies = [
1174
+ "base64",
1175
+ "log",
1176
+ "percent-encoding",
1177
+ "rustls",
1178
+ "rustls-pki-types",
1179
+ "ureq-proto",
1180
+ "utf8-zero",
1181
+ "webpki-roots",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "ureq-proto"
1186
+ version = "0.6.0"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "e994ba84b0bd1b1b0cf92878b7ef898a5c1760108fe7b6010327e274917a808c"
1189
+ dependencies = [
1190
+ "base64",
1191
+ "http",
1192
+ "httparse",
1193
+ "log",
1194
+ ]
1195
+
1196
+ [[package]]
1197
+ name = "utf8-zero"
1198
+ version = "0.8.1"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "b8c0a043c9540bae7c578c88f91dda8bd82e59ae27c21baca69c8b191aaf5a6e"
1201
+
1202
+ [[package]]
1203
+ name = "utf8parse"
1204
+ version = "0.2.2"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1207
+
1208
+ [[package]]
1209
+ name = "version_check"
1210
+ version = "0.9.5"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1213
+
1214
+ [[package]]
1215
+ name = "wait-timeout"
1216
+ version = "0.2.1"
1217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1218
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1219
+ dependencies = [
1220
+ "libc",
1221
+ ]
1222
+
1223
+ [[package]]
1224
+ name = "wasi"
1225
+ version = "0.11.1+wasi-snapshot-preview1"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1228
+
1229
+ [[package]]
1230
+ name = "wasip2"
1231
+ version = "1.0.4+wasi-0.2.12"
1232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1233
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1234
+ dependencies = [
1235
+ "wit-bindgen",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "webpki-roots"
1240
+ version = "1.0.8"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
1243
+ dependencies = [
1244
+ "rustls-pki-types",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "windows-link"
1249
+ version = "0.2.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1252
+
1253
+ [[package]]
1254
+ name = "windows-sys"
1255
+ version = "0.52.0"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1258
+ dependencies = [
1259
+ "windows-targets",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "windows-sys"
1264
+ version = "0.61.2"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1267
+ dependencies = [
1268
+ "windows-link",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "windows-targets"
1273
+ version = "0.52.6"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1276
+ dependencies = [
1277
+ "windows_aarch64_gnullvm",
1278
+ "windows_aarch64_msvc",
1279
+ "windows_i686_gnu",
1280
+ "windows_i686_gnullvm",
1281
+ "windows_i686_msvc",
1282
+ "windows_x86_64_gnu",
1283
+ "windows_x86_64_gnullvm",
1284
+ "windows_x86_64_msvc",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "windows_aarch64_gnullvm"
1289
+ version = "0.52.6"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1292
+
1293
+ [[package]]
1294
+ name = "windows_aarch64_msvc"
1295
+ version = "0.52.6"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1298
+
1299
+ [[package]]
1300
+ name = "windows_i686_gnu"
1301
+ version = "0.52.6"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1304
+
1305
+ [[package]]
1306
+ name = "windows_i686_gnullvm"
1307
+ version = "0.52.6"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1310
+
1311
+ [[package]]
1312
+ name = "windows_i686_msvc"
1313
+ version = "0.52.6"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1316
+
1317
+ [[package]]
1318
+ name = "windows_x86_64_gnu"
1319
+ version = "0.52.6"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1322
+
1323
+ [[package]]
1324
+ name = "windows_x86_64_gnullvm"
1325
+ version = "0.52.6"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1328
+
1329
+ [[package]]
1330
+ name = "windows_x86_64_msvc"
1331
+ version = "0.52.6"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1334
+
1335
+ [[package]]
1336
+ name = "winnow"
1337
+ version = "0.7.15"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1340
+ dependencies = [
1341
+ "memchr",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "wit-bindgen"
1346
+ version = "0.57.1"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1349
+
1350
+ [[package]]
1351
+ name = "zerocopy"
1352
+ version = "0.8.54"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1355
+ dependencies = [
1356
+ "zerocopy-derive",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "zerocopy-derive"
1361
+ version = "0.8.54"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1364
+ dependencies = [
1365
+ "proc-macro2",
1366
+ "quote",
1367
+ "syn",
1368
+ ]
1369
+
1370
+ [[package]]
1371
+ name = "zeroize"
1372
+ version = "1.9.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1375
+
1376
+ [[package]]
1377
+ name = "zmij"
1378
+ version = "1.0.21"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"