writ-cli 0.1.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 (83) hide show
  1. writ_cli-0.1.1/Cargo.lock +2095 -0
  2. writ_cli-0.1.1/Cargo.toml +47 -0
  3. writ_cli-0.1.1/PKG-INFO +41 -0
  4. writ_cli-0.1.1/README.md +22 -0
  5. writ_cli-0.1.1/crates/writ-cli/Cargo.toml +35 -0
  6. writ_cli-0.1.1/crates/writ-cli/README.md +22 -0
  7. writ_cli-0.1.1/crates/writ-cli/src/cmds.rs +616 -0
  8. writ_cli-0.1.1/crates/writ-cli/src/hook.rs +1437 -0
  9. writ_cli-0.1.1/crates/writ-cli/src/integrate.rs +234 -0
  10. writ_cli-0.1.1/crates/writ-cli/src/main.rs +220 -0
  11. writ_cli-0.1.1/crates/writ-cli/src/report_template.html +39 -0
  12. writ_cli-0.1.1/crates/writ-cli/src/run.rs +443 -0
  13. writ_cli-0.1.1/crates/writ-cli/tests/check.rs +1148 -0
  14. writ_cli-0.1.1/crates/writ-cli/tests/run_confinement.rs +451 -0
  15. writ_cli-0.1.1/crates/writ-core/Cargo.toml +14 -0
  16. writ_cli-0.1.1/crates/writ-core/src/approver.rs +96 -0
  17. writ_cli-0.1.1/crates/writ-core/src/call.rs +178 -0
  18. writ_cli-0.1.1/crates/writ-core/src/error.rs +29 -0
  19. writ_cli-0.1.1/crates/writ-core/src/ledger.rs +273 -0
  20. writ_cli-0.1.1/crates/writ-core/src/lib.rs +54 -0
  21. writ_cli-0.1.1/crates/writ-core/src/pipeline.rs +104 -0
  22. writ_cli-0.1.1/crates/writ-core/src/policy.rs +34 -0
  23. writ_cli-0.1.1/crates/writ-core/src/sandbox.rs +64 -0
  24. writ_cli-0.1.1/crates/writ-core/src/time.rs +142 -0
  25. writ_cli-0.1.1/crates/writ-core/src/verdict.rs +73 -0
  26. writ_cli-0.1.1/crates/writ-core/tests/pipeline_ledger.rs +173 -0
  27. writ_cli-0.1.1/crates/writ-ledger/Cargo.toml +21 -0
  28. writ_cli-0.1.1/crates/writ-ledger/src/file_store.rs +441 -0
  29. writ_cli-0.1.1/crates/writ-ledger/src/lib.rs +42 -0
  30. writ_cli-0.1.1/crates/writ-ledger/src/query.rs +89 -0
  31. writ_cli-0.1.1/crates/writ-ledger/src/sqlite.rs +532 -0
  32. writ_cli-0.1.1/crates/writ-ledger/src/store.rs +107 -0
  33. writ_cli-0.1.1/crates/writ-ledger/src/verify.rs +82 -0
  34. writ_cli-0.1.1/crates/writ-ledger/tests/common/mod.rs +453 -0
  35. writ_cli-0.1.1/crates/writ-ledger/tests/file_ledger.rs +257 -0
  36. writ_cli-0.1.1/crates/writ-ledger/tests/sqlite_ledger.rs +379 -0
  37. writ_cli-0.1.1/crates/writ-mcp/Cargo.toml +14 -0
  38. writ_cli-0.1.1/crates/writ-mcp/src/credentials.rs +106 -0
  39. writ_cli-0.1.1/crates/writ-mcp/src/jsonrpc.rs +309 -0
  40. writ_cli-0.1.1/crates/writ-mcp/src/lib.rs +20 -0
  41. writ_cli-0.1.1/crates/writ-mcp/src/proxy.rs +235 -0
  42. writ_cli-0.1.1/crates/writ-mcp/src/transport.rs +64 -0
  43. writ_cli-0.1.1/crates/writ-mcp/tests/proxy_e2e.rs +183 -0
  44. writ_cli-0.1.1/crates/writ-otel/Cargo.toml +13 -0
  45. writ_cli-0.1.1/crates/writ-otel/src/lib.rs +304 -0
  46. writ_cli-0.1.1/crates/writ-policy/Cargo.toml +15 -0
  47. writ_cli-0.1.1/crates/writ-policy/fixtures/redact.yaml +17 -0
  48. writ_cli-0.1.1/crates/writ-policy/fixtures/spec-examples.yaml +39 -0
  49. writ_cli-0.1.1/crates/writ-policy/src/ast.rs +102 -0
  50. writ_cli-0.1.1/crates/writ-policy/src/engine.rs +249 -0
  51. writ_cli-0.1.1/crates/writ-policy/src/fixtures.rs +333 -0
  52. writ_cli-0.1.1/crates/writ-policy/src/lib.rs +35 -0
  53. writ_cli-0.1.1/crates/writ-policy/src/parser.rs +360 -0
  54. writ_cli-0.1.1/crates/writ-policy/src/policy_file.rs +307 -0
  55. writ_cli-0.1.1/crates/writ-policy/tests/engine_spec.rs +290 -0
  56. writ_cli-0.1.1/crates/writ-replay/Cargo.toml +15 -0
  57. writ_cli-0.1.1/crates/writ-replay/src/lib.rs +197 -0
  58. writ_cli-0.1.1/crates/writ-replay/tests/replay.rs +139 -0
  59. writ_cli-0.1.1/crates/writ-sandbox/Cargo.toml +54 -0
  60. writ_cli-0.1.1/crates/writ-sandbox/src/agents.rs +482 -0
  61. writ_cli-0.1.1/crates/writ-sandbox/src/detect.rs +122 -0
  62. writ_cli-0.1.1/crates/writ-sandbox/src/enforce.rs +304 -0
  63. writ_cli-0.1.1/crates/writ-sandbox/src/interactive.rs +637 -0
  64. writ_cli-0.1.1/crates/writ-sandbox/src/lib.rs +70 -0
  65. writ_cli-0.1.1/crates/writ-sandbox/src/linux.rs +523 -0
  66. writ_cli-0.1.1/crates/writ-sandbox/src/local_os.rs +430 -0
  67. writ_cli-0.1.1/crates/writ-sandbox/src/macos.rs +289 -0
  68. writ_cli-0.1.1/crates/writ-sandbox/src/platform.rs +130 -0
  69. writ_cli-0.1.1/crates/writ-sandbox/src/unix.rs +120 -0
  70. writ_cli-0.1.1/crates/writ-sandbox/src/windows.rs +1006 -0
  71. writ_cli-0.1.1/crates/writ-sandbox/src/windows_interactive.rs +931 -0
  72. writ_cli-0.1.1/crates/writ-sandbox/tests/common/mod.rs +180 -0
  73. writ_cli-0.1.1/crates/writ-sandbox/tests/interactive.rs +398 -0
  74. writ_cli-0.1.1/crates/writ-sandbox/tests/kernel_linux.rs +349 -0
  75. writ_cli-0.1.1/crates/writ-sandbox/tests/kernel_macos.rs +232 -0
  76. writ_cli-0.1.1/crates/writ-sandbox/tests/kernel_windows.rs +211 -0
  77. writ_cli-0.1.1/crates/writ-sandbox/tests/local_os.rs +160 -0
  78. writ_cli-0.1.1/crates/writ-tui/Cargo.toml +11 -0
  79. writ_cli-0.1.1/crates/writ-tui/src/gate.rs +162 -0
  80. writ_cli-0.1.1/crates/writ-tui/src/lib.rs +15 -0
  81. writ_cli-0.1.1/crates/writ-tui/src/meter.rs +87 -0
  82. writ_cli-0.1.1/crates/writ-tui/src/tree.rs +60 -0
  83. writ_cli-0.1.1/pyproject.toml +33 -0
