ferrum-orm 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 (52) hide show
  1. ferrum_orm-0.1.0/Cargo.lock +786 -0
  2. ferrum_orm-0.1.0/Cargo.toml +42 -0
  3. ferrum_orm-0.1.0/LICENSE +201 -0
  4. ferrum_orm-0.1.0/PKG-INFO +248 -0
  5. ferrum_orm-0.1.0/README.md +198 -0
  6. ferrum_orm-0.1.0/crates/ferrum-core/Cargo.toml +25 -0
  7. ferrum_orm-0.1.0/crates/ferrum-core/src/compile/mod.rs +471 -0
  8. ferrum_orm-0.1.0/crates/ferrum-core/src/error.rs +73 -0
  9. ferrum_orm-0.1.0/crates/ferrum-core/src/hydrate/mod.rs +190 -0
  10. ferrum_orm-0.1.0/crates/ferrum-core/src/ir/metadata.rs +82 -0
  11. ferrum_orm-0.1.0/crates/ferrum-core/src/ir/mod.rs +152 -0
  12. ferrum_orm-0.1.0/crates/ferrum-core/src/lib.rs +17 -0
  13. ferrum_orm-0.1.0/crates/ferrum-core/src/migrate/mod.rs +72 -0
  14. ferrum_orm-0.1.0/crates/ferrum-pyo3/Cargo.toml +30 -0
  15. ferrum_orm-0.1.0/crates/ferrum-pyo3/src/lib.rs +241 -0
  16. ferrum_orm-0.1.0/crates/ferrum-sql/Cargo.toml +24 -0
  17. ferrum_orm-0.1.0/crates/ferrum-sql/src/dialect.rs +38 -0
  18. ferrum_orm-0.1.0/crates/ferrum-sql/src/emit.rs +843 -0
  19. ferrum_orm-0.1.0/crates/ferrum-sql/src/lib.rs +16 -0
  20. ferrum_orm-0.1.0/pyproject.toml +152 -0
  21. ferrum_orm-0.1.0/python/ferrum/__init__.py +63 -0
  22. ferrum_orm-0.1.0/python/ferrum/_native.pyi +51 -0
  23. ferrum_orm-0.1.0/python/ferrum/cli/__init__.py +32 -0
  24. ferrum_orm-0.1.0/python/ferrum/cli/app.py +217 -0
  25. ferrum_orm-0.1.0/python/ferrum/cli/bootstrap.py +153 -0
  26. ferrum_orm-0.1.0/python/ferrum/cli/init.py +115 -0
  27. ferrum_orm-0.1.0/python/ferrum/cli/inspectdb_cmd.py +338 -0
  28. ferrum_orm-0.1.0/python/ferrum/cli/makemigrations_cmd.py +293 -0
  29. ferrum_orm-0.1.0/python/ferrum/cli/migrate_cmd.py +146 -0
  30. ferrum_orm-0.1.0/python/ferrum/cli/migrations_cmd.py +126 -0
  31. ferrum_orm-0.1.0/python/ferrum/cli/resetdb_cmd.py +101 -0
  32. ferrum_orm-0.1.0/python/ferrum/cli/revert_cmd.py +144 -0
  33. ferrum_orm-0.1.0/python/ferrum/cli/showmigrations_cmd.py +57 -0
  34. ferrum_orm-0.1.0/python/ferrum/config.py +104 -0
  35. ferrum_orm-0.1.0/python/ferrum/connection.py +183 -0
  36. ferrum_orm-0.1.0/python/ferrum/contrib/__init__.py +5 -0
  37. ferrum_orm-0.1.0/python/ferrum/contrib/fastapi.py +40 -0
  38. ferrum_orm-0.1.0/python/ferrum/errors.py +222 -0
  39. ferrum_orm-0.1.0/python/ferrum/ext/__init__.py +5 -0
  40. ferrum_orm-0.1.0/python/ferrum/ext/pgvector.py +41 -0
  41. ferrum_orm-0.1.0/python/ferrum/hooks.py +242 -0
  42. ferrum_orm-0.1.0/python/ferrum/migrations/__init__.py +36 -0
  43. ferrum_orm-0.1.0/python/ferrum/migrations/base.py +50 -0
  44. ferrum_orm-0.1.0/python/ferrum/migrations/gates.py +70 -0
  45. ferrum_orm-0.1.0/python/ferrum/migrations/ledger.py +106 -0
  46. ferrum_orm-0.1.0/python/ferrum/migrations/loader.py +120 -0
  47. ferrum_orm-0.1.0/python/ferrum/migrations/operations.py +334 -0
  48. ferrum_orm-0.1.0/python/ferrum/migrations/orchestrator.py +620 -0
  49. ferrum_orm-0.1.0/python/ferrum/migrations/tokens.py +59 -0
  50. ferrum_orm-0.1.0/python/ferrum/models.py +785 -0
  51. ferrum_orm-0.1.0/python/ferrum/py.typed +0 -0
  52. ferrum_orm-0.1.0/python/ferrum/queryset.py +1021 -0
