worktree-runtime 0.1.0a1__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 (62) hide show
  1. worktree_runtime-0.1.0a1/Cargo.lock +775 -0
  2. worktree_runtime-0.1.0a1/Cargo.toml +26 -0
  3. worktree_runtime-0.1.0a1/LICENSE +15 -0
  4. worktree_runtime-0.1.0a1/PKG-INFO +9 -0
  5. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/AGENTS.md +9 -0
  6. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/Cargo.toml +27 -0
  7. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/application/audit_service.rs +7 -0
  8. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/application/binding_lifecycle.rs +250 -0
  9. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/application/checkout_service.rs +97 -0
  10. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/application/validation.rs +145 -0
  11. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/application.rs +5 -0
  12. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/domain/binding.rs +137 -0
  13. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/domain/git_worktree.rs +33 -0
  14. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/domain/github_policy.rs +41 -0
  15. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/domain/paths.rs +145 -0
  16. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/domain/porcelain.rs +35 -0
  17. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/domain.rs +6 -0
  18. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/audit_file_io.rs +93 -0
  19. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/audit_record.rs +210 -0
  20. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/audit_writer.rs +184 -0
  21. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/binding_store.rs +139 -0
  22. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/env_keys.rs +44 -0
  23. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/git_adapter.rs +57 -0
  24. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/path_resolution.rs +8 -0
  25. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/project_id_resolver.rs +190 -0
  26. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/worktree_base_resolver.rs +321 -0
  27. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/worktree_config_loader.rs +72 -0
  28. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure/worktree_list_reader.rs +178 -0
  29. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/infrastructure.rs +12 -0
  30. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/src/lib.rs +4 -0
  31. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/audit_file_io_tests.rs +103 -0
  32. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/audit_record_tests.rs +45 -0
  33. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/audit_service_tests.rs +44 -0
  34. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/audit_writer_tests.rs +519 -0
  35. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/binding_lifecycle_tests.rs +421 -0
  36. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/binding_store_tests.rs +215 -0
  37. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/binding_tests.rs +143 -0
  38. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/checkout_service_tests.rs +124 -0
  39. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/common/mod.rs +180 -0
  40. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/env_keys_tests.rs +32 -0
  41. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/git_worktree_tests.rs +55 -0
  42. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/paths_tests.rs +146 -0
  43. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/project_id_resolver_tests.rs +407 -0
  44. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/validation_tests.rs +79 -0
  45. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/worktree_base_resolver_tests.rs +437 -0
  46. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/worktree_config_loader_tests.rs +113 -0
  47. worktree_runtime-0.1.0a1/crates/worktree_runtime_core/tests/worktree_list_reader_tests.rs +203 -0
  48. worktree_runtime-0.1.0a1/crates/worktree_runtime_pyo3/AGENTS.md +7 -0
  49. worktree_runtime-0.1.0a1/crates/worktree_runtime_pyo3/Cargo.toml +19 -0
  50. worktree_runtime-0.1.0a1/crates/worktree_runtime_pyo3/src/lib.rs +1075 -0
  51. worktree_runtime-0.1.0a1/crates/worktree_runtime_pyo3/tests/pyo3_signature_freeze_tests.rs +31 -0
  52. worktree_runtime-0.1.0a1/pyproject.toml +38 -0
  53. worktree_runtime-0.1.0a1/src/_worktree_runtime_rust/__init__.py +5 -0
  54. worktree_runtime-0.1.0a1/src/worktree_runtime/AGENTS.md +14 -0
  55. worktree_runtime-0.1.0a1/src/worktree_runtime/SURFACE.yaml +224 -0
  56. worktree_runtime-0.1.0a1/src/worktree_runtime/__init__.py +1 -0
  57. worktree_runtime-0.1.0a1/src/worktree_runtime/api/__init__.py +148 -0
  58. worktree_runtime-0.1.0a1/src/worktree_runtime/api/__init__.pyi +144 -0
  59. worktree_runtime-0.1.0a1/src/worktree_runtime/api.pyi +144 -0
  60. worktree_runtime-0.1.0a1/src/worktree_runtime/presentation/__init__.py +1 -0
  61. worktree_runtime-0.1.0a1/src/worktree_runtime/presentation/audit_cli.py +68 -0
  62. worktree_runtime-0.1.0a1/src/worktree_runtime/py.typed +1 -0
