pyvedit 0.0.1__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 (30) hide show
  1. pyvedit-0.0.1/Cargo.lock +1070 -0
  2. pyvedit-0.0.1/Cargo.toml +20 -0
  3. pyvedit-0.0.1/PKG-INFO +119 -0
  4. pyvedit-0.0.1/README.md +86 -0
  5. pyvedit-0.0.1/crates/vedit-core/Cargo.toml +20 -0
  6. pyvedit-0.0.1/crates/vedit-core/src/commit.rs +44 -0
  7. pyvedit-0.0.1/crates/vedit-core/src/diff.rs +684 -0
  8. pyvedit-0.0.1/crates/vedit-core/src/lib.rs +7 -0
  9. pyvedit-0.0.1/crates/vedit-core/src/merge.rs +467 -0
  10. pyvedit-0.0.1/crates/vedit-core/src/model.rs +92 -0
  11. pyvedit-0.0.1/crates/vedit-core/src/object.rs +140 -0
  12. pyvedit-0.0.1/crates/vedit-core/src/otio.rs +286 -0
  13. pyvedit-0.0.1/crates/vedit-core/src/repo.rs +728 -0
  14. pyvedit-0.0.1/crates/vedit-core/tests/auto_message.rs +91 -0
  15. pyvedit-0.0.1/crates/vedit-core/tests/branching.rs +123 -0
  16. pyvedit-0.0.1/crates/vedit-core/tests/corpus.rs +455 -0
  17. pyvedit-0.0.1/crates/vedit-core/tests/fixtures/effects.otio +6822 -0
  18. pyvedit-0.0.1/crates/vedit-core/tests/fixtures/generator_reference_test.otio +70 -0
  19. pyvedit-0.0.1/crates/vedit-core/tests/fixtures/multitrack.otio +334 -0
  20. pyvedit-0.0.1/crates/vedit-core/tests/fixtures/nested_example.otio +303 -0
  21. pyvedit-0.0.1/crates/vedit-core/tests/fixtures/premiere_example.otio +2369 -0
  22. pyvedit-0.0.1/crates/vedit-core/tests/fixtures/transition.otio +197 -0
  23. pyvedit-0.0.1/crates/vedit-core/tests/merge_workflow.rs +235 -0
  24. pyvedit-0.0.1/crates/vedit-core/tests/real_world.rs +97 -0
  25. pyvedit-0.0.1/crates/vedit-core/tests/repo_workflow.rs +156 -0
  26. pyvedit-0.0.1/crates/vedit-py/Cargo.toml +26 -0
  27. pyvedit-0.0.1/crates/vedit-py/README.md +86 -0
  28. pyvedit-0.0.1/crates/vedit-py/src/lib.rs +267 -0
  29. pyvedit-0.0.1/crates/vedit-py/tests/test_workflow.py +369 -0
  30. pyvedit-0.0.1/pyproject.toml +57 -0