@@ -0,0 +1,786 @@
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 = "autocfg"
13
+ version = "1.5.1"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
16
+
17
+ [[package]]
18
+ name = "bit-set"
19
+ version = "0.8.0"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
22
+ dependencies = [
23
+ "bit-vec",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "bit-vec"
28
+ version = "0.8.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
31
+
32
+ [[package]]
33
+ name = "bitflags"
34
+ version = "2.13.0"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
37
+
38
+ [[package]]
39
+ name = "cfg-if"
40
+ version = "1.0.4"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
43
+
44
+ [[package]]
45
+ name = "equivalent"
46
+ version = "1.0.2"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
49
+
50
+ [[package]]
51
+ name = "errno"
52
+ version = "0.3.14"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
55
+ dependencies = [
56
+ "libc",
57
+ "windows-sys",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "fastrand"
62
+ version = "2.4.1"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
65
+
66
+ [[package]]
67
+ name = "ferrum-core"
68
+ version = "0.1.0"
69
+ dependencies = [
70
+ "proptest",
71
+ "serde",
72
+ "serde_json",
73
+ "thiserror",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "ferrum-migrate"
78
+ version = "0.1.0"
79
+ dependencies = [
80
+ "ferrum-core",
81
+ "serde",
82
+ "serde_json",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "ferrum-pyo3"
87
+ version = "0.1.0"
88
+ dependencies = [
89
+ "ferrum-core",
90
+ "ferrum-sql",
91
+ "pyo3",
92
+ "serde_json",
93
+ "thiserror",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "ferrum-sql"
98
+ version = "0.1.0"
99
+ dependencies = [
100
+ "ferrum-core",
101
+ "proptest",
102
+ "serde",
103
+ "thiserror",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "fnv"
108
+ version = "1.0.7"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
111
+
112
+ [[package]]
113
+ name = "foldhash"
114
+ version = "0.1.5"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
117
+
118
+ [[package]]
119
+ name = "getrandom"
120
+ version = "0.3.4"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
123
+ dependencies = [
124
+ "cfg-if",
125
+ "libc",
126
+ "r-efi 5.3.0",
127
+ "wasip2",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "getrandom"
132
+ version = "0.4.2"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
135
+ dependencies = [
136
+ "cfg-if",
137
+ "libc",
138
+ "r-efi 6.0.0",
139
+ "wasip2",
140
+ "wasip3",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "hashbrown"
145
+ version = "0.15.5"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
148
+ dependencies = [
149
+ "foldhash",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "hashbrown"
154
+ version = "0.17.1"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
157
+
158
+ [[package]]
159
+ name = "heck"
160
+ version = "0.5.0"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
163
+
164
+ [[package]]
165
+ name = "id-arena"
166
+ version = "2.3.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
169
+
170
+ [[package]]
171
+ name = "indexmap"
172
+ version = "2.14.0"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
175
+ dependencies = [
176
+ "equivalent",
177
+ "hashbrown 0.17.1",
178
+ "serde",
179
+ "serde_core",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "indoc"
184
+ version = "2.0.7"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
187
+ dependencies = [
188
+ "rustversion",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "itoa"
193
+ version = "1.0.18"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
196
+
197
+ [[package]]
198
+ name = "leb128fmt"
199
+ version = "0.1.0"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
202
+
203
+ [[package]]
204
+ name = "libc"
205
+ version = "0.2.186"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
208
+
209
+ [[package]]
210
+ name = "linux-raw-sys"
211
+ version = "0.12.1"
212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
213
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
214
+
215
+ [[package]]
216
+ name = "log"
217
+ version = "0.4.32"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
220
+
221
+ [[package]]
222
+ name = "memchr"
223
+ version = "2.8.2"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
226
+
227
+ [[package]]
228
+ name = "memoffset"
229
+ version = "0.9.1"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
232
+ dependencies = [
233
+ "autocfg",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "num-traits"
238
+ version = "0.2.19"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
241
+ dependencies = [
242
+ "autocfg",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "once_cell"
247
+ version = "1.21.4"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
250
+
251
+ [[package]]
252
+ name = "portable-atomic"
253
+ version = "1.13.1"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
256
+
257
+ [[package]]
258
+ name = "ppv-lite86"
259
+ version = "0.2.21"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
262
+ dependencies = [
263
+ "zerocopy",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "prettyplease"
268
+ version = "0.2.37"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
271
+ dependencies = [
272
+ "proc-macro2",
273
+ "syn",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "proc-macro2"
278
+ version = "1.0.106"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
281
+ dependencies = [
282
+ "unicode-ident",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "proptest"
287
+ version = "1.11.0"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
290
+ dependencies = [
291
+ "bit-set",
292
+ "bit-vec",
293
+ "bitflags",
294
+ "num-traits",
295
+ "rand",
296
+ "rand_chacha",
297
+ "rand_xorshift",
298
+ "regex-syntax",
299
+ "rusty-fork",
300
+ "tempfile",
301
+ "unarray",
302
+ ]
303
+
304
+ [[package]]
305
+ name = "pyo3"
306
+ version = "0.22.6"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
309
+ dependencies = [
310
+ "cfg-if",
311
+ "indoc",
312
+ "libc",
313
+ "memoffset",
314
+ "once_cell",
315
+ "portable-atomic",
316
+ "pyo3-build-config",
317
+ "pyo3-ffi",
318
+ "pyo3-macros",
319
+ "unindent",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "pyo3-build-config"
324
+ version = "0.22.6"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
327
+ dependencies = [
328
+ "once_cell",
329
+ "target-lexicon",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "pyo3-ffi"
334
+ version = "0.22.6"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
337
+ dependencies = [
338
+ "libc",
339
+ "pyo3-build-config",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "pyo3-macros"
344
+ version = "0.22.6"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
347
+ dependencies = [
348
+ "proc-macro2",
349
+ "pyo3-macros-backend",
350
+ "quote",
351
+ "syn",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "pyo3-macros-backend"
356
+ version = "0.22.6"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
359
+ dependencies = [
360
+ "heck",
361
+ "proc-macro2",
362
+ "pyo3-build-config",
363
+ "quote",
364
+ "syn",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "quick-error"
369
+ version = "1.2.3"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
372
+
373
+ [[package]]
374
+ name = "quote"
375
+ version = "1.0.45"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
378
+ dependencies = [
379
+ "proc-macro2",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "r-efi"
384
+ version = "5.3.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
387
+
388
+ [[package]]
389
+ name = "r-efi"
390
+ version = "6.0.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
393
+
394
+ [[package]]
395
+ name = "rand"
396
+ version = "0.9.4"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
399
+ dependencies = [
400
+ "rand_chacha",
401
+ "rand_core",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "rand_chacha"
406
+ version = "0.9.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
409
+ dependencies = [
410
+ "ppv-lite86",
411
+ "rand_core",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "rand_core"
416
+ version = "0.9.5"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
419
+ dependencies = [
420
+ "getrandom 0.3.4",
421
+ ]
422
+
423
+ [[package]]
424
+ name = "rand_xorshift"
425
+ version = "0.4.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
428
+ dependencies = [
429
+ "rand_core",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "regex-syntax"
434
+ version = "0.8.11"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
437
+
438
+ [[package]]
439
+ name = "rustix"
440
+ version = "1.1.4"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
443
+ dependencies = [
444
+ "bitflags",
445
+ "errno",
446
+ "libc",
447
+ "linux-raw-sys",
448
+ "windows-sys",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "rustversion"
453
+ version = "1.0.22"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
456
+
457
+ [[package]]
458
+ name = "rusty-fork"
459
+ version = "0.3.1"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
462
+ dependencies = [
463
+ "fnv",
464
+ "quick-error",
465
+ "tempfile",
466
+ "wait-timeout",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "semver"
471
+ version = "1.0.28"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
474
+
475
+ [[package]]
476
+ name = "serde"
477
+ version = "1.0.228"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
480
+ dependencies = [
481
+ "serde_core",
482
+ "serde_derive",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "serde_core"
487
+ version = "1.0.228"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
490
+ dependencies = [
491
+ "serde_derive",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "serde_derive"
496
+ version = "1.0.228"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
499
+ dependencies = [
500
+ "proc-macro2",
501
+ "quote",
502
+ "syn",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "serde_json"
507
+ version = "1.0.150"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
510
+ dependencies = [
511
+ "itoa",
512
+ "memchr",
513
+ "serde",
514
+ "serde_core",
515
+ "zmij",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "syn"
520
+ version = "2.0.117"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
523
+ dependencies = [
524
+ "proc-macro2",
525
+ "quote",
526
+ "unicode-ident",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "target-lexicon"
531
+ version = "0.12.16"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
534
+
535
+ [[package]]
536
+ name = "tempfile"
537
+ version = "3.27.0"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
540
+ dependencies = [
541
+ "fastrand",
542
+ "getrandom 0.4.2",
543
+ "once_cell",
544
+ "rustix",
545
+ "windows-sys",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "thiserror"
550
+ version = "2.0.18"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
553
+ dependencies = [
554
+ "thiserror-impl",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "thiserror-impl"
559
+ version = "2.0.18"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
562
+ dependencies = [
563
+ "proc-macro2",
564
+ "quote",
565
+ "syn",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "unarray"
570
+ version = "0.1.4"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
573
+
574
+ [[package]]
575
+ name = "unicode-ident"
576
+ version = "1.0.24"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
579
+
580
+ [[package]]
581
+ name = "unicode-xid"
582
+ version = "0.2.6"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
585
+
586
+ [[package]]
587
+ name = "unindent"
588
+ version = "0.2.4"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
591
+
592
+ [[package]]
593
+ name = "wait-timeout"
594
+ version = "0.2.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
597
+ dependencies = [
598
+ "libc",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "wasip2"
603
+ version = "1.0.4+wasi-0.2.12"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
606
+ dependencies = [
607
+ "wit-bindgen 0.57.1",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "wasip3"
612
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
615
+ dependencies = [
616
+ "wit-bindgen 0.51.0",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "wasm-encoder"
621
+ version = "0.244.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
624
+ dependencies = [
625
+ "leb128fmt",
626
+ "wasmparser",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "wasm-metadata"
631
+ version = "0.244.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
634
+ dependencies = [
635
+ "anyhow",
636
+ "indexmap",
637
+ "wasm-encoder",
638
+ "wasmparser",
639
+ ]
640
+
641
+ [[package]]
642
+ name = "wasmparser"
643
+ version = "0.244.0"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
646
+ dependencies = [
647
+ "bitflags",
648
+ "hashbrown 0.15.5",
649
+ "indexmap",
650
+ "semver",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "windows-link"
655
+ version = "0.2.1"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
658
+
659
+ [[package]]
660
+ name = "windows-sys"
661
+ version = "0.61.2"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
664
+ dependencies = [
665
+ "windows-link",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "wit-bindgen"
670
+ version = "0.51.0"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
673
+ dependencies = [
674
+ "wit-bindgen-rust-macro",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "wit-bindgen"
679
+ version = "0.57.1"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
682
+
683
+ [[package]]
684
+ name = "wit-bindgen-core"
685
+ version = "0.51.0"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
688
+ dependencies = [
689
+ "anyhow",
690
+ "heck",
691
+ "wit-parser",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "wit-bindgen-rust"
696
+ version = "0.51.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
699
+ dependencies = [
700
+ "anyhow",
701
+ "heck",
702
+ "indexmap",
703
+ "prettyplease",
704
+ "syn",
705
+ "wasm-metadata",
706
+ "wit-bindgen-core",
707
+ "wit-component",
708
+ ]
709
+
710
+ [[package]]
711
+ name = "wit-bindgen-rust-macro"
712
+ version = "0.51.0"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
715
+ dependencies = [
716
+ "anyhow",
717
+ "prettyplease",
718
+ "proc-macro2",
719
+ "quote",
720
+ "syn",
721
+ "wit-bindgen-core",
722
+ "wit-bindgen-rust",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "wit-component"
727
+ version = "0.244.0"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
730
+ dependencies = [
731
+ "anyhow",
732
+ "bitflags",
733
+ "indexmap",
734
+ "log",
735
+ "serde",
736
+ "serde_derive",
737
+ "serde_json",
738
+ "wasm-encoder",
739
+ "wasm-metadata",
740
+ "wasmparser",
741
+ "wit-parser",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "wit-parser"
746
+ version = "0.244.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
749
+ dependencies = [
750
+ "anyhow",
751
+ "id-arena",
752
+ "indexmap",
753
+ "log",
754
+ "semver",
755
+ "serde",
756
+ "serde_derive",
757
+ "serde_json",
758
+ "unicode-xid",
759
+ "wasmparser",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "zerocopy"
764
+ version = "0.8.52"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
767
+ dependencies = [
768
+ "zerocopy-derive",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "zerocopy-derive"
773
+ version = "0.8.52"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
776
+ dependencies = [
777
+ "proc-macro2",
778
+ "quote",
779
+ "syn",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "zmij"
784
+ version = "1.0.21"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"