@@ -0,0 +1,775 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "android_system_properties"
7
+ version = "0.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
10
+ dependencies = [
11
+ "libc",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "autocfg"
16
+ version = "1.5.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
19
+
20
+ [[package]]
21
+ name = "bitflags"
22
+ version = "2.13.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
25
+
26
+ [[package]]
27
+ name = "block-buffer"
28
+ version = "0.10.4"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
31
+ dependencies = [
32
+ "generic-array",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "bumpalo"
37
+ version = "3.20.3"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
40
+
41
+ [[package]]
42
+ name = "cc"
43
+ version = "1.2.65"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
46
+ dependencies = [
47
+ "find-msvc-tools",
48
+ "shlex",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "cfg-if"
53
+ version = "1.0.4"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
56
+
57
+ [[package]]
58
+ name = "chrono"
59
+ version = "0.4.45"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
62
+ dependencies = [
63
+ "iana-time-zone",
64
+ "js-sys",
65
+ "num-traits",
66
+ "wasm-bindgen",
67
+ "windows-link",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "core-foundation-sys"
72
+ version = "0.8.7"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
75
+
76
+ [[package]]
77
+ name = "cpufeatures"
78
+ version = "0.2.17"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
81
+ dependencies = [
82
+ "libc",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "crypto-common"
87
+ version = "0.1.7"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
90
+ dependencies = [
91
+ "generic-array",
92
+ "typenum",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "digest"
97
+ version = "0.10.7"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
100
+ dependencies = [
101
+ "block-buffer",
102
+ "crypto-common",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "equivalent"
107
+ version = "1.0.2"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
110
+
111
+ [[package]]
112
+ name = "errno"
113
+ version = "0.3.14"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
116
+ dependencies = [
117
+ "libc",
118
+ "windows-sys",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "fastrand"
123
+ version = "2.4.1"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
126
+
127
+ [[package]]
128
+ name = "find-msvc-tools"
129
+ version = "0.1.9"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
132
+
133
+ [[package]]
134
+ name = "fs2"
135
+ version = "0.4.3"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
138
+ dependencies = [
139
+ "libc",
140
+ "winapi",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "futures-core"
145
+ version = "0.3.32"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
148
+
149
+ [[package]]
150
+ name = "futures-task"
151
+ version = "0.3.32"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
154
+
155
+ [[package]]
156
+ name = "futures-util"
157
+ version = "0.3.32"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
160
+ dependencies = [
161
+ "futures-core",
162
+ "futures-task",
163
+ "pin-project-lite",
164
+ "slab",
165
+ ]
166
+
167
+ [[package]]
168
+ name = "generic-array"
169
+ version = "0.14.7"
170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
171
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
172
+ dependencies = [
173
+ "typenum",
174
+ "version_check",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "getrandom"
179
+ version = "0.4.3"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
182
+ dependencies = [
183
+ "cfg-if",
184
+ "libc",
185
+ "r-efi",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "hashbrown"
190
+ version = "0.17.1"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
193
+
194
+ [[package]]
195
+ name = "heck"
196
+ version = "0.5.0"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
199
+
200
+ [[package]]
201
+ name = "iana-time-zone"
202
+ version = "0.1.65"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
205
+ dependencies = [
206
+ "android_system_properties",
207
+ "core-foundation-sys",
208
+ "iana-time-zone-haiku",
209
+ "js-sys",
210
+ "log",
211
+ "wasm-bindgen",
212
+ "windows-core",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "iana-time-zone-haiku"
217
+ version = "0.1.2"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
220
+ dependencies = [
221
+ "cc",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "indexmap"
226
+ version = "2.14.0"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
229
+ dependencies = [
230
+ "equivalent",
231
+ "hashbrown",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "itoa"
236
+ version = "1.0.18"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
239
+
240
+ [[package]]
241
+ name = "js-sys"
242
+ version = "0.3.103"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
245
+ dependencies = [
246
+ "cfg-if",
247
+ "futures-util",
248
+ "wasm-bindgen",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "libc"
253
+ version = "0.2.186"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
256
+
257
+ [[package]]
258
+ name = "linux-raw-sys"
259
+ version = "0.12.1"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
262
+
263
+ [[package]]
264
+ name = "log"
265
+ version = "0.4.33"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
268
+
269
+ [[package]]
270
+ name = "memchr"
271
+ version = "2.8.2"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
274
+
275
+ [[package]]
276
+ name = "num-traits"
277
+ version = "0.2.19"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
280
+ dependencies = [
281
+ "autocfg",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "once_cell"
286
+ version = "1.21.4"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
289
+
290
+ [[package]]
291
+ name = "pin-project-lite"
292
+ version = "0.2.17"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
295
+
296
+ [[package]]
297
+ name = "portable-atomic"
298
+ version = "1.13.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
301
+
302
+ [[package]]
303
+ name = "proc-macro2"
304
+ version = "1.0.106"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
307
+ dependencies = [
308
+ "unicode-ident",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "pyo3"
313
+ version = "0.29.0"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
316
+ dependencies = [
317
+ "libc",
318
+ "once_cell",
319
+ "portable-atomic",
320
+ "pyo3-build-config",
321
+ "pyo3-ffi",
322
+ "pyo3-macros",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "pyo3-build-config"
327
+ version = "0.29.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
330
+ dependencies = [
331
+ "target-lexicon",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "pyo3-ffi"
336
+ version = "0.29.0"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
339
+ dependencies = [
340
+ "libc",
341
+ "pyo3-build-config",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "pyo3-macros"
346
+ version = "0.29.0"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
349
+ dependencies = [
350
+ "proc-macro2",
351
+ "pyo3-macros-backend",
352
+ "quote",
353
+ "syn",
354
+ ]
355
+
356
+ [[package]]
357
+ name = "pyo3-macros-backend"
358
+ version = "0.29.0"
359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
360
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
361
+ dependencies = [
362
+ "heck",
363
+ "proc-macro2",
364
+ "quote",
365
+ "syn",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "quote"
370
+ version = "1.0.46"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
373
+ dependencies = [
374
+ "proc-macro2",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "r-efi"
379
+ version = "6.0.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
382
+
383
+ [[package]]
384
+ name = "rustix"
385
+ version = "1.1.4"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
388
+ dependencies = [
389
+ "bitflags",
390
+ "errno",
391
+ "libc",
392
+ "linux-raw-sys",
393
+ "windows-sys",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "rustversion"
398
+ version = "1.0.22"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
401
+
402
+ [[package]]
403
+ name = "ryu"
404
+ version = "1.0.23"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
407
+
408
+ [[package]]
409
+ name = "serde"
410
+ version = "1.0.228"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
413
+ dependencies = [
414
+ "serde_core",
415
+ "serde_derive",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "serde_core"
420
+ version = "1.0.228"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
423
+ dependencies = [
424
+ "serde_derive",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "serde_derive"
429
+ version = "1.0.228"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
432
+ dependencies = [
433
+ "proc-macro2",
434
+ "quote",
435
+ "syn",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "serde_json"
440
+ version = "1.0.150"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
443
+ dependencies = [
444
+ "itoa",
445
+ "memchr",
446
+ "serde",
447
+ "serde_core",
448
+ "zmij",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "serde_spanned"
453
+ version = "0.6.9"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
456
+ dependencies = [
457
+ "serde",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "serde_yaml"
462
+ version = "0.9.34+deprecated"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
465
+ dependencies = [
466
+ "indexmap",
467
+ "itoa",
468
+ "ryu",
469
+ "serde",
470
+ "unsafe-libyaml",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "sha1"
475
+ version = "0.10.6"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
478
+ dependencies = [
479
+ "cfg-if",
480
+ "cpufeatures",
481
+ "digest",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "shlex"
486
+ version = "2.0.1"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
489
+
490
+ [[package]]
491
+ name = "slab"
492
+ version = "0.4.12"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
495
+
496
+ [[package]]
497
+ name = "syn"
498
+ version = "2.0.118"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
501
+ dependencies = [
502
+ "proc-macro2",
503
+ "quote",
504
+ "unicode-ident",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "target-lexicon"
509
+ version = "0.13.5"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
512
+
513
+ [[package]]
514
+ name = "tempfile"
515
+ version = "3.27.0"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
518
+ dependencies = [
519
+ "fastrand",
520
+ "getrandom",
521
+ "once_cell",
522
+ "rustix",
523
+ "windows-sys",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "toml"
528
+ version = "0.8.23"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
531
+ dependencies = [
532
+ "serde",
533
+ "serde_spanned",
534
+ "toml_datetime",
535
+ "toml_edit",
536
+ ]
537
+
538
+ [[package]]
539
+ name = "toml_datetime"
540
+ version = "0.6.11"
541
+ source = "registry+https://github.com/rust-lang/crates.io-index"
542
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
543
+ dependencies = [
544
+ "serde",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "toml_edit"
549
+ version = "0.22.27"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
552
+ dependencies = [
553
+ "indexmap",
554
+ "serde",
555
+ "serde_spanned",
556
+ "toml_datetime",
557
+ "toml_write",
558
+ "winnow",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "toml_write"
563
+ version = "0.1.2"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
566
+
567
+ [[package]]
568
+ name = "typenum"
569
+ version = "1.20.1"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
572
+
573
+ [[package]]
574
+ name = "unicode-ident"
575
+ version = "1.0.24"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
578
+
579
+ [[package]]
580
+ name = "unsafe-libyaml"
581
+ version = "0.2.11"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
584
+
585
+ [[package]]
586
+ name = "version_check"
587
+ version = "0.9.5"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
590
+
591
+ [[package]]
592
+ name = "wait-timeout"
593
+ version = "0.2.1"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
596
+ dependencies = [
597
+ "libc",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "wasm-bindgen"
602
+ version = "0.2.126"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
605
+ dependencies = [
606
+ "cfg-if",
607
+ "once_cell",
608
+ "rustversion",
609
+ "wasm-bindgen-macro",
610
+ "wasm-bindgen-shared",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "wasm-bindgen-macro"
615
+ version = "0.2.126"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
618
+ dependencies = [
619
+ "quote",
620
+ "wasm-bindgen-macro-support",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "wasm-bindgen-macro-support"
625
+ version = "0.2.126"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
628
+ dependencies = [
629
+ "bumpalo",
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn",
633
+ "wasm-bindgen-shared",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "wasm-bindgen-shared"
638
+ version = "0.2.126"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
641
+ dependencies = [
642
+ "unicode-ident",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "winapi"
647
+ version = "0.3.9"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
650
+ dependencies = [
651
+ "winapi-i686-pc-windows-gnu",
652
+ "winapi-x86_64-pc-windows-gnu",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "winapi-i686-pc-windows-gnu"
657
+ version = "0.4.0"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
660
+
661
+ [[package]]
662
+ name = "winapi-x86_64-pc-windows-gnu"
663
+ version = "0.4.0"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
666
+
667
+ [[package]]
668
+ name = "windows-core"
669
+ version = "0.62.2"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
672
+ dependencies = [
673
+ "windows-implement",
674
+ "windows-interface",
675
+ "windows-link",
676
+ "windows-result",
677
+ "windows-strings",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "windows-implement"
682
+ version = "0.60.2"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
685
+ dependencies = [
686
+ "proc-macro2",
687
+ "quote",
688
+ "syn",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "windows-interface"
693
+ version = "0.59.3"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
696
+ dependencies = [
697
+ "proc-macro2",
698
+ "quote",
699
+ "syn",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "windows-link"
704
+ version = "0.2.1"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
707
+
708
+ [[package]]
709
+ name = "windows-result"
710
+ version = "0.4.1"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
713
+ dependencies = [
714
+ "windows-link",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "windows-strings"
719
+ version = "0.5.1"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
722
+ dependencies = [
723
+ "windows-link",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "windows-sys"
728
+ version = "0.61.2"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
731
+ dependencies = [
732
+ "windows-link",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "winnow"
737
+ version = "0.7.15"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
740
+ dependencies = [
741
+ "memchr",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "worktree_runtime_core"
746
+ version = "0.1.0-alpha.1"
747
+ dependencies = [
748
+ "chrono",
749
+ "fs2",
750
+ "libc",
751
+ "log",
752
+ "serde",
753
+ "serde_json",
754
+ "serde_yaml",
755
+ "sha1",
756
+ "tempfile",
757
+ "toml",
758
+ "wait-timeout",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "worktree_runtime_pyo3"
763
+ version = "0.1.0-alpha.1"
764
+ dependencies = [
765
+ "chrono",
766
+ "pyo3",
767
+ "serde_json",
768
+ "worktree_runtime_core",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "zmij"
773
+ version = "1.0.21"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"