running-process 3.2.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 (89) hide show
  1. running_process-3.2.1/Cargo.lock +1950 -0
  2. running_process-3.2.1/Cargo.toml +24 -0
  3. running_process-3.2.1/LICENSE +21 -0
  4. running_process-3.2.1/PKG-INFO +408 -0
  5. running_process-3.2.1/README.md +393 -0
  6. running_process-3.2.1/crates/running-process-client/Cargo.toml +18 -0
  7. running_process-3.2.1/crates/running-process-client/src/client.rs +750 -0
  8. running_process-3.2.1/crates/running-process-client/src/lib.rs +7 -0
  9. running_process-3.2.1/crates/running-process-client/src/paths.rs +173 -0
  10. running_process-3.2.1/crates/running-process-core/Cargo.toml +25 -0
  11. running_process-3.2.1/crates/running-process-core/src/console_detect.rs +110 -0
  12. running_process-3.2.1/crates/running-process-core/src/containment.rs +158 -0
  13. running_process-3.2.1/crates/running-process-core/src/lib.rs +964 -0
  14. running_process-3.2.1/crates/running-process-core/src/originator.rs +303 -0
  15. running_process-3.2.1/crates/running-process-core/src/pty/mod.rs +842 -0
  16. running_process-3.2.1/crates/running-process-core/src/pty/native_pty_process.rs +928 -0
  17. running_process-3.2.1/crates/running-process-core/src/pty/pty_posix.rs +118 -0
  18. running_process-3.2.1/crates/running-process-core/src/pty/pty_windows.rs +59 -0
  19. running_process-3.2.1/crates/running-process-core/src/pty/terminal_input.rs +831 -0
  20. running_process-3.2.1/crates/running-process-core/src/public_symbols.rs +60 -0
  21. running_process-3.2.1/crates/running-process-core/src/rust_debug.rs +97 -0
  22. running_process-3.2.1/crates/running-process-core/src/spawn.rs +326 -0
  23. running_process-3.2.1/crates/running-process-core/src/spawn_imp_unix.rs +240 -0
  24. running_process-3.2.1/crates/running-process-core/src/spawn_imp_windows.rs +905 -0
  25. running_process-3.2.1/crates/running-process-core/src/tests.rs +797 -0
  26. running_process-3.2.1/crates/running-process-core/tests/containment_test.rs +493 -0
  27. running_process-3.2.1/crates/running-process-core/tests/fs_adversarial_test.rs +460 -0
  28. running_process-3.2.1/crates/running-process-core/tests/originator_test.rs +201 -0
  29. running_process-3.2.1/crates/running-process-core/tests/process_core_test.rs +946 -0
  30. running_process-3.2.1/crates/running-process-core/tests/pty_conhost_job_test.rs +136 -0
  31. running_process-3.2.1/crates/running-process-core/tests/spawn_test.rs +455 -0
  32. running_process-3.2.1/crates/running-process-proto/Cargo.toml +17 -0
  33. running_process-3.2.1/crates/running-process-proto/build.rs +9 -0
  34. running_process-3.2.1/crates/running-process-proto/proto/daemon.proto +377 -0
  35. running_process-3.2.1/crates/running-process-proto/src/lib.rs +3 -0
  36. running_process-3.2.1/crates/running-process-py/Cargo.toml +25 -0
  37. running_process-3.2.1/crates/running-process-py/src/containment.rs +114 -0
  38. running_process-3.2.1/crates/running-process-py/src/daemon_client.rs +139 -0
  39. running_process-3.2.1/crates/running-process-py/src/debug_traces.rs +99 -0
  40. running_process-3.2.1/crates/running-process-py/src/helpers.rs +141 -0
  41. running_process-3.2.1/crates/running-process-py/src/idle_detector.rs +86 -0
  42. running_process-3.2.1/crates/running-process-py/src/lib.rs +97 -0
  43. running_process-3.2.1/crates/running-process-py/src/metrics.rs +68 -0
  44. running_process-3.2.1/crates/running-process-py/src/originator.rs +55 -0
  45. running_process-3.2.1/crates/running-process-py/src/pid_tracking.rs +129 -0
  46. running_process-3.2.1/crates/running-process-py/src/priority.rs +93 -0
  47. running_process-3.2.1/crates/running-process-py/src/process.rs +534 -0
  48. running_process-3.2.1/crates/running-process-py/src/process_tree.rs +142 -0
  49. running_process-3.2.1/crates/running-process-py/src/pty_buffer.rs +178 -0
  50. running_process-3.2.1/crates/running-process-py/src/pty_process.rs +250 -0
  51. running_process-3.2.1/crates/running-process-py/src/public_symbols.rs +82 -0
  52. running_process-3.2.1/crates/running-process-py/src/py_native_process.rs +425 -0
  53. running_process-3.2.1/crates/running-process-py/src/registry.rs +120 -0
  54. running_process-3.2.1/crates/running-process-py/src/signal_bool.rs +49 -0
  55. running_process-3.2.1/crates/running-process-py/src/terminal_input.rs +261 -0
  56. running_process-3.2.1/crates/running-process-py/src/tests/control_churn.rs +224 -0
  57. running_process-3.2.1/crates/running-process-py/src/tests/expect_match.rs +112 -0
  58. running_process-3.2.1/crates/running-process-py/src/tests/idle_detector.rs +293 -0
  59. running_process-3.2.1/crates/running-process-py/src/tests/mod.rs +10 -0
  60. running_process-3.2.1/crates/running-process-py/src/tests/parse_command.rs +142 -0
  61. running_process-3.2.1/crates/running-process-py/src/tests/process_tree.rs +88 -0
  62. running_process-3.2.1/crates/running-process-py/src/tests/pty_buffer.rs +264 -0
  63. running_process-3.2.1/crates/running-process-py/src/tests/pty_process.rs +577 -0
  64. running_process-3.2.1/crates/running-process-py/src/tests/registry.rs +168 -0
  65. running_process-3.2.1/crates/running-process-py/src/tests/signal_bool.rs +76 -0
  66. running_process-3.2.1/crates/running-process-py/src/tests/terminal_input.rs +876 -0
  67. running_process-3.2.1/crates/test-watchdog/Cargo.toml +6 -0
  68. running_process-3.2.1/crates/test-watchdog/src/lib.rs +153 -0
  69. running_process-3.2.1/pyproject.toml +80 -0
  70. running_process-3.2.1/src/running_process/__init__.py +133 -0
  71. running_process-3.2.1/src/running_process/assets/example.txt +1 -0
  72. running_process-3.2.1/src/running_process/cli.py +708 -0
  73. running_process-3.2.1/src/running_process/command_render.py +36 -0
  74. running_process-3.2.1/src/running_process/compat.py +37 -0
  75. running_process-3.2.1/src/running_process/console_encoding.py +69 -0
  76. running_process-3.2.1/src/running_process/daemon.py +538 -0
  77. running_process-3.2.1/src/running_process/dashboard.py +610 -0
  78. running_process-3.2.1/src/running_process/exit_status.py +100 -0
  79. running_process-3.2.1/src/running_process/expect.py +71 -0
  80. running_process-3.2.1/src/running_process/interrupt_handler.py +28 -0
  81. running_process-3.2.1/src/running_process/launch.py +74 -0
  82. running_process-3.2.1/src/running_process/line_iterator.py +34 -0
  83. running_process-3.2.1/src/running_process/output_formatter.py +40 -0
  84. running_process-3.2.1/src/running_process/priority.py +28 -0
  85. running_process-3.2.1/src/running_process/process_utils.py +11 -0
  86. running_process-3.2.1/src/running_process/processor_cli.py +57 -0
  87. running_process-3.2.1/src/running_process/pty.py +2671 -0
  88. running_process-3.2.1/src/running_process/running_process.py +1413 -0
  89. running_process-3.2.1/src/running_process/running_process_manager.py +88 -0