@@ -0,0 +1,1070 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "android_system_properties"
13
+ version = "0.1.5"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
16
+ dependencies = [
17
+ "libc",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anyhow"
72
+ version = "1.0.102"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
75
+
76
+ [[package]]
77
+ name = "autocfg"
78
+ version = "1.5.0"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
81
+
82
+ [[package]]
83
+ name = "bitflags"
84
+ version = "2.11.1"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
87
+
88
+ [[package]]
89
+ name = "block-buffer"
90
+ version = "0.10.4"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
93
+ dependencies = [
94
+ "generic-array",
95
+ ]
96
+
97
+ [[package]]
98
+ name = "bumpalo"
99
+ version = "3.20.2"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
102
+
103
+ [[package]]
104
+ name = "cc"
105
+ version = "1.2.61"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
108
+ dependencies = [
109
+ "find-msvc-tools",
110
+ "shlex",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "cfg-if"
115
+ version = "1.0.4"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
118
+
119
+ [[package]]
120
+ name = "chrono"
121
+ version = "0.4.44"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
124
+ dependencies = [
125
+ "iana-time-zone",
126
+ "num-traits",
127
+ "serde",
128
+ "windows-link",
129
+ ]
130
+
131
+ [[package]]
132
+ name = "clap"
133
+ version = "4.6.1"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
136
+ dependencies = [
137
+ "clap_builder",
138
+ "clap_derive",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "clap_builder"
143
+ version = "4.6.0"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
146
+ dependencies = [
147
+ "anstream",
148
+ "anstyle",
149
+ "clap_lex",
150
+ "strsim",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "clap_derive"
155
+ version = "4.6.1"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
158
+ dependencies = [
159
+ "heck",
160
+ "proc-macro2",
161
+ "quote",
162
+ "syn",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "clap_lex"
167
+ version = "1.1.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
170
+
171
+ [[package]]
172
+ name = "colorchoice"
173
+ version = "1.0.5"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
176
+
177
+ [[package]]
178
+ name = "core-foundation-sys"
179
+ version = "0.8.7"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
182
+
183
+ [[package]]
184
+ name = "cpufeatures"
185
+ version = "0.2.17"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
188
+ dependencies = [
189
+ "libc",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "crc32fast"
194
+ version = "1.5.0"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
197
+ dependencies = [
198
+ "cfg-if",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "crypto-common"
203
+ version = "0.1.7"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
206
+ dependencies = [
207
+ "generic-array",
208
+ "typenum",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "digest"
213
+ version = "0.10.7"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
216
+ dependencies = [
217
+ "block-buffer",
218
+ "crypto-common",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "equivalent"
223
+ version = "1.0.2"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
226
+
227
+ [[package]]
228
+ name = "errno"
229
+ version = "0.3.14"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
232
+ dependencies = [
233
+ "libc",
234
+ "windows-sys",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "fastrand"
239
+ version = "2.4.1"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
242
+
243
+ [[package]]
244
+ name = "find-msvc-tools"
245
+ version = "0.1.9"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
248
+
249
+ [[package]]
250
+ name = "flate2"
251
+ version = "1.1.9"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
254
+ dependencies = [
255
+ "crc32fast",
256
+ "miniz_oxide",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "foldhash"
261
+ version = "0.1.5"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
264
+
265
+ [[package]]
266
+ name = "futures-core"
267
+ version = "0.3.32"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
270
+
271
+ [[package]]
272
+ name = "futures-task"
273
+ version = "0.3.32"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
276
+
277
+ [[package]]
278
+ name = "futures-util"
279
+ version = "0.3.32"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
282
+ dependencies = [
283
+ "futures-core",
284
+ "futures-task",
285
+ "pin-project-lite",
286
+ "slab",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "generic-array"
291
+ version = "0.14.7"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
294
+ dependencies = [
295
+ "typenum",
296
+ "version_check",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "getrandom"
301
+ version = "0.4.2"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
304
+ dependencies = [
305
+ "cfg-if",
306
+ "libc",
307
+ "r-efi",
308
+ "wasip2",
309
+ "wasip3",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "hashbrown"
314
+ version = "0.15.5"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
317
+ dependencies = [
318
+ "foldhash",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "hashbrown"
323
+ version = "0.17.0"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
326
+
327
+ [[package]]
328
+ name = "heck"
329
+ version = "0.5.0"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
332
+
333
+ [[package]]
334
+ name = "hex"
335
+ version = "0.4.3"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
338
+
339
+ [[package]]
340
+ name = "iana-time-zone"
341
+ version = "0.1.65"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
344
+ dependencies = [
345
+ "android_system_properties",
346
+ "core-foundation-sys",
347
+ "iana-time-zone-haiku",
348
+ "js-sys",
349
+ "log",
350
+ "wasm-bindgen",
351
+ "windows-core",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "iana-time-zone-haiku"
356
+ version = "0.1.2"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
359
+ dependencies = [
360
+ "cc",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "id-arena"
365
+ version = "2.3.0"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
368
+
369
+ [[package]]
370
+ name = "indexmap"
371
+ version = "2.14.0"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
374
+ dependencies = [
375
+ "equivalent",
376
+ "hashbrown 0.17.0",
377
+ "serde",
378
+ "serde_core",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "indoc"
383
+ version = "2.0.7"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
386
+ dependencies = [
387
+ "rustversion",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "is_terminal_polyfill"
392
+ version = "1.70.2"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
395
+
396
+ [[package]]
397
+ name = "itoa"
398
+ version = "1.0.18"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
401
+
402
+ [[package]]
403
+ name = "js-sys"
404
+ version = "0.3.97"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
407
+ dependencies = [
408
+ "cfg-if",
409
+ "futures-util",
410
+ "once_cell",
411
+ "wasm-bindgen",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "leb128fmt"
416
+ version = "0.1.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
419
+
420
+ [[package]]
421
+ name = "libc"
422
+ version = "0.2.186"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
425
+
426
+ [[package]]
427
+ name = "linux-raw-sys"
428
+ version = "0.12.1"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
431
+
432
+ [[package]]
433
+ name = "log"
434
+ version = "0.4.29"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
437
+
438
+ [[package]]
439
+ name = "memchr"
440
+ version = "2.8.0"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
443
+
444
+ [[package]]
445
+ name = "memoffset"
446
+ version = "0.9.1"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
449
+ dependencies = [
450
+ "autocfg",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "miniz_oxide"
455
+ version = "0.8.9"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
458
+ dependencies = [
459
+ "adler2",
460
+ "simd-adler32",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "num-traits"
465
+ version = "0.2.19"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
468
+ dependencies = [
469
+ "autocfg",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "once_cell"
474
+ version = "1.21.4"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
477
+
478
+ [[package]]
479
+ name = "once_cell_polyfill"
480
+ version = "1.70.2"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
483
+
484
+ [[package]]
485
+ name = "pin-project-lite"
486
+ version = "0.2.17"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
489
+
490
+ [[package]]
491
+ name = "portable-atomic"
492
+ version = "1.13.1"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
495
+
496
+ [[package]]
497
+ name = "prettyplease"
498
+ version = "0.2.37"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
501
+ dependencies = [
502
+ "proc-macro2",
503
+ "syn",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "proc-macro2"
508
+ version = "1.0.106"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
511
+ dependencies = [
512
+ "unicode-ident",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "pyo3"
517
+ version = "0.26.0"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
520
+ dependencies = [
521
+ "anyhow",
522
+ "indoc",
523
+ "libc",
524
+ "memoffset",
525
+ "once_cell",
526
+ "portable-atomic",
527
+ "pyo3-build-config",
528
+ "pyo3-ffi",
529
+ "pyo3-macros",
530
+ "unindent",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "pyo3-build-config"
535
+ version = "0.26.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
538
+ dependencies = [
539
+ "target-lexicon",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "pyo3-ffi"
544
+ version = "0.26.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
547
+ dependencies = [
548
+ "libc",
549
+ "pyo3-build-config",
550
+ ]
551
+
552
+ [[package]]
553
+ name = "pyo3-macros"
554
+ version = "0.26.0"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
557
+ dependencies = [
558
+ "proc-macro2",
559
+ "pyo3-macros-backend",
560
+ "quote",
561
+ "syn",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "pyo3-macros-backend"
566
+ version = "0.26.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
569
+ dependencies = [
570
+ "heck",
571
+ "proc-macro2",
572
+ "pyo3-build-config",
573
+ "quote",
574
+ "syn",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "pythonize"
579
+ version = "0.26.0"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "11e06e4cff9be2bbf2bddf28a486ae619172ea57e79787f856572878c62dcfe2"
582
+ dependencies = [
583
+ "pyo3",
584
+ "serde",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "quote"
589
+ version = "1.0.45"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
592
+ dependencies = [
593
+ "proc-macro2",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "r-efi"
598
+ version = "6.0.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
601
+
602
+ [[package]]
603
+ name = "rustix"
604
+ version = "1.1.4"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
607
+ dependencies = [
608
+ "bitflags",
609
+ "errno",
610
+ "libc",
611
+ "linux-raw-sys",
612
+ "windows-sys",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "rustversion"
617
+ version = "1.0.22"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
620
+
621
+ [[package]]
622
+ name = "semver"
623
+ version = "1.0.28"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
626
+
627
+ [[package]]
628
+ name = "serde"
629
+ version = "1.0.228"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
632
+ dependencies = [
633
+ "serde_core",
634
+ "serde_derive",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "serde_core"
639
+ version = "1.0.228"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
642
+ dependencies = [
643
+ "serde_derive",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "serde_derive"
648
+ version = "1.0.228"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
651
+ dependencies = [
652
+ "proc-macro2",
653
+ "quote",
654
+ "syn",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "serde_json"
659
+ version = "1.0.149"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
662
+ dependencies = [
663
+ "itoa",
664
+ "memchr",
665
+ "serde",
666
+ "serde_core",
667
+ "zmij",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "sha2"
672
+ version = "0.10.9"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
675
+ dependencies = [
676
+ "cfg-if",
677
+ "cpufeatures",
678
+ "digest",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "shlex"
683
+ version = "1.3.0"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
686
+
687
+ [[package]]
688
+ name = "simd-adler32"
689
+ version = "0.3.9"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
692
+
693
+ [[package]]
694
+ name = "slab"
695
+ version = "0.4.12"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
698
+
699
+ [[package]]
700
+ name = "strsim"
701
+ version = "0.11.1"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
704
+
705
+ [[package]]
706
+ name = "syn"
707
+ version = "2.0.117"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
710
+ dependencies = [
711
+ "proc-macro2",
712
+ "quote",
713
+ "unicode-ident",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "target-lexicon"
718
+ version = "0.13.5"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
721
+
722
+ [[package]]
723
+ name = "tempfile"
724
+ version = "3.27.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
727
+ dependencies = [
728
+ "fastrand",
729
+ "getrandom",
730
+ "once_cell",
731
+ "rustix",
732
+ "windows-sys",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "typenum"
737
+ version = "1.20.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
740
+
741
+ [[package]]
742
+ name = "unicode-ident"
743
+ version = "1.0.24"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
746
+
747
+ [[package]]
748
+ name = "unicode-xid"
749
+ version = "0.2.6"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
752
+
753
+ [[package]]
754
+ name = "unindent"
755
+ version = "0.2.4"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
758
+
759
+ [[package]]
760
+ name = "utf8parse"
761
+ version = "0.2.2"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
764
+
765
+ [[package]]
766
+ name = "vedit-cli"
767
+ version = "0.0.1"
768
+ dependencies = [
769
+ "anyhow",
770
+ "clap",
771
+ "serde_json",
772
+ "vedit-core",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "vedit-core"
777
+ version = "0.0.1"
778
+ dependencies = [
779
+ "anyhow",
780
+ "chrono",
781
+ "flate2",
782
+ "hex",
783
+ "serde",
784
+ "serde_json",
785
+ "sha2",
786
+ "tempfile",
787
+ ]
788
+
789
+ [[package]]
790
+ name = "vedit-py"
791
+ version = "0.0.1"
792
+ dependencies = [
793
+ "anyhow",
794
+ "pyo3",
795
+ "pythonize",
796
+ "serde",
797
+ "serde_json",
798
+ "vedit-core",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "version_check"
803
+ version = "0.9.5"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
806
+
807
+ [[package]]
808
+ name = "wasip2"
809
+ version = "1.0.3+wasi-0.2.9"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
812
+ dependencies = [
813
+ "wit-bindgen 0.57.1",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "wasip3"
818
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
821
+ dependencies = [
822
+ "wit-bindgen 0.51.0",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "wasm-bindgen"
827
+ version = "0.2.120"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
830
+ dependencies = [
831
+ "cfg-if",
832
+ "once_cell",
833
+ "rustversion",
834
+ "wasm-bindgen-macro",
835
+ "wasm-bindgen-shared",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "wasm-bindgen-macro"
840
+ version = "0.2.120"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
843
+ dependencies = [
844
+ "quote",
845
+ "wasm-bindgen-macro-support",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "wasm-bindgen-macro-support"
850
+ version = "0.2.120"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
853
+ dependencies = [
854
+ "bumpalo",
855
+ "proc-macro2",
856
+ "quote",
857
+ "syn",
858
+ "wasm-bindgen-shared",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "wasm-bindgen-shared"
863
+ version = "0.2.120"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
866
+ dependencies = [
867
+ "unicode-ident",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "wasm-encoder"
872
+ version = "0.244.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
875
+ dependencies = [
876
+ "leb128fmt",
877
+ "wasmparser",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "wasm-metadata"
882
+ version = "0.244.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
885
+ dependencies = [
886
+ "anyhow",
887
+ "indexmap",
888
+ "wasm-encoder",
889
+ "wasmparser",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "wasmparser"
894
+ version = "0.244.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
897
+ dependencies = [
898
+ "bitflags",
899
+ "hashbrown 0.15.5",
900
+ "indexmap",
901
+ "semver",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "windows-core"
906
+ version = "0.62.2"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
909
+ dependencies = [
910
+ "windows-implement",
911
+ "windows-interface",
912
+ "windows-link",
913
+ "windows-result",
914
+ "windows-strings",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "windows-implement"
919
+ version = "0.60.2"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
922
+ dependencies = [
923
+ "proc-macro2",
924
+ "quote",
925
+ "syn",
926
+ ]
927
+
928
+ [[package]]
929
+ name = "windows-interface"
930
+ version = "0.59.3"
931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
932
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
933
+ dependencies = [
934
+ "proc-macro2",
935
+ "quote",
936
+ "syn",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "windows-link"
941
+ version = "0.2.1"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
944
+
945
+ [[package]]
946
+ name = "windows-result"
947
+ version = "0.4.1"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
950
+ dependencies = [
951
+ "windows-link",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "windows-strings"
956
+ version = "0.5.1"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
959
+ dependencies = [
960
+ "windows-link",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "windows-sys"
965
+ version = "0.61.2"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
968
+ dependencies = [
969
+ "windows-link",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "wit-bindgen"
974
+ version = "0.51.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
977
+ dependencies = [
978
+ "wit-bindgen-rust-macro",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "wit-bindgen"
983
+ version = "0.57.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
986
+
987
+ [[package]]
988
+ name = "wit-bindgen-core"
989
+ version = "0.51.0"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
992
+ dependencies = [
993
+ "anyhow",
994
+ "heck",
995
+ "wit-parser",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "wit-bindgen-rust"
1000
+ version = "0.51.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1003
+ dependencies = [
1004
+ "anyhow",
1005
+ "heck",
1006
+ "indexmap",
1007
+ "prettyplease",
1008
+ "syn",
1009
+ "wasm-metadata",
1010
+ "wit-bindgen-core",
1011
+ "wit-component",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "wit-bindgen-rust-macro"
1016
+ version = "0.51.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1019
+ dependencies = [
1020
+ "anyhow",
1021
+ "prettyplease",
1022
+ "proc-macro2",
1023
+ "quote",
1024
+ "syn",
1025
+ "wit-bindgen-core",
1026
+ "wit-bindgen-rust",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "wit-component"
1031
+ version = "0.244.0"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1034
+ dependencies = [
1035
+ "anyhow",
1036
+ "bitflags",
1037
+ "indexmap",
1038
+ "log",
1039
+ "serde",
1040
+ "serde_derive",
1041
+ "serde_json",
1042
+ "wasm-encoder",
1043
+ "wasm-metadata",
1044
+ "wasmparser",
1045
+ "wit-parser",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "wit-parser"
1050
+ version = "0.244.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1053
+ dependencies = [
1054
+ "anyhow",
1055
+ "id-arena",
1056
+ "indexmap",
1057
+ "log",
1058
+ "semver",
1059
+ "serde",
1060
+ "serde_derive",
1061
+ "serde_json",
1062
+ "unicode-xid",
1063
+ "wasmparser",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "zmij"
1068
+ version = "1.0.21"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"