@@ -0,0 +1,2095 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.5"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.6"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstyle"
25
+ version = "1.0.14"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
28
+
29
+ [[package]]
30
+ name = "anyhow"
31
+ version = "1.0.104"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
34
+
35
+ [[package]]
36
+ name = "ar_archive_writer"
37
+ version = "0.5.3"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "73cd58deff2140a0a8eae87e417bd01db68a33e148aa93d1e8cd837e55e312b6"
40
+ dependencies = [
41
+ "object",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "arrayvec"
46
+ version = "0.5.2"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
49
+
50
+ [[package]]
51
+ name = "ascii-canvas"
52
+ version = "4.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "ef1e3e699d84ab1b0911a1010c5c106aa34ae89aeac103be5ce0c3859db1e891"
55
+ dependencies = [
56
+ "term",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "autocfg"
61
+ version = "1.5.1"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
64
+
65
+ [[package]]
66
+ name = "base64"
67
+ version = "0.23.1"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
70
+
71
+ [[package]]
72
+ name = "bit-set"
73
+ version = "0.8.0"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
76
+ dependencies = [
77
+ "bit-vec",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "bit-vec"
82
+ version = "0.8.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
85
+
86
+ [[package]]
87
+ name = "bitflags"
88
+ version = "1.3.2"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
91
+
92
+ [[package]]
93
+ name = "bitflags"
94
+ version = "2.13.2"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
97
+
98
+ [[package]]
99
+ name = "block-buffer"
100
+ version = "0.10.4"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
103
+ dependencies = [
104
+ "generic-array",
105
+ ]
106
+
107
+ [[package]]
108
+ name = "block-buffer"
109
+ version = "0.12.1"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
112
+ dependencies = [
113
+ "hybrid-array",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "borsh"
118
+ version = "1.8.1"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "553c5d846a6ba5150c65e3b1b8ec073bcf1abc20f9b7220de384a4443ea4e20a"
121
+ dependencies = [
122
+ "bytes",
123
+ "cfg_aliases",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "bs58"
128
+ version = "0.5.1"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
131
+ dependencies = [
132
+ "tinyvec",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "bumpalo"
137
+ version = "3.20.3"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
140
+
141
+ [[package]]
142
+ name = "bytes"
143
+ version = "1.12.1"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
146
+
147
+ [[package]]
148
+ name = "cc"
149
+ version = "1.4.7"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "54413ede23c2daf518f35156dfde027feb2374004d63bd497f983c8db9c0e313"
152
+ dependencies = [
153
+ "find-msvc-tools",
154
+ "shlex",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "cedar-policy"
159
+ version = "4.13.0"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "5e4f5e46c425491b7133eecb3030d82d27301b84bfa08533c59a6902cca7eb80"
162
+ dependencies = [
163
+ "cedar-policy-core",
164
+ "cedar-policy-formatter",
165
+ "itertools 0.15.0",
166
+ "linked-hash-map",
167
+ "linked_hash_set",
168
+ "miette",
169
+ "ref-cast",
170
+ "semver",
171
+ "serde",
172
+ "serde_json",
173
+ "serde_with",
174
+ "smol_str",
175
+ "thiserror",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "cedar-policy-core"
180
+ version = "4.13.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "7a30d11033d59b262bbb380d8bb5dc5c3dd2dd2281675c558ef4fd8a161ce669"
183
+ dependencies = [
184
+ "chrono",
185
+ "educe",
186
+ "either",
187
+ "itertools 0.15.0",
188
+ "lalrpop",
189
+ "lalrpop-util",
190
+ "linked-hash-map",
191
+ "linked_hash_set",
192
+ "miette",
193
+ "nonempty",
194
+ "ref-cast",
195
+ "regex",
196
+ "rustc-literal-escaper",
197
+ "serde",
198
+ "serde_json",
199
+ "serde_with",
200
+ "smol_str",
201
+ "stacker",
202
+ "thiserror",
203
+ "unicode-security",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "cedar-policy-formatter"
208
+ version = "4.13.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "8a2c8dc671e62597c85caa11694365b76050abcd9f2177f0520ccac0580f9a41"
211
+ dependencies = [
212
+ "cedar-policy-core",
213
+ "itertools 0.15.0",
214
+ "logos",
215
+ "miette",
216
+ "pretty",
217
+ "regex",
218
+ "smol_str",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "cfg-if"
223
+ version = "1.0.5"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
226
+
227
+ [[package]]
228
+ name = "cfg_aliases"
229
+ version = "0.2.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
232
+
233
+ [[package]]
234
+ name = "chrono"
235
+ version = "0.4.45"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
238
+ dependencies = [
239
+ "iana-time-zone",
240
+ "num-traits",
241
+ "serde",
242
+ "windows-link",
243
+ ]
244
+
245
+ [[package]]
246
+ name = "clap"
247
+ version = "4.6.7"
248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
249
+ checksum = "aa8876b300ab35ba921adea3dfd70157a46249b33f95c9084ae5709785478946"
250
+ dependencies = [
251
+ "clap_builder",
252
+ "clap_derive",
253
+ ]
254
+
255
+ [[package]]
256
+ name = "clap_builder"
257
+ version = "4.6.7"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "ec0797fb7aeb1406c84efac526901f7ec3ead2124f946b494e72879d4b54704d"
260
+ dependencies = [
261
+ "anstyle",
262
+ "clap_lex",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "clap_derive"
267
+ version = "4.6.7"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "f9c751b79415d4e559e3d1fcf128e09e720eb673a06d26cf6f392d37d75b66e0"
270
+ dependencies = [
271
+ "heck",
272
+ "proc-macro2",
273
+ "quote",
274
+ "syn 3.0.6",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "clap_lex"
279
+ version = "1.1.1"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "1c133bc6a41be0d194c306b5506d15e6feeea7b1d6604bd3f8310dfb2ca96486"
282
+
283
+ [[package]]
284
+ name = "const-oid"
285
+ version = "0.10.2"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
288
+
289
+ [[package]]
290
+ name = "convert_case"
291
+ version = "0.4.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
294
+
295
+ [[package]]
296
+ name = "core-foundation-sys"
297
+ version = "0.8.7"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
300
+
301
+ [[package]]
302
+ name = "cpufeatures"
303
+ version = "0.2.17"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
306
+ dependencies = [
307
+ "libc",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "cpufeatures"
312
+ version = "0.3.1"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
315
+ dependencies = [
316
+ "libc",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "crypto-common"
321
+ version = "0.1.7"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
324
+ dependencies = [
325
+ "generic-array",
326
+ "typenum",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "crypto-common"
331
+ version = "0.2.2"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
334
+ dependencies = [
335
+ "hybrid-array",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "darling"
340
+ version = "0.24.1"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "ed17f5901b6630b993ca003def43f2f8ef4014fc13b047b57aad617ff32bc2ec"
343
+ dependencies = [
344
+ "darling_core",
345
+ "darling_macro",
346
+ ]
347
+
348
+ [[package]]
349
+ name = "darling_core"
350
+ version = "0.24.1"
351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
352
+ checksum = "6837e2cf7485aaae18f86181d2f0e9a7ed297a025e220aeabf63fdebd3a2ddff"
353
+ dependencies = [
354
+ "ident_case",
355
+ "proc-macro2",
356
+ "quote",
357
+ "strsim",
358
+ "syn 3.0.6",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "darling_macro"
363
+ version = "0.24.1"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "2ac7135c3ef02b2f7833bbeb1be5ba7f966dcde8a87c6b87f65a778d71a02785"
366
+ dependencies = [
367
+ "darling_core",
368
+ "quote",
369
+ "syn 3.0.6",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "defmt"
374
+ version = "1.1.1"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1"
377
+ dependencies = [
378
+ "bitflags 1.3.2",
379
+ "defmt-macros",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "defmt-macros"
384
+ version = "1.1.1"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8"
387
+ dependencies = [
388
+ "defmt-parser",
389
+ "proc-macro2",
390
+ "quote",
391
+ "syn 2.0.119",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "defmt-parser"
396
+ version = "1.0.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e"
399
+ dependencies = [
400
+ "thiserror",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "deranged"
405
+ version = "0.5.8"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
408
+ dependencies = [
409
+ "serde_core",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "digest"
414
+ version = "0.10.7"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
417
+ dependencies = [
418
+ "block-buffer 0.10.4",
419
+ "crypto-common 0.1.7",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "digest"
424
+ version = "0.11.3"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
427
+ dependencies = [
428
+ "block-buffer 0.12.1",
429
+ "const-oid",
430
+ "crypto-common 0.2.2",
431
+ ]
432
+
433
+ [[package]]
434
+ name = "dyn-clone"
435
+ version = "1.0.20"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
438
+
439
+ [[package]]
440
+ name = "educe"
441
+ version = "0.7.6"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "e451fac8dd8dece16234604bf1efce6e90fddd8ab6ad4d66eec0eca5160959dd"
444
+ dependencies = [
445
+ "enum-ordinalize",
446
+ "proc-macro2",
447
+ "quote",
448
+ "syn 3.0.6",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "either"
453
+ version = "1.18.0"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
456
+
457
+ [[package]]
458
+ name = "ena"
459
+ version = "0.14.4"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "eabffdaee24bd1bf95c5ef7cec31260444317e72ea56c4c91750e8b7ee58d5f1"
462
+ dependencies = [
463
+ "log",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "enum-ordinalize"
468
+ version = "4.4.2"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "89dd01549b09589510cf0647475075d12071456586d70f5c75c98ae2a5537677"
471
+ dependencies = [
472
+ "enum-ordinalize-derive",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "enum-ordinalize-derive"
477
+ version = "4.4.2"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "a65863d15a4ce2888bd2f0f543cc963d3879c3a022c8ee43f6141d479a3ac815"
480
+ dependencies = [
481
+ "proc-macro2",
482
+ "quote",
483
+ "syn 3.0.6",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "enumflags2"
488
+ version = "0.7.12"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
491
+ dependencies = [
492
+ "enumflags2_derive",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "enumflags2_derive"
497
+ version = "0.7.12"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
500
+ dependencies = [
501
+ "proc-macro2",
502
+ "quote",
503
+ "syn 2.0.119",
504
+ ]
505
+
506
+ [[package]]
507
+ name = "equivalent"
508
+ version = "1.0.2"
509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
510
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
511
+
512
+ [[package]]
513
+ name = "fallible-iterator"
514
+ version = "0.3.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
517
+
518
+ [[package]]
519
+ name = "fallible-streaming-iterator"
520
+ version = "0.1.9"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
523
+
524
+ [[package]]
525
+ name = "find-msvc-tools"
526
+ version = "0.1.13"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "ef25905e51abafe4dcea6c15fec58c57b601cdbd0ee53d22ea1d3016c587d39b"
529
+
530
+ [[package]]
531
+ name = "fixedbitset"
532
+ version = "0.5.7"
533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
534
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
535
+
536
+ [[package]]
537
+ name = "fnv"
538
+ version = "1.0.7"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
541
+
542
+ [[package]]
543
+ name = "foldhash"
544
+ version = "0.2.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
547
+
548
+ [[package]]
549
+ name = "futures-core"
550
+ version = "0.3.34"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
553
+
554
+ [[package]]
555
+ name = "futures-task"
556
+ version = "0.3.34"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
559
+
560
+ [[package]]
561
+ name = "futures-util"
562
+ version = "0.3.34"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
565
+ dependencies = [
566
+ "futures-core",
567
+ "futures-task",
568
+ "pin-project-lite",
569
+ "slab",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "generic-array"
574
+ version = "0.14.7"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
577
+ dependencies = [
578
+ "typenum",
579
+ "version_check",
580
+ ]
581
+
582
+ [[package]]
583
+ name = "hashbrown"
584
+ version = "0.12.3"
585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
586
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
587
+
588
+ [[package]]
589
+ name = "hashbrown"
590
+ version = "0.16.1"
591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
592
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
593
+ dependencies = [
594
+ "foldhash",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "hashbrown"
599
+ version = "0.17.1"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
602
+ dependencies = [
603
+ "foldhash",
604
+ ]
605
+
606
+ [[package]]
607
+ name = "hashlink"
608
+ version = "0.12.2"
609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
610
+ checksum = "a596f1b20ed2cc5ecac41a164aaebc7258057060f06c0cf7a2ba3991ee7990fb"
611
+ dependencies = [
612
+ "hashbrown 0.17.1",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "heck"
617
+ version = "0.5.0"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
620
+
621
+ [[package]]
622
+ name = "hex"
623
+ version = "0.4.3"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
626
+
627
+ [[package]]
628
+ name = "hybrid-array"
629
+ version = "0.4.15"
630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
631
+ checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
632
+ dependencies = [
633
+ "typenum",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "iana-time-zone"
638
+ version = "0.1.65"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
641
+ dependencies = [
642
+ "android_system_properties",
643
+ "core-foundation-sys",
644
+ "iana-time-zone-haiku",
645
+ "js-sys",
646
+ "log",
647
+ "wasm-bindgen",
648
+ "windows-core",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "iana-time-zone-haiku"
653
+ version = "0.1.2"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
656
+ dependencies = [
657
+ "cc",
658
+ ]
659
+
660
+ [[package]]
661
+ name = "ident_case"
662
+ version = "1.0.1"
663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
664
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
665
+
666
+ [[package]]
667
+ name = "indexmap"
668
+ version = "1.9.3"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
671
+ dependencies = [
672
+ "autocfg",
673
+ "hashbrown 0.12.3",
674
+ "serde",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "indexmap"
679
+ version = "2.14.2"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
682
+ dependencies = [
683
+ "equivalent",
684
+ "hashbrown 0.17.1",
685
+ "serde",
686
+ "serde_core",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "itertools"
691
+ version = "0.14.0"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
694
+ dependencies = [
695
+ "either",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "itertools"
700
+ version = "0.15.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
703
+ dependencies = [
704
+ "either",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "itoa"
709
+ version = "1.0.18"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
712
+
713
+ [[package]]
714
+ name = "jiff"
715
+ version = "0.2.37"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "0ab1baf72f08796de0260609515130699b890ac25f30e610ad894bc5856cafdb"
718
+ dependencies = [
719
+ "defmt",
720
+ "jiff-core",
721
+ "jiff-static",
722
+ "jiff-tzdb-platform",
723
+ "log",
724
+ "portable-atomic",
725
+ "portable-atomic-util",
726
+ "serde_core",
727
+ "windows-link",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "jiff-core"
732
+ version = "0.1.1"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "5e52fe76043ccecc9005d2305ebaadf7d7fc0cc89ca6baa10a94d6bc68c7128c"
735
+ dependencies = [
736
+ "defmt",
737
+ "log",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "jiff-static"
742
+ version = "0.2.37"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "378268a1116ad67ae6228701118ac9f491d78fda38a40a1f1a9e1348de6f7212"
745
+ dependencies = [
746
+ "jiff-core",
747
+ "proc-macro2",
748
+ "quote",
749
+ "syn 2.0.119",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "jiff-tzdb"
754
+ version = "0.1.8"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e"
757
+
758
+ [[package]]
759
+ name = "jiff-tzdb-platform"
760
+ version = "0.1.3"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8"
763
+ dependencies = [
764
+ "jiff-tzdb",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "js-sys"
769
+ version = "0.3.105"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
772
+ dependencies = [
773
+ "cfg-if",
774
+ "futures-util",
775
+ "wasm-bindgen",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "keccak"
780
+ version = "0.1.6"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
783
+ dependencies = [
784
+ "cpufeatures 0.2.17",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "lalrpop"
789
+ version = "0.22.2"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "ba4ebbd48ce411c1d10fb35185f5a51a7bfa3d8b24b4e330d30c9e3a34129501"
792
+ dependencies = [
793
+ "ascii-canvas",
794
+ "bit-set",
795
+ "ena",
796
+ "itertools 0.14.0",
797
+ "lalrpop-util",
798
+ "petgraph",
799
+ "pico-args",
800
+ "regex",
801
+ "regex-syntax",
802
+ "sha3",
803
+ "string_cache",
804
+ "term",
805
+ "unicode-xid",
806
+ "walkdir",
807
+ ]
808
+
809
+ [[package]]
810
+ name = "lalrpop-util"
811
+ version = "0.22.2"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "b5baa5e9ff84f1aefd264e6869907646538a52147a755d494517a8007fb48733"
814
+ dependencies = [
815
+ "regex-automata",
816
+ "rustversion",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "landlock"
821
+ version = "0.4.7"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "4cca98e95f35b29d469dade6724c6f96cec9236640f745a0e99b0334ec320ab1"
824
+ dependencies = [
825
+ "enumflags2",
826
+ "libc",
827
+ "thiserror",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "lazy_static"
832
+ version = "1.5.0"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
835
+
836
+ [[package]]
837
+ name = "libc"
838
+ version = "0.2.189"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
841
+
842
+ [[package]]
843
+ name = "libsqlite3-sys"
844
+ version = "0.38.2"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "f1d20bef17f513b9b3004532233187769cd072d790971f4e4da0e346eb6401e8"
847
+ dependencies = [
848
+ "cc",
849
+ "pkg-config",
850
+ "vcpkg",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "linked-hash-map"
855
+ version = "0.5.6"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
858
+ dependencies = [
859
+ "serde",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "linked_hash_set"
864
+ version = "0.1.6"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "984fb35d06508d1e69fc91050cceba9c0b748f983e6739fa2c7a9237154c52c8"
867
+ dependencies = [
868
+ "linked-hash-map",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "lock_api"
873
+ version = "0.4.14"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
876
+ dependencies = [
877
+ "scopeguard",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "log"
882
+ version = "0.4.34"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
885
+
886
+ [[package]]
887
+ name = "logos"
888
+ version = "0.16.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "eb2c55a318a87600ea870ff8c2012148b44bf18b74fad48d0f835c38c7d07c5f"
891
+ dependencies = [
892
+ "logos-derive",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "logos-codegen"
897
+ version = "0.16.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "58b3ffaa284e1350d017a57d04ada118c4583cf260c8fb01e0fe28a2e9cf8970"
900
+ dependencies = [
901
+ "fnv",
902
+ "proc-macro2",
903
+ "quote",
904
+ "regex-automata",
905
+ "regex-syntax",
906
+ "syn 2.0.119",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "logos-derive"
911
+ version = "0.16.1"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "52d3a9855747c17eaf4383823f135220716ab49bea5fbea7dd42cc9a92f8aa31"
914
+ dependencies = [
915
+ "logos-codegen",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "matchers"
920
+ version = "0.2.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
923
+ dependencies = [
924
+ "regex-automata",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "memchr"
929
+ version = "2.8.3"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
932
+
933
+ [[package]]
934
+ name = "miette"
935
+ version = "7.6.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
938
+ dependencies = [
939
+ "cfg-if",
940
+ "miette-derive",
941
+ "serde",
942
+ "unicode-width 0.1.14",
943
+ ]
944
+
945
+ [[package]]
946
+ name = "miette-derive"
947
+ version = "7.6.0"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
950
+ dependencies = [
951
+ "proc-macro2",
952
+ "quote",
953
+ "syn 2.0.119",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "new_debug_unreachable"
958
+ version = "1.0.6"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
961
+
962
+ [[package]]
963
+ name = "nonempty"
964
+ version = "0.12.0"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "9737e026353e5cd0736f98eddae28665118eb6f6600902a7f50db585621fecb6"
967
+ dependencies = [
968
+ "serde",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "num-bigint"
973
+ version = "0.5.1"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
976
+ dependencies = [
977
+ "num-integer",
978
+ "num-traits",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "num-conv"
983
+ version = "0.2.2"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
986
+
987
+ [[package]]
988
+ name = "num-integer"
989
+ version = "0.1.47"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
992
+ dependencies = [
993
+ "num-traits",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "num-traits"
998
+ version = "0.2.19"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1001
+ dependencies = [
1002
+ "autocfg",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "object"
1007
+ version = "0.39.1"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
1010
+ dependencies = [
1011
+ "memchr",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "once_cell"
1016
+ version = "1.21.4"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1019
+
1020
+ [[package]]
1021
+ name = "parking_lot"
1022
+ version = "0.12.5"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1025
+ dependencies = [
1026
+ "lock_api",
1027
+ "parking_lot_core",
1028
+ ]
1029
+
1030
+ [[package]]
1031
+ name = "parking_lot_core"
1032
+ version = "0.9.12"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1035
+ dependencies = [
1036
+ "cfg-if",
1037
+ "libc",
1038
+ "redox_syscall",
1039
+ "smallvec",
1040
+ "windows-link",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "petgraph"
1045
+ version = "0.7.1"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772"
1048
+ dependencies = [
1049
+ "fixedbitset",
1050
+ "indexmap 2.14.2",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "phf_shared"
1055
+ version = "0.11.3"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1058
+ dependencies = [
1059
+ "siphasher",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "pico-args"
1064
+ version = "0.5.0"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
1067
+
1068
+ [[package]]
1069
+ name = "pin-project-lite"
1070
+ version = "0.2.17"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1073
+
1074
+ [[package]]
1075
+ name = "pkg-config"
1076
+ version = "0.3.34"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
1079
+
1080
+ [[package]]
1081
+ name = "portable-atomic"
1082
+ version = "1.15.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
1085
+
1086
+ [[package]]
1087
+ name = "portable-atomic-util"
1088
+ version = "0.2.8"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "10ab3eb7f3becc3a1cbc4f2c6f20267996cfc1a6467a873763411b136a122715"
1091
+ dependencies = [
1092
+ "portable-atomic",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "powerfmt"
1097
+ version = "0.2.0"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1100
+
1101
+ [[package]]
1102
+ name = "precomputed-hash"
1103
+ version = "0.1.1"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1106
+
1107
+ [[package]]
1108
+ name = "pretty"
1109
+ version = "0.12.5"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "0d22152487193190344590e4f30e219cf3fe140d9e7a3fdb683d82aa2c5f4156"
1112
+ dependencies = [
1113
+ "arrayvec",
1114
+ "typed-arena",
1115
+ "unicode-width 0.2.2",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "proc-macro2"
1120
+ version = "1.0.107"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
1123
+ dependencies = [
1124
+ "unicode-ident",
1125
+ ]
1126
+
1127
+ [[package]]
1128
+ name = "psm"
1129
+ version = "0.1.32"
1130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1131
+ checksum = "4dcd034599e63b970727f70d79e02d62390a4a84f7c6b827c27c46d5ac3fa622"
1132
+ dependencies = [
1133
+ "ar_archive_writer",
1134
+ "cc",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "quote"
1139
+ version = "1.0.47"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1142
+ dependencies = [
1143
+ "proc-macro2",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "redox_syscall"
1148
+ version = "0.5.18"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1151
+ dependencies = [
1152
+ "bitflags 2.13.2",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "ref-cast"
1157
+ version = "1.0.27"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "7e440fb4e4b4147295338efb76001ab9e4efc0e5839df2c47fc5ac2381d365c3"
1160
+ dependencies = [
1161
+ "ref-cast-impl",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "ref-cast-impl"
1166
+ version = "1.0.27"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "92ecd8964f8453721699a1ed72037b0db49ce2f5a5138486ee89bed6f67cdf3a"
1169
+ dependencies = [
1170
+ "proc-macro2",
1171
+ "quote",
1172
+ "syn 3.0.6",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "regex"
1177
+ version = "1.13.1"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1180
+ dependencies = [
1181
+ "aho-corasick",
1182
+ "memchr",
1183
+ "regex-automata",
1184
+ "regex-syntax",
1185
+ ]
1186
+
1187
+ [[package]]
1188
+ name = "regex-automata"
1189
+ version = "0.4.18"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1192
+ dependencies = [
1193
+ "aho-corasick",
1194
+ "memchr",
1195
+ "regex-syntax",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "regex-syntax"
1200
+ version = "0.8.11"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1203
+
1204
+ [[package]]
1205
+ name = "regorus"
1206
+ version = "0.12.0"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "94d90cbdbc4d2900378cf7dbb0c8df85a28e6de07fad75c60cd4d73283eded23"
1209
+ dependencies = [
1210
+ "anyhow",
1211
+ "lazy_static",
1212
+ "num-bigint",
1213
+ "num-traits",
1214
+ "regex",
1215
+ "serde",
1216
+ "serde_json",
1217
+ "spin",
1218
+ "thiserror",
1219
+ "vstd",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "rsqlite-vfs"
1224
+ version = "0.1.1"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "c51c9ae4df8a7fba42103df5c621fa3c37eccf3a3c650879e90fc48b11cc192c"
1227
+ dependencies = [
1228
+ "hashbrown 0.16.1",
1229
+ "thiserror",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "rusqlite"
1234
+ version = "0.40.2"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "23f2a97da3e3873c73cb2a2e71b35c40ff95e0b1eefa8d72d8499a6928c3b5b3"
1237
+ dependencies = [
1238
+ "bitflags 2.13.2",
1239
+ "fallible-iterator",
1240
+ "fallible-streaming-iterator",
1241
+ "hashlink",
1242
+ "libsqlite3-sys",
1243
+ "smallvec",
1244
+ "sqlite-wasm-rs",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "rustc-literal-escaper"
1249
+ version = "0.0.8"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "bfe6f213fb658c8fb95baabd5420393438cf5a98d707f5dd701d9197c705f71e"
1252
+
1253
+ [[package]]
1254
+ name = "rustversion"
1255
+ version = "1.0.23"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1258
+
1259
+ [[package]]
1260
+ name = "ryu"
1261
+ version = "1.0.23"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1264
+
1265
+ [[package]]
1266
+ name = "same-file"
1267
+ version = "1.0.6"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1270
+ dependencies = [
1271
+ "winapi-util",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "schemars"
1276
+ version = "0.9.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
1279
+ dependencies = [
1280
+ "dyn-clone",
1281
+ "ref-cast",
1282
+ "serde",
1283
+ "serde_json",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "schemars"
1288
+ version = "1.2.2"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "687274d293b6cdc6e73e0fee520bf2049650090d7164f87672d212a3c530cf4a"
1291
+ dependencies = [
1292
+ "dyn-clone",
1293
+ "ref-cast",
1294
+ "serde",
1295
+ "serde_json",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "scopeguard"
1300
+ version = "1.2.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1303
+
1304
+ [[package]]
1305
+ name = "seccompiler"
1306
+ version = "0.5.0"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "a4ae55de56877481d112a559bbc12667635fdaf5e005712fd4e2b2fa50ffc884"
1309
+ dependencies = [
1310
+ "libc",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "semver"
1315
+ version = "1.0.28"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1318
+
1319
+ [[package]]
1320
+ name = "serde"
1321
+ version = "1.0.229"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1324
+ dependencies = [
1325
+ "serde_core",
1326
+ "serde_derive",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "serde_core"
1331
+ version = "1.0.229"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1334
+ dependencies = [
1335
+ "serde_derive",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "serde_derive"
1340
+ version = "1.0.229"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1343
+ dependencies = [
1344
+ "proc-macro2",
1345
+ "quote",
1346
+ "syn 3.0.6",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "serde_json"
1351
+ version = "1.0.151"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1354
+ dependencies = [
1355
+ "indexmap 2.14.2",
1356
+ "itoa",
1357
+ "memchr",
1358
+ "serde",
1359
+ "serde_core",
1360
+ "zmij",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "serde_with"
1365
+ version = "3.23.0"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "935177bb8c0cd8ca1a4e6d1a2ac8988bea69cab4f9d3a31311e012ad27868ea4"
1368
+ dependencies = [
1369
+ "base64",
1370
+ "bs58",
1371
+ "chrono",
1372
+ "hex",
1373
+ "indexmap 1.9.3",
1374
+ "indexmap 2.14.2",
1375
+ "jiff",
1376
+ "schemars 0.9.0",
1377
+ "schemars 1.2.2",
1378
+ "serde_core",
1379
+ "serde_json",
1380
+ "serde_with_macros",
1381
+ "time",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "serde_with_macros"
1386
+ version = "3.23.0"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "1d607aa01a3cb0ad757d6fd216136910db3c97b102fe686585689615a02dbcdc"
1389
+ dependencies = [
1390
+ "darling",
1391
+ "proc-macro2",
1392
+ "quote",
1393
+ "syn 3.0.6",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "serde_yaml"
1398
+ version = "0.9.34+deprecated"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1401
+ dependencies = [
1402
+ "indexmap 2.14.2",
1403
+ "itoa",
1404
+ "ryu",
1405
+ "serde",
1406
+ "unsafe-libyaml",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "sha2"
1411
+ version = "0.11.0"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1414
+ dependencies = [
1415
+ "cfg-if",
1416
+ "cpufeatures 0.3.1",
1417
+ "digest 0.11.3",
1418
+ ]
1419
+
1420
+ [[package]]
1421
+ name = "sha3"
1422
+ version = "0.10.9"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
1425
+ dependencies = [
1426
+ "digest 0.10.7",
1427
+ "keccak",
1428
+ ]
1429
+
1430
+ [[package]]
1431
+ name = "sharded-slab"
1432
+ version = "0.1.7"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1435
+ dependencies = [
1436
+ "lazy_static",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "shlex"
1441
+ version = "2.0.1"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1444
+
1445
+ [[package]]
1446
+ name = "siphasher"
1447
+ version = "1.0.3"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1450
+
1451
+ [[package]]
1452
+ name = "slab"
1453
+ version = "0.4.12"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1456
+
1457
+ [[package]]
1458
+ name = "smallvec"
1459
+ version = "1.16.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
1462
+
1463
+ [[package]]
1464
+ name = "smol_str"
1465
+ version = "0.3.6"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "4aaa7368fcf4852a4c2dd92df0cace6a71f2091ca0a23391ce7f3a31833f1523"
1468
+ dependencies = [
1469
+ "borsh",
1470
+ "serde_core",
1471
+ ]
1472
+
1473
+ [[package]]
1474
+ name = "spin"
1475
+ version = "0.12.3"
1476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1477
+ checksum = "0134f9043ed38b087ac4f7d4af44c79e2c9e5094421fe3164f435ce585953b10"
1478
+
1479
+ [[package]]
1480
+ name = "sqlite-wasm-rs"
1481
+ version = "0.5.5"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "dc3efc0da82635d7e1ced0053bbbfa8c7ab9645d0bf36ceb4f7127bb85315d75"
1484
+ dependencies = [
1485
+ "cc",
1486
+ "js-sys",
1487
+ "rsqlite-vfs",
1488
+ "wasm-bindgen",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "stacker"
1493
+ version = "0.1.25"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "707f49d46706bacf8a2b00d51dace3f9de527c13eec3778f570c411f89e69967"
1496
+ dependencies = [
1497
+ "cc",
1498
+ "cfg-if",
1499
+ "libc",
1500
+ "psm",
1501
+ "windows-sys",
1502
+ ]
1503
+
1504
+ [[package]]
1505
+ name = "string_cache"
1506
+ version = "0.8.9"
1507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1508
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1509
+ dependencies = [
1510
+ "new_debug_unreachable",
1511
+ "parking_lot",
1512
+ "phf_shared",
1513
+ "precomputed-hash",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "strsim"
1518
+ version = "0.11.1"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1521
+
1522
+ [[package]]
1523
+ name = "syn"
1524
+ version = "2.0.119"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1527
+ dependencies = [
1528
+ "proc-macro2",
1529
+ "quote",
1530
+ "unicode-ident",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "syn"
1535
+ version = "3.0.6"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
1538
+ dependencies = [
1539
+ "proc-macro2",
1540
+ "quote",
1541
+ "unicode-ident",
1542
+ ]
1543
+
1544
+ [[package]]
1545
+ name = "synstructure"
1546
+ version = "0.13.2"
1547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1548
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1549
+ dependencies = [
1550
+ "proc-macro2",
1551
+ "quote",
1552
+ "syn 2.0.119",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "term"
1557
+ version = "1.2.1"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "d8c27177b12a6399ffc08b98f76f7c9a1f4fe9fc967c784c5a071fa8d93cf7e1"
1560
+ dependencies = [
1561
+ "windows-sys",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "thiserror"
1566
+ version = "2.0.20"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
1569
+ dependencies = [
1570
+ "thiserror-impl",
1571
+ ]
1572
+
1573
+ [[package]]
1574
+ name = "thiserror-impl"
1575
+ version = "2.0.20"
1576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1577
+ checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
1578
+ dependencies = [
1579
+ "proc-macro2",
1580
+ "quote",
1581
+ "syn 3.0.6",
1582
+ ]
1583
+
1584
+ [[package]]
1585
+ name = "thread_local"
1586
+ version = "1.1.10"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
1589
+ dependencies = [
1590
+ "cfg-if",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "time"
1595
+ version = "0.3.55"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
1598
+ dependencies = [
1599
+ "deranged",
1600
+ "num-conv",
1601
+ "powerfmt",
1602
+ "serde_core",
1603
+ "time-core",
1604
+ "time-macros",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "time-core"
1609
+ version = "0.1.9"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
1612
+
1613
+ [[package]]
1614
+ name = "time-macros"
1615
+ version = "0.2.32"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
1618
+ dependencies = [
1619
+ "num-conv",
1620
+ "time-core",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "tinyvec"
1625
+ version = "1.13.3"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "fd3ca314f692efd6c868f8408f53fe444634a845f96c028b97d35f6a1f79f0ee"
1628
+
1629
+ [[package]]
1630
+ name = "tracing"
1631
+ version = "0.1.44"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1634
+ dependencies = [
1635
+ "pin-project-lite",
1636
+ "tracing-attributes",
1637
+ "tracing-core",
1638
+ ]
1639
+
1640
+ [[package]]
1641
+ name = "tracing-attributes"
1642
+ version = "0.1.31"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1645
+ dependencies = [
1646
+ "proc-macro2",
1647
+ "quote",
1648
+ "syn 2.0.119",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "tracing-core"
1653
+ version = "0.1.36"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1656
+ dependencies = [
1657
+ "once_cell",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "tracing-subscriber"
1662
+ version = "0.3.23"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1665
+ dependencies = [
1666
+ "matchers",
1667
+ "once_cell",
1668
+ "regex-automata",
1669
+ "sharded-slab",
1670
+ "thread_local",
1671
+ "tracing",
1672
+ "tracing-core",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "typed-arena"
1677
+ version = "2.0.2"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
1680
+
1681
+ [[package]]
1682
+ name = "typenum"
1683
+ version = "1.20.1"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1686
+
1687
+ [[package]]
1688
+ name = "unicode-ident"
1689
+ version = "1.0.26"
1690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1691
+ checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
1692
+
1693
+ [[package]]
1694
+ name = "unicode-normalization"
1695
+ version = "0.1.25"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
1698
+ dependencies = [
1699
+ "tinyvec",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "unicode-script"
1704
+ version = "0.5.8"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
1707
+
1708
+ [[package]]
1709
+ name = "unicode-security"
1710
+ version = "0.1.2"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "2e4ddba1535dd35ed8b61c52166b7155d7f4e4b8847cec6f48e71dc66d8b5e50"
1713
+ dependencies = [
1714
+ "unicode-normalization",
1715
+ "unicode-script",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "unicode-width"
1720
+ version = "0.1.14"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1723
+
1724
+ [[package]]
1725
+ name = "unicode-width"
1726
+ version = "0.2.2"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1729
+
1730
+ [[package]]
1731
+ name = "unicode-xid"
1732
+ version = "0.2.6"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1735
+
1736
+ [[package]]
1737
+ name = "unsafe-libyaml"
1738
+ version = "0.2.11"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1741
+
1742
+ [[package]]
1743
+ name = "vcpkg"
1744
+ version = "0.2.15"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1747
+
1748
+ [[package]]
1749
+ name = "version_check"
1750
+ version = "0.9.5"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1753
+
1754
+ [[package]]
1755
+ name = "verus_builtin"
1756
+ version = "0.0.0-2026-08-09-0044"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "f5f2985ebd252c492375e32f2bfcff6e6a04523009a0d624785d3468f3729158"
1759
+
1760
+ [[package]]
1761
+ name = "verus_builtin_macros"
1762
+ version = "0.0.0-2026-08-23-0033"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "62f5b1ed2151955cfe25ebfc1382ab422ae004e5cda6c502871425cc9e2ad5f3"
1765
+ dependencies = [
1766
+ "convert_case",
1767
+ "proc-macro2",
1768
+ "quote",
1769
+ "syn 2.0.119",
1770
+ "synstructure",
1771
+ "verus_prettyplease",
1772
+ "verus_syn",
1773
+ ]
1774
+
1775
+ [[package]]
1776
+ name = "verus_prettyplease"
1777
+ version = "0.0.0-2026-08-09-0044"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "51fc115de5fb3806bc362060bb683024660ed2bc13c1183d1f01d464e4537139"
1780
+ dependencies = [
1781
+ "proc-macro2",
1782
+ "verus_syn",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "verus_state_machines_macros"
1787
+ version = "0.0.0-2026-08-02-0125"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "93f77ff8d121edb1bf2651335769a80a2f611da8573c3b498434a66b3162805f"
1790
+ dependencies = [
1791
+ "indexmap 2.14.2",
1792
+ "proc-macro2",
1793
+ "quote",
1794
+ "verus_syn",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "verus_syn"
1799
+ version = "0.0.0-2026-08-02-0125"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "f17237ea6d267e457d53ce36f55b315fc9edd26eb88c765dd95e035c0b415869"
1802
+ dependencies = [
1803
+ "proc-macro2",
1804
+ "quote",
1805
+ "unicode-ident",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "vstd"
1810
+ version = "0.0.0-2026-08-23-0033"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "93b32ef60c0a4ce7d85691135c15fada7ab84b2c1471322d320fba313190e2e9"
1813
+ dependencies = [
1814
+ "verus_builtin",
1815
+ "verus_builtin_macros",
1816
+ "verus_state_machines_macros",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "walkdir"
1821
+ version = "2.5.0"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1824
+ dependencies = [
1825
+ "same-file",
1826
+ "winapi-util",
1827
+ ]
1828
+
1829
+ [[package]]
1830
+ name = "wasm-bindgen"
1831
+ version = "0.2.128"
1832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1833
+ checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
1834
+ dependencies = [
1835
+ "cfg-if",
1836
+ "once_cell",
1837
+ "rustversion",
1838
+ "wasm-bindgen-macro",
1839
+ "wasm-bindgen-shared",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "wasm-bindgen-macro"
1844
+ version = "0.2.128"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
1847
+ dependencies = [
1848
+ "quote",
1849
+ "wasm-bindgen-macro-support",
1850
+ ]
1851
+
1852
+ [[package]]
1853
+ name = "wasm-bindgen-macro-support"
1854
+ version = "0.2.128"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
1857
+ dependencies = [
1858
+ "bumpalo",
1859
+ "proc-macro2",
1860
+ "quote",
1861
+ "syn 3.0.6",
1862
+ "wasm-bindgen-shared",
1863
+ ]
1864
+
1865
+ [[package]]
1866
+ name = "wasm-bindgen-shared"
1867
+ version = "0.2.128"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
1870
+ dependencies = [
1871
+ "unicode-ident",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "winapi-util"
1876
+ version = "0.1.11"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1879
+ dependencies = [
1880
+ "windows-sys",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "windows-core"
1885
+ version = "0.62.2"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1888
+ dependencies = [
1889
+ "windows-implement",
1890
+ "windows-interface",
1891
+ "windows-link",
1892
+ "windows-result",
1893
+ "windows-strings",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "windows-implement"
1898
+ version = "0.60.2"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1901
+ dependencies = [
1902
+ "proc-macro2",
1903
+ "quote",
1904
+ "syn 2.0.119",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "windows-interface"
1909
+ version = "0.59.3"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1912
+ dependencies = [
1913
+ "proc-macro2",
1914
+ "quote",
1915
+ "syn 2.0.119",
1916
+ ]
1917
+
1918
+ [[package]]
1919
+ name = "windows-link"
1920
+ version = "0.2.1"
1921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1922
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1923
+
1924
+ [[package]]
1925
+ name = "windows-result"
1926
+ version = "0.4.1"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1929
+ dependencies = [
1930
+ "windows-link",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "windows-strings"
1935
+ version = "0.5.1"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1938
+ dependencies = [
1939
+ "windows-link",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "windows-sys"
1944
+ version = "0.61.2"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1947
+ dependencies = [
1948
+ "windows-link",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "writ-cli"
1953
+ version = "0.1.1"
1954
+ dependencies = [
1955
+ "anyhow",
1956
+ "clap",
1957
+ "regex",
1958
+ "serde",
1959
+ "serde_json",
1960
+ "serde_yaml",
1961
+ "tracing",
1962
+ "tracing-subscriber",
1963
+ "writ-core",
1964
+ "writ-ledger",
1965
+ "writ-mcp",
1966
+ "writ-otel",
1967
+ "writ-policy",
1968
+ "writ-replay",
1969
+ "writ-sandbox",
1970
+ "writ-tui",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "writ-core"
1975
+ version = "0.1.1"
1976
+ dependencies = [
1977
+ "hex",
1978
+ "serde",
1979
+ "serde_json",
1980
+ "sha2",
1981
+ "thiserror",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "writ-ledger"
1986
+ version = "0.1.1"
1987
+ dependencies = [
1988
+ "hex",
1989
+ "rusqlite",
1990
+ "serde",
1991
+ "serde_json",
1992
+ "sha2",
1993
+ "thiserror",
1994
+ "writ-core",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "writ-mcp"
1999
+ version = "0.1.1"
2000
+ dependencies = [
2001
+ "serde",
2002
+ "serde_json",
2003
+ "thiserror",
2004
+ "tracing",
2005
+ "writ-core",
2006
+ ]
2007
+
2008
+ [[package]]
2009
+ name = "writ-otel"
2010
+ version = "0.1.1"
2011
+ dependencies = [
2012
+ "serde",
2013
+ "serde_json",
2014
+ "tracing",
2015
+ "writ-core",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "writ-policy"
2020
+ version = "0.1.1"
2021
+ dependencies = [
2022
+ "regex",
2023
+ "serde",
2024
+ "serde_json",
2025
+ "serde_yaml",
2026
+ "thiserror",
2027
+ "writ-core",
2028
+ ]
2029
+
2030
+ [[package]]
2031
+ name = "writ-policy-cedar"
2032
+ version = "0.1.1"
2033
+ dependencies = [
2034
+ "cedar-policy",
2035
+ "regex",
2036
+ "writ-core",
2037
+ "writ-policy",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "writ-policy-rego"
2042
+ version = "0.1.1"
2043
+ dependencies = [
2044
+ "regorus",
2045
+ "serde_json",
2046
+ "writ-core",
2047
+ "writ-policy",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "writ-replay"
2052
+ version = "0.1.1"
2053
+ dependencies = [
2054
+ "serde",
2055
+ "serde_json",
2056
+ "thiserror",
2057
+ "writ-core",
2058
+ "writ-ledger",
2059
+ "writ-policy",
2060
+ ]
2061
+
2062
+ [[package]]
2063
+ name = "writ-sandbox"
2064
+ version = "0.1.1"
2065
+ dependencies = [
2066
+ "landlock",
2067
+ "libc",
2068
+ "seccompiler",
2069
+ "serde",
2070
+ "serde_json",
2071
+ "thiserror",
2072
+ "windows-sys",
2073
+ "writ-core",
2074
+ ]
2075
+
2076
+ [[package]]
2077
+ name = "writ-sandbox-docker"
2078
+ version = "0.1.1"
2079
+ dependencies = [
2080
+ "writ-core",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "writ-tui"
2085
+ version = "0.1.1"
2086
+ dependencies = [
2087
+ "serde_json",
2088
+ "writ-core",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "zmij"
2093
+ version = "1.0.23"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"