@@ -0,0 +1,1950 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "1.1.4"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anstream"
28
+ version = "1.0.0"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31
+ dependencies = [
32
+ "anstyle",
33
+ "anstyle-parse",
34
+ "anstyle-query",
35
+ "anstyle-wincon",
36
+ "colorchoice",
37
+ "is_terminal_polyfill",
38
+ "utf8parse",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "anstyle"
43
+ version = "1.0.14"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
+
47
+ [[package]]
48
+ name = "anstyle-parse"
49
+ version = "1.0.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52
+ dependencies = [
53
+ "utf8parse",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "anstyle-query"
58
+ version = "1.1.5"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61
+ dependencies = [
62
+ "windows-sys",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-wincon"
67
+ version = "3.0.11"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70
+ dependencies = [
71
+ "anstyle",
72
+ "once_cell_polyfill",
73
+ "windows-sys",
74
+ ]
75
+
76
+ [[package]]
77
+ name = "anyhow"
78
+ version = "1.0.102"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
81
+
82
+ [[package]]
83
+ name = "autocfg"
84
+ version = "1.5.0"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
87
+
88
+ [[package]]
89
+ name = "beef"
90
+ version = "0.5.2"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
93
+
94
+ [[package]]
95
+ name = "bitflags"
96
+ version = "1.3.2"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
99
+
100
+ [[package]]
101
+ name = "bitflags"
102
+ version = "2.11.1"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
105
+
106
+ [[package]]
107
+ name = "bytes"
108
+ version = "1.11.1"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
111
+
112
+ [[package]]
113
+ name = "cc"
114
+ version = "1.2.62"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
117
+ dependencies = [
118
+ "find-msvc-tools",
119
+ "shlex",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "cfg-if"
124
+ version = "1.0.4"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
127
+
128
+ [[package]]
129
+ name = "cfg_aliases"
130
+ version = "0.1.1"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
133
+
134
+ [[package]]
135
+ name = "clap"
136
+ version = "4.6.1"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
139
+ dependencies = [
140
+ "clap_builder",
141
+ "clap_derive",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "clap_builder"
146
+ version = "4.6.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
149
+ dependencies = [
150
+ "anstream",
151
+ "anstyle",
152
+ "clap_lex",
153
+ "strsim",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "clap_derive"
158
+ version = "4.6.1"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
161
+ dependencies = [
162
+ "heck",
163
+ "proc-macro2",
164
+ "quote",
165
+ "syn",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "clap_lex"
170
+ version = "1.1.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
173
+
174
+ [[package]]
175
+ name = "colorchoice"
176
+ version = "1.0.5"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
179
+
180
+ [[package]]
181
+ name = "core-foundation-sys"
182
+ version = "0.8.7"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
185
+
186
+ [[package]]
187
+ name = "crossbeam-deque"
188
+ version = "0.8.6"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
191
+ dependencies = [
192
+ "crossbeam-epoch",
193
+ "crossbeam-utils",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "crossbeam-epoch"
198
+ version = "0.9.18"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
201
+ dependencies = [
202
+ "crossbeam-utils",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "crossbeam-utils"
207
+ version = "0.8.21"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
210
+
211
+ [[package]]
212
+ name = "daemon-trampoline"
213
+ version = "3.2.1"
214
+ dependencies = [
215
+ "libc",
216
+ "serde",
217
+ "serde_json",
218
+ "winapi",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "dirs"
223
+ version = "6.0.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
226
+ dependencies = [
227
+ "dirs-sys",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "dirs-sys"
232
+ version = "0.5.0"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
235
+ dependencies = [
236
+ "libc",
237
+ "option-ext",
238
+ "redox_users",
239
+ "windows-sys",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "doctest-file"
244
+ version = "1.1.1"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "c2db04e74f0a9a93103b50e90b96024c9b2bdca8bce6a632ec71b88736d3d359"
247
+
248
+ [[package]]
249
+ name = "downcast-rs"
250
+ version = "1.2.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
253
+
254
+ [[package]]
255
+ name = "either"
256
+ version = "1.15.0"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
259
+
260
+ [[package]]
261
+ name = "equivalent"
262
+ version = "1.0.2"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
265
+
266
+ [[package]]
267
+ name = "errno"
268
+ version = "0.3.14"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
271
+ dependencies = [
272
+ "libc",
273
+ "windows-sys",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "fallible-iterator"
278
+ version = "0.3.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
281
+
282
+ [[package]]
283
+ name = "fallible-streaming-iterator"
284
+ version = "0.1.9"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
287
+
288
+ [[package]]
289
+ name = "fastrand"
290
+ version = "2.4.1"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
293
+
294
+ [[package]]
295
+ name = "filedescriptor"
296
+ version = "0.8.3"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "e40758ed24c9b2eeb76c35fb0aebc66c626084edd827e07e1552279814c6682d"
299
+ dependencies = [
300
+ "libc",
301
+ "thiserror 1.0.69",
302
+ "winapi",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "find-msvc-tools"
307
+ version = "0.1.9"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
310
+
311
+ [[package]]
312
+ name = "fixedbitset"
313
+ version = "0.5.7"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
316
+
317
+ [[package]]
318
+ name = "fnv"
319
+ version = "1.0.7"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
322
+
323
+ [[package]]
324
+ name = "foldhash"
325
+ version = "0.1.5"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
328
+
329
+ [[package]]
330
+ name = "futures-core"
331
+ version = "0.3.32"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
334
+
335
+ [[package]]
336
+ name = "futures-macro"
337
+ version = "0.3.32"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
340
+ dependencies = [
341
+ "proc-macro2",
342
+ "quote",
343
+ "syn",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "futures-sink"
348
+ version = "0.3.32"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
351
+
352
+ [[package]]
353
+ name = "futures-task"
354
+ version = "0.3.32"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
357
+
358
+ [[package]]
359
+ name = "futures-util"
360
+ version = "0.3.32"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
363
+ dependencies = [
364
+ "futures-core",
365
+ "futures-macro",
366
+ "futures-sink",
367
+ "futures-task",
368
+ "pin-project-lite",
369
+ "slab",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "getrandom"
374
+ version = "0.2.17"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
377
+ dependencies = [
378
+ "cfg-if",
379
+ "libc",
380
+ "wasi",
381
+ ]
382
+
383
+ [[package]]
384
+ name = "getrandom"
385
+ version = "0.4.2"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
388
+ dependencies = [
389
+ "cfg-if",
390
+ "libc",
391
+ "r-efi",
392
+ "wasip2",
393
+ "wasip3",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "hashbrown"
398
+ version = "0.14.5"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
401
+ dependencies = [
402
+ "ahash",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "hashbrown"
407
+ version = "0.15.5"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
410
+ dependencies = [
411
+ "foldhash",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "hashbrown"
416
+ version = "0.17.1"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
419
+
420
+ [[package]]
421
+ name = "hashlink"
422
+ version = "0.9.1"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
425
+ dependencies = [
426
+ "hashbrown 0.14.5",
427
+ ]
428
+
429
+ [[package]]
430
+ name = "heck"
431
+ version = "0.5.0"
432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
433
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
434
+
435
+ [[package]]
436
+ name = "id-arena"
437
+ version = "2.3.0"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
440
+
441
+ [[package]]
442
+ name = "indexmap"
443
+ version = "2.14.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
446
+ dependencies = [
447
+ "equivalent",
448
+ "hashbrown 0.17.1",
449
+ "serde",
450
+ "serde_core",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "indoc"
455
+ version = "2.0.7"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
458
+ dependencies = [
459
+ "rustversion",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "interprocess"
464
+ version = "2.4.2"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "069323743400cb7ab06a8fe5c1ed911d36b6919ec531661d034c89083629595b"
467
+ dependencies = [
468
+ "doctest-file",
469
+ "futures-core",
470
+ "libc",
471
+ "recvmsg",
472
+ "tokio",
473
+ "widestring",
474
+ "windows-sys",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "is_terminal_polyfill"
479
+ version = "1.70.2"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
482
+
483
+ [[package]]
484
+ name = "itertools"
485
+ version = "0.14.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
488
+ dependencies = [
489
+ "either",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "itoa"
494
+ version = "1.0.18"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
497
+
498
+ [[package]]
499
+ name = "lazy_static"
500
+ version = "1.5.0"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
503
+
504
+ [[package]]
505
+ name = "leb128fmt"
506
+ version = "0.1.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
509
+
510
+ [[package]]
511
+ name = "libc"
512
+ version = "0.2.186"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
515
+
516
+ [[package]]
517
+ name = "libredox"
518
+ version = "0.1.16"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
521
+ dependencies = [
522
+ "libc",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "libsqlite3-sys"
527
+ version = "0.30.1"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
530
+ dependencies = [
531
+ "cc",
532
+ "pkg-config",
533
+ "vcpkg",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "linux-raw-sys"
538
+ version = "0.12.1"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
541
+
542
+ [[package]]
543
+ name = "lock_api"
544
+ version = "0.4.14"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
547
+ dependencies = [
548
+ "scopeguard",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "log"
553
+ version = "0.4.29"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
556
+
557
+ [[package]]
558
+ name = "logos"
559
+ version = "0.15.1"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "ff472f899b4ec2d99161c51f60ff7075eeb3097069a36050d8037a6325eb8154"
562
+ dependencies = [
563
+ "logos-derive",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "logos-codegen"
568
+ version = "0.15.1"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "192a3a2b90b0c05b27a0b2c43eecdb7c415e29243acc3f89cc8247a5b693045c"
571
+ dependencies = [
572
+ "beef",
573
+ "fnv",
574
+ "lazy_static",
575
+ "proc-macro2",
576
+ "quote",
577
+ "regex-syntax",
578
+ "rustc_version",
579
+ "syn",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "logos-derive"
584
+ version = "0.15.1"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "605d9697bcd5ef3a42d38efc51541aa3d6a4a25f7ab6d1ed0da5ac632a26b470"
587
+ dependencies = [
588
+ "logos-codegen",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "matchers"
593
+ version = "0.2.0"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
596
+ dependencies = [
597
+ "regex-automata",
598
+ ]
599
+
600
+ [[package]]
601
+ name = "memchr"
602
+ version = "2.8.0"
603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
604
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
605
+
606
+ [[package]]
607
+ name = "memoffset"
608
+ version = "0.9.1"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
611
+ dependencies = [
612
+ "autocfg",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "miette"
617
+ version = "7.6.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
620
+ dependencies = [
621
+ "cfg-if",
622
+ "miette-derive",
623
+ "unicode-width",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "miette-derive"
628
+ version = "7.6.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
631
+ dependencies = [
632
+ "proc-macro2",
633
+ "quote",
634
+ "syn",
635
+ ]
636
+
637
+ [[package]]
638
+ name = "mio"
639
+ version = "1.2.0"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
642
+ dependencies = [
643
+ "libc",
644
+ "wasi",
645
+ "windows-sys",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "multimap"
650
+ version = "0.10.1"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
653
+
654
+ [[package]]
655
+ name = "nix"
656
+ version = "0.28.0"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
659
+ dependencies = [
660
+ "bitflags 2.11.1",
661
+ "cfg-if",
662
+ "cfg_aliases",
663
+ "libc",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "ntapi"
668
+ version = "0.4.3"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
671
+ dependencies = [
672
+ "winapi",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "nu-ansi-term"
677
+ version = "0.50.3"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
680
+ dependencies = [
681
+ "windows-sys",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "once_cell"
686
+ version = "1.21.4"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
689
+
690
+ [[package]]
691
+ name = "once_cell_polyfill"
692
+ version = "1.70.2"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
695
+
696
+ [[package]]
697
+ name = "option-ext"
698
+ version = "0.2.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
701
+
702
+ [[package]]
703
+ name = "parking_lot"
704
+ version = "0.12.5"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
707
+ dependencies = [
708
+ "lock_api",
709
+ "parking_lot_core",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "parking_lot_core"
714
+ version = "0.9.12"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
717
+ dependencies = [
718
+ "cfg-if",
719
+ "libc",
720
+ "redox_syscall",
721
+ "smallvec",
722
+ "windows-link",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "petgraph"
727
+ version = "0.8.3"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
730
+ dependencies = [
731
+ "fixedbitset",
732
+ "hashbrown 0.15.5",
733
+ "indexmap",
734
+ ]
735
+
736
+ [[package]]
737
+ name = "pin-project-lite"
738
+ version = "0.2.17"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
741
+
742
+ [[package]]
743
+ name = "pkg-config"
744
+ version = "0.3.33"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
747
+
748
+ [[package]]
749
+ name = "portable-atomic"
750
+ version = "1.13.1"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
753
+
754
+ [[package]]
755
+ name = "portable-pty"
756
+ version = "0.9.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "b4a596a2b3d2752d94f51fac2d4a96737b8705dddd311a32b9af47211f08671e"
759
+ dependencies = [
760
+ "anyhow",
761
+ "bitflags 1.3.2",
762
+ "downcast-rs",
763
+ "filedescriptor",
764
+ "lazy_static",
765
+ "libc",
766
+ "log",
767
+ "nix",
768
+ "serial2",
769
+ "shared_library",
770
+ "shell-words",
771
+ "winapi",
772
+ "winreg",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "prettyplease"
777
+ version = "0.2.37"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
780
+ dependencies = [
781
+ "proc-macro2",
782
+ "syn",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "proc-macro2"
787
+ version = "1.0.106"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
790
+ dependencies = [
791
+ "unicode-ident",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "prost"
796
+ version = "0.14.3"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
799
+ dependencies = [
800
+ "bytes",
801
+ "prost-derive",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "prost-build"
806
+ version = "0.14.3"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
809
+ dependencies = [
810
+ "heck",
811
+ "itertools",
812
+ "log",
813
+ "multimap",
814
+ "petgraph",
815
+ "prettyplease",
816
+ "prost",
817
+ "prost-types",
818
+ "regex",
819
+ "syn",
820
+ "tempfile",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "prost-derive"
825
+ version = "0.14.3"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
828
+ dependencies = [
829
+ "anyhow",
830
+ "itertools",
831
+ "proc-macro2",
832
+ "quote",
833
+ "syn",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "prost-reflect"
838
+ version = "0.16.3"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "b89455ef41ed200cafc47c76c552ee7792370ac420497e551f16123a9135f76e"
841
+ dependencies = [
842
+ "logos",
843
+ "miette",
844
+ "prost",
845
+ "prost-types",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "prost-types"
850
+ version = "0.14.3"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
853
+ dependencies = [
854
+ "prost",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "protox"
859
+ version = "0.9.1"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "4f25a07a73c6717f0b9bbbd685918f5df9815f7efba450b83d9c9dea41f0e3a1"
862
+ dependencies = [
863
+ "bytes",
864
+ "miette",
865
+ "prost",
866
+ "prost-reflect",
867
+ "prost-types",
868
+ "protox-parse",
869
+ "thiserror 2.0.18",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "protox-parse"
874
+ version = "0.9.0"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "072eee358134396a4643dff81cfff1c255c9fbd3fb296be14bdb6a26f9156366"
877
+ dependencies = [
878
+ "logos",
879
+ "miette",
880
+ "prost-types",
881
+ "thiserror 2.0.18",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "pyo3"
886
+ version = "0.23.5"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
889
+ dependencies = [
890
+ "cfg-if",
891
+ "indoc",
892
+ "libc",
893
+ "memoffset",
894
+ "once_cell",
895
+ "portable-atomic",
896
+ "pyo3-build-config",
897
+ "pyo3-ffi",
898
+ "pyo3-macros",
899
+ "unindent",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "pyo3-build-config"
904
+ version = "0.23.5"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
907
+ dependencies = [
908
+ "once_cell",
909
+ "target-lexicon",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "pyo3-ffi"
914
+ version = "0.23.5"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
917
+ dependencies = [
918
+ "libc",
919
+ "pyo3-build-config",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "pyo3-macros"
924
+ version = "0.23.5"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
927
+ dependencies = [
928
+ "proc-macro2",
929
+ "pyo3-macros-backend",
930
+ "quote",
931
+ "syn",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "pyo3-macros-backend"
936
+ version = "0.23.5"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
939
+ dependencies = [
940
+ "heck",
941
+ "proc-macro2",
942
+ "pyo3-build-config",
943
+ "quote",
944
+ "syn",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "quote"
949
+ version = "1.0.45"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
952
+ dependencies = [
953
+ "proc-macro2",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "r-efi"
958
+ version = "6.0.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
961
+
962
+ [[package]]
963
+ name = "rayon"
964
+ version = "1.12.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
967
+ dependencies = [
968
+ "either",
969
+ "rayon-core",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "rayon-core"
974
+ version = "1.13.0"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
977
+ dependencies = [
978
+ "crossbeam-deque",
979
+ "crossbeam-utils",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "recvmsg"
984
+ version = "1.0.0"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "d3edd4d5d42c92f0a659926464d4cce56b562761267ecf0f469d85b7de384175"
987
+
988
+ [[package]]
989
+ name = "redox_syscall"
990
+ version = "0.5.18"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
993
+ dependencies = [
994
+ "bitflags 2.11.1",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "redox_users"
999
+ version = "0.5.2"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1002
+ dependencies = [
1003
+ "getrandom 0.2.17",
1004
+ "libredox",
1005
+ "thiserror 2.0.18",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "regex"
1010
+ version = "1.12.3"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1013
+ dependencies = [
1014
+ "aho-corasick",
1015
+ "memchr",
1016
+ "regex-automata",
1017
+ "regex-syntax",
1018
+ ]
1019
+
1020
+ [[package]]
1021
+ name = "regex-automata"
1022
+ version = "0.4.14"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1025
+ dependencies = [
1026
+ "aho-corasick",
1027
+ "memchr",
1028
+ "regex-syntax",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "regex-syntax"
1033
+ version = "0.8.10"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1036
+
1037
+ [[package]]
1038
+ name = "running-process-client"
1039
+ version = "3.2.1"
1040
+ dependencies = [
1041
+ "dirs",
1042
+ "interprocess",
1043
+ "libc",
1044
+ "prost",
1045
+ "running-process-proto",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "running-process-core"
1050
+ version = "3.2.1"
1051
+ dependencies = [
1052
+ "libc",
1053
+ "portable-pty",
1054
+ "serde_json",
1055
+ "sysinfo",
1056
+ "tempfile",
1057
+ "test-watchdog",
1058
+ "thiserror 2.0.18",
1059
+ "winapi",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "running-process-daemon"
1064
+ version = "3.2.1"
1065
+ dependencies = [
1066
+ "bytes",
1067
+ "clap",
1068
+ "dirs",
1069
+ "futures-util",
1070
+ "interprocess",
1071
+ "libc",
1072
+ "prost",
1073
+ "running-process-client",
1074
+ "running-process-core",
1075
+ "running-process-proto",
1076
+ "rusqlite",
1077
+ "serde",
1078
+ "serde_json",
1079
+ "sysinfo",
1080
+ "tempfile",
1081
+ "tokio",
1082
+ "tokio-util",
1083
+ "toml",
1084
+ "tracing",
1085
+ "tracing-subscriber",
1086
+ "winapi",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "running-process-proto"
1091
+ version = "3.2.1"
1092
+ dependencies = [
1093
+ "prost",
1094
+ "prost-build",
1095
+ "prost-types",
1096
+ "protox",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "running-process-py"
1101
+ version = "3.2.1"
1102
+ dependencies = [
1103
+ "interprocess",
1104
+ "libc",
1105
+ "prost",
1106
+ "pyo3",
1107
+ "regex",
1108
+ "running-process-client",
1109
+ "running-process-core",
1110
+ "running-process-proto",
1111
+ "sysinfo",
1112
+ "winapi",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "runpm-cli"
1117
+ version = "3.2.1"
1118
+ dependencies = [
1119
+ "anyhow",
1120
+ "clap",
1121
+ "running-process-client",
1122
+ "running-process-proto",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "rusqlite"
1127
+ version = "0.32.1"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
1130
+ dependencies = [
1131
+ "bitflags 2.11.1",
1132
+ "fallible-iterator",
1133
+ "fallible-streaming-iterator",
1134
+ "hashlink",
1135
+ "libsqlite3-sys",
1136
+ "smallvec",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "rustc_version"
1141
+ version = "0.4.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1144
+ dependencies = [
1145
+ "semver",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "rustix"
1150
+ version = "1.1.4"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1153
+ dependencies = [
1154
+ "bitflags 2.11.1",
1155
+ "errno",
1156
+ "libc",
1157
+ "linux-raw-sys",
1158
+ "windows-sys",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "rustversion"
1163
+ version = "1.0.22"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1166
+
1167
+ [[package]]
1168
+ name = "scopeguard"
1169
+ version = "1.2.0"
1170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1171
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1172
+
1173
+ [[package]]
1174
+ name = "semver"
1175
+ version = "1.0.28"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1178
+
1179
+ [[package]]
1180
+ name = "serde"
1181
+ version = "1.0.228"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1184
+ dependencies = [
1185
+ "serde_core",
1186
+ "serde_derive",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "serde_core"
1191
+ version = "1.0.228"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1194
+ dependencies = [
1195
+ "serde_derive",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "serde_derive"
1200
+ version = "1.0.228"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1203
+ dependencies = [
1204
+ "proc-macro2",
1205
+ "quote",
1206
+ "syn",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "serde_json"
1211
+ version = "1.0.149"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1214
+ dependencies = [
1215
+ "itoa",
1216
+ "memchr",
1217
+ "serde",
1218
+ "serde_core",
1219
+ "zmij",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "serde_spanned"
1224
+ version = "0.6.9"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1227
+ dependencies = [
1228
+ "serde",
1229
+ ]
1230
+
1231
+ [[package]]
1232
+ name = "serial2"
1233
+ version = "0.2.37"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "9eb6ea5562eeaed6936b8b54e086aa0f88b9e5b1bef45beb038e2519fa1185b1"
1236
+ dependencies = [
1237
+ "cfg-if",
1238
+ "libc",
1239
+ "windows-sys",
1240
+ ]
1241
+
1242
+ [[package]]
1243
+ name = "sharded-slab"
1244
+ version = "0.1.7"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1247
+ dependencies = [
1248
+ "lazy_static",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "shared_library"
1253
+ version = "0.1.9"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11"
1256
+ dependencies = [
1257
+ "lazy_static",
1258
+ "libc",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "shell-words"
1263
+ version = "1.1.1"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
1266
+
1267
+ [[package]]
1268
+ name = "shlex"
1269
+ version = "1.3.0"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1272
+
1273
+ [[package]]
1274
+ name = "signal-hook-registry"
1275
+ version = "1.4.8"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1278
+ dependencies = [
1279
+ "errno",
1280
+ "libc",
1281
+ ]
1282
+
1283
+ [[package]]
1284
+ name = "slab"
1285
+ version = "0.4.12"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1288
+
1289
+ [[package]]
1290
+ name = "smallvec"
1291
+ version = "1.15.1"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1294
+
1295
+ [[package]]
1296
+ name = "socket2"
1297
+ version = "0.6.3"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1300
+ dependencies = [
1301
+ "libc",
1302
+ "windows-sys",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "strsim"
1307
+ version = "0.11.1"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1310
+
1311
+ [[package]]
1312
+ name = "syn"
1313
+ version = "2.0.117"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1316
+ dependencies = [
1317
+ "proc-macro2",
1318
+ "quote",
1319
+ "unicode-ident",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "sysinfo"
1324
+ version = "0.30.13"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
1327
+ dependencies = [
1328
+ "cfg-if",
1329
+ "core-foundation-sys",
1330
+ "libc",
1331
+ "ntapi",
1332
+ "once_cell",
1333
+ "rayon",
1334
+ "windows",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "target-lexicon"
1339
+ version = "0.12.16"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1342
+
1343
+ [[package]]
1344
+ name = "tempfile"
1345
+ version = "3.27.0"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1348
+ dependencies = [
1349
+ "fastrand",
1350
+ "getrandom 0.4.2",
1351
+ "once_cell",
1352
+ "rustix",
1353
+ "windows-sys",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "test-watchdog"
1358
+ version = "0.0.0"
1359
+
1360
+ [[package]]
1361
+ name = "testbin-cwd-reporter"
1362
+ version = "0.0.0"
1363
+
1364
+ [[package]]
1365
+ name = "testbin-dies-after-spawn"
1366
+ version = "0.0.0"
1367
+ dependencies = [
1368
+ "running-process-core",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "testbin-env-dump"
1373
+ version = "0.0.0"
1374
+
1375
+ [[package]]
1376
+ name = "testbin-env-reporter"
1377
+ version = "0.0.0"
1378
+
1379
+ [[package]]
1380
+ name = "testbin-sleeper"
1381
+ version = "0.0.0"
1382
+
1383
+ [[package]]
1384
+ name = "testbin-spawner"
1385
+ version = "0.0.0"
1386
+ dependencies = [
1387
+ "running-process-core",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "thiserror"
1392
+ version = "1.0.69"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1395
+ dependencies = [
1396
+ "thiserror-impl 1.0.69",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "thiserror"
1401
+ version = "2.0.18"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1404
+ dependencies = [
1405
+ "thiserror-impl 2.0.18",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "thiserror-impl"
1410
+ version = "1.0.69"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1413
+ dependencies = [
1414
+ "proc-macro2",
1415
+ "quote",
1416
+ "syn",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "thiserror-impl"
1421
+ version = "2.0.18"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1424
+ dependencies = [
1425
+ "proc-macro2",
1426
+ "quote",
1427
+ "syn",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "thread_local"
1432
+ version = "1.1.9"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1435
+ dependencies = [
1436
+ "cfg-if",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "tokio"
1441
+ version = "1.52.3"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1444
+ dependencies = [
1445
+ "bytes",
1446
+ "libc",
1447
+ "mio",
1448
+ "parking_lot",
1449
+ "pin-project-lite",
1450
+ "signal-hook-registry",
1451
+ "socket2",
1452
+ "tokio-macros",
1453
+ "windows-sys",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "tokio-macros"
1458
+ version = "2.7.0"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1461
+ dependencies = [
1462
+ "proc-macro2",
1463
+ "quote",
1464
+ "syn",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "tokio-util"
1469
+ version = "0.7.18"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1472
+ dependencies = [
1473
+ "bytes",
1474
+ "futures-core",
1475
+ "futures-sink",
1476
+ "pin-project-lite",
1477
+ "tokio",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "toml"
1482
+ version = "0.8.23"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1485
+ dependencies = [
1486
+ "serde",
1487
+ "serde_spanned",
1488
+ "toml_datetime",
1489
+ "toml_edit",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "toml_datetime"
1494
+ version = "0.6.11"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1497
+ dependencies = [
1498
+ "serde",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "toml_edit"
1503
+ version = "0.22.27"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1506
+ dependencies = [
1507
+ "indexmap",
1508
+ "serde",
1509
+ "serde_spanned",
1510
+ "toml_datetime",
1511
+ "toml_write",
1512
+ "winnow",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "toml_write"
1517
+ version = "0.1.2"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1520
+
1521
+ [[package]]
1522
+ name = "tracing"
1523
+ version = "0.1.44"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1526
+ dependencies = [
1527
+ "pin-project-lite",
1528
+ "tracing-attributes",
1529
+ "tracing-core",
1530
+ ]
1531
+
1532
+ [[package]]
1533
+ name = "tracing-attributes"
1534
+ version = "0.1.31"
1535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1536
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1537
+ dependencies = [
1538
+ "proc-macro2",
1539
+ "quote",
1540
+ "syn",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "tracing-core"
1545
+ version = "0.1.36"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1548
+ dependencies = [
1549
+ "once_cell",
1550
+ "valuable",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "tracing-log"
1555
+ version = "0.2.0"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1558
+ dependencies = [
1559
+ "log",
1560
+ "once_cell",
1561
+ "tracing-core",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "tracing-subscriber"
1566
+ version = "0.3.23"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1569
+ dependencies = [
1570
+ "matchers",
1571
+ "nu-ansi-term",
1572
+ "once_cell",
1573
+ "regex-automata",
1574
+ "sharded-slab",
1575
+ "smallvec",
1576
+ "thread_local",
1577
+ "tracing",
1578
+ "tracing-core",
1579
+ "tracing-log",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "unicode-ident"
1584
+ version = "1.0.24"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1587
+
1588
+ [[package]]
1589
+ name = "unicode-width"
1590
+ version = "0.1.14"
1591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1592
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1593
+
1594
+ [[package]]
1595
+ name = "unicode-xid"
1596
+ version = "0.2.6"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1599
+
1600
+ [[package]]
1601
+ name = "unindent"
1602
+ version = "0.2.4"
1603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1604
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1605
+
1606
+ [[package]]
1607
+ name = "utf8parse"
1608
+ version = "0.2.2"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1611
+
1612
+ [[package]]
1613
+ name = "valuable"
1614
+ version = "0.1.1"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1617
+
1618
+ [[package]]
1619
+ name = "vcpkg"
1620
+ version = "0.2.15"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1623
+
1624
+ [[package]]
1625
+ name = "version_check"
1626
+ version = "0.9.5"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1629
+
1630
+ [[package]]
1631
+ name = "wasi"
1632
+ version = "0.11.1+wasi-snapshot-preview1"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1635
+
1636
+ [[package]]
1637
+ name = "wasip2"
1638
+ version = "1.0.3+wasi-0.2.9"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1641
+ dependencies = [
1642
+ "wit-bindgen 0.57.1",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "wasip3"
1647
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1650
+ dependencies = [
1651
+ "wit-bindgen 0.51.0",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "wasm-encoder"
1656
+ version = "0.244.0"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1659
+ dependencies = [
1660
+ "leb128fmt",
1661
+ "wasmparser",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "wasm-metadata"
1666
+ version = "0.244.0"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1669
+ dependencies = [
1670
+ "anyhow",
1671
+ "indexmap",
1672
+ "wasm-encoder",
1673
+ "wasmparser",
1674
+ ]
1675
+
1676
+ [[package]]
1677
+ name = "wasmparser"
1678
+ version = "0.244.0"
1679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1680
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1681
+ dependencies = [
1682
+ "bitflags 2.11.1",
1683
+ "hashbrown 0.15.5",
1684
+ "indexmap",
1685
+ "semver",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "widestring"
1690
+ version = "1.2.1"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
1693
+
1694
+ [[package]]
1695
+ name = "winapi"
1696
+ version = "0.3.9"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1699
+ dependencies = [
1700
+ "winapi-i686-pc-windows-gnu",
1701
+ "winapi-x86_64-pc-windows-gnu",
1702
+ ]
1703
+
1704
+ [[package]]
1705
+ name = "winapi-i686-pc-windows-gnu"
1706
+ version = "0.4.0"
1707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1708
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1709
+
1710
+ [[package]]
1711
+ name = "winapi-x86_64-pc-windows-gnu"
1712
+ version = "0.4.0"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1715
+
1716
+ [[package]]
1717
+ name = "windows"
1718
+ version = "0.52.0"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
1721
+ dependencies = [
1722
+ "windows-core",
1723
+ "windows-targets",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "windows-core"
1728
+ version = "0.52.0"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1731
+ dependencies = [
1732
+ "windows-targets",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "windows-link"
1737
+ version = "0.2.1"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1740
+
1741
+ [[package]]
1742
+ name = "windows-sys"
1743
+ version = "0.61.2"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1746
+ dependencies = [
1747
+ "windows-link",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "windows-targets"
1752
+ version = "0.52.6"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1755
+ dependencies = [
1756
+ "windows_aarch64_gnullvm",
1757
+ "windows_aarch64_msvc",
1758
+ "windows_i686_gnu",
1759
+ "windows_i686_gnullvm",
1760
+ "windows_i686_msvc",
1761
+ "windows_x86_64_gnu",
1762
+ "windows_x86_64_gnullvm",
1763
+ "windows_x86_64_msvc",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "windows_aarch64_gnullvm"
1768
+ version = "0.52.6"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1771
+
1772
+ [[package]]
1773
+ name = "windows_aarch64_msvc"
1774
+ version = "0.52.6"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1777
+
1778
+ [[package]]
1779
+ name = "windows_i686_gnu"
1780
+ version = "0.52.6"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1783
+
1784
+ [[package]]
1785
+ name = "windows_i686_gnullvm"
1786
+ version = "0.52.6"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1789
+
1790
+ [[package]]
1791
+ name = "windows_i686_msvc"
1792
+ version = "0.52.6"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1795
+
1796
+ [[package]]
1797
+ name = "windows_x86_64_gnu"
1798
+ version = "0.52.6"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1801
+
1802
+ [[package]]
1803
+ name = "windows_x86_64_gnullvm"
1804
+ version = "0.52.6"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1807
+
1808
+ [[package]]
1809
+ name = "windows_x86_64_msvc"
1810
+ version = "0.52.6"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1813
+
1814
+ [[package]]
1815
+ name = "winnow"
1816
+ version = "0.7.15"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
1819
+ dependencies = [
1820
+ "memchr",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "winreg"
1825
+ version = "0.10.1"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
1828
+ dependencies = [
1829
+ "winapi",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "wit-bindgen"
1834
+ version = "0.51.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1837
+ dependencies = [
1838
+ "wit-bindgen-rust-macro",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "wit-bindgen"
1843
+ version = "0.57.1"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1846
+
1847
+ [[package]]
1848
+ name = "wit-bindgen-core"
1849
+ version = "0.51.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1852
+ dependencies = [
1853
+ "anyhow",
1854
+ "heck",
1855
+ "wit-parser",
1856
+ ]
1857
+
1858
+ [[package]]
1859
+ name = "wit-bindgen-rust"
1860
+ version = "0.51.0"
1861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1862
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1863
+ dependencies = [
1864
+ "anyhow",
1865
+ "heck",
1866
+ "indexmap",
1867
+ "prettyplease",
1868
+ "syn",
1869
+ "wasm-metadata",
1870
+ "wit-bindgen-core",
1871
+ "wit-component",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "wit-bindgen-rust-macro"
1876
+ version = "0.51.0"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1879
+ dependencies = [
1880
+ "anyhow",
1881
+ "prettyplease",
1882
+ "proc-macro2",
1883
+ "quote",
1884
+ "syn",
1885
+ "wit-bindgen-core",
1886
+ "wit-bindgen-rust",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "wit-component"
1891
+ version = "0.244.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1894
+ dependencies = [
1895
+ "anyhow",
1896
+ "bitflags 2.11.1",
1897
+ "indexmap",
1898
+ "log",
1899
+ "serde",
1900
+ "serde_derive",
1901
+ "serde_json",
1902
+ "wasm-encoder",
1903
+ "wasm-metadata",
1904
+ "wasmparser",
1905
+ "wit-parser",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "wit-parser"
1910
+ version = "0.244.0"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1913
+ dependencies = [
1914
+ "anyhow",
1915
+ "id-arena",
1916
+ "indexmap",
1917
+ "log",
1918
+ "semver",
1919
+ "serde",
1920
+ "serde_derive",
1921
+ "serde_json",
1922
+ "unicode-xid",
1923
+ "wasmparser",
1924
+ ]
1925
+
1926
+ [[package]]
1927
+ name = "zerocopy"
1928
+ version = "0.8.48"
1929
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1930
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1931
+ dependencies = [
1932
+ "zerocopy-derive",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "zerocopy-derive"
1937
+ version = "0.8.48"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1940
+ dependencies = [
1941
+ "proc-macro2",
1942
+ "quote",
1943
+ "syn",
1944
+ ]
1945
+
1946
+ [[package]]
1947
+ name = "zmij"
1948
+ version = "1.0.21"
1949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1950
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"