pypatronus 0.34.2__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 (77) hide show
  1. pypatronus-0.34.2/Cargo.lock +1355 -0
  2. pypatronus-0.34.2/Cargo.toml +36 -0
  3. pypatronus-0.34.2/PKG-INFO +12 -0
  4. pypatronus-0.34.2/patronus/Cargo.toml +29 -0
  5. pypatronus-0.34.2/patronus/Readme.md +24 -0
  6. pypatronus-0.34.2/patronus/src/btor2/parse.rs +1027 -0
  7. pypatronus-0.34.2/patronus/src/btor2/serialize.rs +48 -0
  8. pypatronus-0.34.2/patronus/src/btor2/witness.rs +329 -0
  9. pypatronus-0.34.2/patronus/src/btor2.rs +12 -0
  10. pypatronus-0.34.2/patronus/src/expr/context.rs +647 -0
  11. pypatronus-0.34.2/patronus/src/expr/eval.rs +475 -0
  12. pypatronus-0.34.2/patronus/src/expr/foreach.rs +191 -0
  13. pypatronus-0.34.2/patronus/src/expr/meta.rs +264 -0
  14. pypatronus-0.34.2/patronus/src/expr/nodes.rs +280 -0
  15. pypatronus-0.34.2/patronus/src/expr/parse.rs +406 -0
  16. pypatronus-0.34.2/patronus/src/expr/serialize.rs +434 -0
  17. pypatronus-0.34.2/patronus/src/expr/simplify.rs +602 -0
  18. pypatronus-0.34.2/patronus/src/expr/snapshots/patronus__ir__analysis__tests__cone_of_influence-2.snap +5 -0
  19. pypatronus-0.34.2/patronus/src/expr/snapshots/patronus__ir__analysis__tests__cone_of_influence.snap +5 -0
  20. pypatronus-0.34.2/patronus/src/expr/transform.rs +183 -0
  21. pypatronus-0.34.2/patronus/src/expr/traversal.rs +88 -0
  22. pypatronus-0.34.2/patronus/src/expr/types.rs +392 -0
  23. pypatronus-0.34.2/patronus/src/expr.rs +31 -0
  24. pypatronus-0.34.2/patronus/src/lib.rs +13 -0
  25. pypatronus-0.34.2/patronus/src/mc/smt.rs +558 -0
  26. pypatronus-0.34.2/patronus/src/mc/types.rs +43 -0
  27. pypatronus-0.34.2/patronus/src/mc.rs +12 -0
  28. pypatronus-0.34.2/patronus/src/sim/interface.rs +75 -0
  29. pypatronus-0.34.2/patronus/src/sim/interpreter.rs +172 -0
  30. pypatronus-0.34.2/patronus/src/sim/wave.rs +126 -0
  31. pypatronus-0.34.2/patronus/src/sim.rs +9 -0
  32. pypatronus-0.34.2/patronus/src/smt/parser.rs +952 -0
  33. pypatronus-0.34.2/patronus/src/smt/serialize.rs +515 -0
  34. pypatronus-0.34.2/patronus/src/smt/solver.rs +482 -0
  35. pypatronus-0.34.2/patronus/src/smt.rs +12 -0
  36. pypatronus-0.34.2/patronus/src/system/analysis.rs +425 -0
  37. pypatronus-0.34.2/patronus/src/system/serialize.rs +111 -0
  38. pypatronus-0.34.2/patronus/src/system/snapshots/patronus__system__analysis__tests__cone_of_influence-2.snap +5 -0
  39. pypatronus-0.34.2/patronus/src/system/snapshots/patronus__system__analysis__tests__cone_of_influence.snap +5 -0
  40. pypatronus-0.34.2/patronus/src/system/transform.rs +64 -0
  41. pypatronus-0.34.2/patronus/src/system/transition_system.rs +248 -0
  42. pypatronus-0.34.2/patronus/src/system.rs +11 -0
  43. pypatronus-0.34.2/patronus/tests/btor2_test.rs +167 -0
  44. pypatronus-0.34.2/patronus/tests/btor2_witness_tests.rs +245 -0
  45. pypatronus-0.34.2/patronus/tests/interpreter.rs +114 -0
  46. pypatronus-0.34.2/patronus/tests/simplify.rs +485 -0
  47. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_count2.snap +10 -0
  48. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_instrumented_decoder.snap +88 -0
  49. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_lakeroad_dsp48_e2.snap +3199 -0
  50. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_quiz1.snap +16 -0
  51. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_sdram.snap +62 -0
  52. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_sdram_and_remove_anonymous_inputs.snap +62 -0
  53. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_sdram_and_simplify_expressions.snap +58 -0
  54. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_sha3_keccak_and_check_that_all_anonymous_inputs_are_there.snap +489 -0
  55. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__parse_sha3_keccak_and_replace_anonymous_inputs.snap +477 -0
  56. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__serialize_count2.snap +5 -0
  57. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__serialize_inverter.snap +8 -0
  58. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__serialize_pass_through.snap +7 -0
  59. pypatronus-0.34.2/patronus/tests/snapshots/btor2_test__serialize_quiz1.snap +5 -0
  60. pypatronus-0.34.2/patronus/tests/snapshots/btor2_witness_tests__const_array_example_witness.snap +14 -0
  61. pypatronus-0.34.2/patronus/tests/snapshots/btor2_witness_tests__fsm_witness.snap +16 -0
  62. pypatronus-0.34.2/patronus/tests/snapshots/btor2_witness_tests__multiple_witnesses.snap +32 -0
  63. pypatronus-0.34.2/patronus/tests/snapshots/btor2_witness_tests__no_state_witness.snap +12 -0
  64. pypatronus-0.34.2/pyproject.toml +35 -0
  65. pypatronus-0.34.2/python/Cargo.toml +18 -0
  66. pypatronus-0.34.2/python/src/ctx.rs +79 -0
  67. pypatronus-0.34.2/python/src/expr.rs +201 -0
  68. pypatronus-0.34.2/python/src/lib.rs +327 -0
  69. pypatronus-0.34.2/python/src/mc.rs +77 -0
  70. pypatronus-0.34.2/python/src/sim.rs +45 -0
  71. pypatronus-0.34.2/python/src/smt.rs +214 -0
  72. pypatronus-0.34.2/python/tests/test_expr.py +20 -0
  73. pypatronus-0.34.2/python/tests/test_lib.py +87 -0
  74. pypatronus-0.34.2/python/tests/test_mc.py +32 -0
  75. pypatronus-0.34.2/python/tests/test_sim.py +28 -0
  76. pypatronus-0.34.2/python/tests/test_smt.py +45 -0
  77. pypatronus-0.34.2/python/uv.lock +150 -0
@@ -0,0 +1,1355 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.7.8"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
16
+ dependencies = [
17
+ "getrandom 0.2.16",
18
+ "once_cell",
19
+ "version_check",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aho-corasick"
24
+ version = "1.1.3"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
27
+ dependencies = [
28
+ "memchr",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "anstream"
33
+ version = "0.6.21"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
36
+ dependencies = [
37
+ "anstyle",
38
+ "anstyle-parse",
39
+ "anstyle-query",
40
+ "anstyle-wincon",
41
+ "colorchoice",
42
+ "is_terminal_polyfill",
43
+ "utf8parse",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "anstyle"
48
+ version = "1.0.13"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
51
+
52
+ [[package]]
53
+ name = "anstyle-parse"
54
+ version = "0.2.7"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
57
+ dependencies = [
58
+ "utf8parse",
59
+ ]
60
+
61
+ [[package]]
62
+ name = "anstyle-query"
63
+ version = "1.1.4"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
66
+ dependencies = [
67
+ "windows-sys 0.60.2",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anstyle-wincon"
72
+ version = "3.0.10"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
75
+ dependencies = [
76
+ "anstyle",
77
+ "once_cell_polyfill",
78
+ "windows-sys 0.60.2",
79
+ ]
80
+
81
+ [[package]]
82
+ name = "autocfg"
83
+ version = "1.5.0"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
86
+
87
+ [[package]]
88
+ name = "baa"
89
+ version = "0.17.1"
90
+ source = "registry+https://github.com/rust-lang/crates.io-index"
91
+ checksum = "ea4360b1d39baa675bc0ee8ee0fbf02ed089567682dc0e620bff950533a4b649"
92
+ dependencies = [
93
+ "num-bigint",
94
+ "paste",
95
+ "rand 0.9.2",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "bitvec"
100
+ version = "1.0.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
103
+ dependencies = [
104
+ "funty",
105
+ "radium",
106
+ "tap",
107
+ "wyz",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "bmc"
112
+ version = "0.1.0"
113
+ dependencies = [
114
+ "clap",
115
+ "patronus",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "boolean_expression"
120
+ version = "0.4.4"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "52a13b46d1f5df9cd15e0215e96839bda5eb21a8718ca7e8c9e3ee168cb7e7c0"
123
+ dependencies = [
124
+ "itertools",
125
+ "smallvec",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "bumpalo"
130
+ version = "3.19.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
133
+
134
+ [[package]]
135
+ name = "byteorder"
136
+ version = "1.5.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
139
+
140
+ [[package]]
141
+ name = "cfg-if"
142
+ version = "1.0.4"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
145
+
146
+ [[package]]
147
+ name = "clap"
148
+ version = "4.5.50"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "0c2cfd7bf8a6017ddaa4e32ffe7403d547790db06bd171c1c53926faab501623"
151
+ dependencies = [
152
+ "clap_builder",
153
+ "clap_derive",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "clap_builder"
158
+ version = "4.5.50"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "0a4c05b9e80c5ccd3a7ef080ad7b6ba7d6fc00a985b8b157197075677c82c7a0"
161
+ dependencies = [
162
+ "anstream",
163
+ "anstyle",
164
+ "clap_lex",
165
+ "strsim",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "clap_derive"
170
+ version = "4.5.49"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
173
+ dependencies = [
174
+ "heck",
175
+ "proc-macro2",
176
+ "quote",
177
+ "syn",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "clap_lex"
182
+ version = "0.7.6"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
185
+
186
+ [[package]]
187
+ name = "codespan-reporting"
188
+ version = "0.11.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
191
+ dependencies = [
192
+ "termcolor",
193
+ "unicode-width 0.1.14",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "colorchoice"
198
+ version = "1.0.4"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
201
+
202
+ [[package]]
203
+ name = "cond-synth"
204
+ version = "0.1.0"
205
+ dependencies = [
206
+ "baa",
207
+ "bitvec",
208
+ "boolean_expression",
209
+ "clap",
210
+ "egg",
211
+ "indicatif",
212
+ "patronus",
213
+ "patronus-egraphs",
214
+ "rand 0.8.5",
215
+ "rayon",
216
+ "rustc-hash",
217
+ "serde",
218
+ "serde_json",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "console"
223
+ version = "0.15.11"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
226
+ dependencies = [
227
+ "encode_unicode",
228
+ "libc",
229
+ "once_cell",
230
+ "unicode-width 0.2.2",
231
+ "windows-sys 0.59.0",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "crossbeam-deque"
236
+ version = "0.8.6"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
239
+ dependencies = [
240
+ "crossbeam-epoch",
241
+ "crossbeam-utils",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "crossbeam-epoch"
246
+ version = "0.9.18"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
249
+ dependencies = [
250
+ "crossbeam-utils",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "crossbeam-utils"
255
+ version = "0.8.21"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
258
+
259
+ [[package]]
260
+ name = "egg"
261
+ version = "0.9.5"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "96beaf9d35dbc4686bc86a4ecb851fd6a406f0bf32d9f646b1225a5c5cf5b5d7"
264
+ dependencies = [
265
+ "env_logger",
266
+ "fxhash",
267
+ "hashbrown 0.12.3",
268
+ "indexmap 1.9.3",
269
+ "instant",
270
+ "log",
271
+ "smallvec",
272
+ "symbol_table",
273
+ "symbolic_expressions",
274
+ "thiserror 1.0.69",
275
+ ]
276
+
277
+ [[package]]
278
+ name = "either"
279
+ version = "1.15.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
282
+
283
+ [[package]]
284
+ name = "encode_unicode"
285
+ version = "1.0.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
288
+
289
+ [[package]]
290
+ name = "env_logger"
291
+ version = "0.9.3"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
294
+ dependencies = [
295
+ "log",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "equivalent"
300
+ version = "1.0.2"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
303
+
304
+ [[package]]
305
+ name = "fst-writer"
306
+ version = "0.3.1"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "77be37fdc968866fa4f0cee73e42185e6d4699a761a51a54e6ebc9a3d73ed537"
309
+ dependencies = [
310
+ "lz4_flex",
311
+ "miniz_oxide",
312
+ "thiserror 2.0.17",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "funty"
317
+ version = "2.0.0"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
320
+
321
+ [[package]]
322
+ name = "fxhash"
323
+ version = "0.2.1"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
326
+ dependencies = [
327
+ "byteorder",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "getrandom"
332
+ version = "0.2.16"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
335
+ dependencies = [
336
+ "cfg-if",
337
+ "libc",
338
+ "wasi",
339
+ ]
340
+
341
+ [[package]]
342
+ name = "getrandom"
343
+ version = "0.3.4"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
346
+ dependencies = [
347
+ "cfg-if",
348
+ "libc",
349
+ "r-efi",
350
+ "wasip2",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "hashbrown"
355
+ version = "0.12.3"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
358
+ dependencies = [
359
+ "ahash",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "hashbrown"
364
+ version = "0.16.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
367
+
368
+ [[package]]
369
+ name = "heck"
370
+ version = "0.5.0"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
373
+
374
+ [[package]]
375
+ name = "indexmap"
376
+ version = "1.9.3"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
379
+ dependencies = [
380
+ "autocfg",
381
+ "hashbrown 0.12.3",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "indexmap"
386
+ version = "2.12.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
389
+ dependencies = [
390
+ "equivalent",
391
+ "hashbrown 0.16.0",
392
+ ]
393
+
394
+ [[package]]
395
+ name = "indicatif"
396
+ version = "0.17.11"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
399
+ dependencies = [
400
+ "console",
401
+ "number_prefix",
402
+ "portable-atomic",
403
+ "unicode-width 0.2.2",
404
+ "web-time",
405
+ ]
406
+
407
+ [[package]]
408
+ name = "indoc"
409
+ version = "2.0.6"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
412
+
413
+ [[package]]
414
+ name = "insta"
415
+ version = "1.43.2"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
418
+ dependencies = [
419
+ "console",
420
+ "once_cell",
421
+ "serde",
422
+ "similar",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "instant"
427
+ version = "0.1.13"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
430
+ dependencies = [
431
+ "cfg-if",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "is_terminal_polyfill"
436
+ version = "1.70.1"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
439
+
440
+ [[package]]
441
+ name = "itertools"
442
+ version = "0.9.0"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
445
+ dependencies = [
446
+ "either",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "itoa"
451
+ version = "1.0.15"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
454
+
455
+ [[package]]
456
+ name = "js-sys"
457
+ version = "0.3.81"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
460
+ dependencies = [
461
+ "once_cell",
462
+ "wasm-bindgen",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "lazy_static"
467
+ version = "1.5.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
470
+
471
+ [[package]]
472
+ name = "libc"
473
+ version = "0.2.177"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
476
+
477
+ [[package]]
478
+ name = "log"
479
+ version = "0.4.28"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
482
+
483
+ [[package]]
484
+ name = "lz4_flex"
485
+ version = "0.11.5"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
488
+ dependencies = [
489
+ "twox-hash",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "memchr"
494
+ version = "2.7.6"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
497
+
498
+ [[package]]
499
+ name = "memoffset"
500
+ version = "0.9.1"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
503
+ dependencies = [
504
+ "autocfg",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "miniz_oxide"
509
+ version = "0.8.9"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
512
+ dependencies = [
513
+ "adler2",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "num-bigint"
518
+ version = "0.4.6"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
521
+ dependencies = [
522
+ "num-integer",
523
+ "num-traits",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "num-integer"
528
+ version = "0.1.46"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
531
+ dependencies = [
532
+ "num-traits",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "num-traits"
537
+ version = "0.2.19"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
540
+ dependencies = [
541
+ "autocfg",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "number_prefix"
546
+ version = "0.4.0"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
549
+
550
+ [[package]]
551
+ name = "once_cell"
552
+ version = "1.21.3"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
555
+
556
+ [[package]]
557
+ name = "once_cell_polyfill"
558
+ version = "1.70.1"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
561
+
562
+ [[package]]
563
+ name = "paste"
564
+ version = "1.0.15"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
567
+
568
+ [[package]]
569
+ name = "patronus"
570
+ version = "0.34.2"
571
+ dependencies = [
572
+ "baa",
573
+ "boolean_expression",
574
+ "codespan-reporting",
575
+ "fst-writer",
576
+ "indexmap 2.12.0",
577
+ "insta",
578
+ "lazy_static",
579
+ "rand 0.9.2",
580
+ "regex",
581
+ "rustc-hash",
582
+ "smallvec",
583
+ "thiserror 2.0.17",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "patronus-dse"
588
+ version = "0.1.0"
589
+ dependencies = [
590
+ "boolean_expression",
591
+ "patronus",
592
+ "rustc-hash",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "patronus-egraphs"
597
+ version = "0.1.0"
598
+ dependencies = [
599
+ "baa",
600
+ "egg",
601
+ "patronus",
602
+ "rustc-hash",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "portable-atomic"
607
+ version = "1.11.1"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
610
+
611
+ [[package]]
612
+ name = "ppv-lite86"
613
+ version = "0.2.21"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
616
+ dependencies = [
617
+ "zerocopy",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "proc-macro2"
622
+ version = "1.0.101"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
625
+ dependencies = [
626
+ "unicode-ident",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "pyo3"
631
+ version = "0.26.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
634
+ dependencies = [
635
+ "indoc",
636
+ "libc",
637
+ "memoffset",
638
+ "num-bigint",
639
+ "once_cell",
640
+ "portable-atomic",
641
+ "pyo3-build-config",
642
+ "pyo3-ffi",
643
+ "pyo3-macros",
644
+ "unindent",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "pyo3-build-config"
649
+ version = "0.26.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
652
+ dependencies = [
653
+ "target-lexicon",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "pyo3-ffi"
658
+ version = "0.26.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
661
+ dependencies = [
662
+ "libc",
663
+ "pyo3-build-config",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "pyo3-macros"
668
+ version = "0.26.0"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
671
+ dependencies = [
672
+ "proc-macro2",
673
+ "pyo3-macros-backend",
674
+ "quote",
675
+ "syn",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "pyo3-macros-backend"
680
+ version = "0.26.0"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
683
+ dependencies = [
684
+ "heck",
685
+ "proc-macro2",
686
+ "pyo3-build-config",
687
+ "quote",
688
+ "syn",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "pypatronus"
693
+ version = "0.34.2"
694
+ dependencies = [
695
+ "baa",
696
+ "num-bigint",
697
+ "patronus",
698
+ "pyo3",
699
+ "rustc-hash",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "quote"
704
+ version = "1.0.41"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
707
+ dependencies = [
708
+ "proc-macro2",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "r-efi"
713
+ version = "5.3.0"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
716
+
717
+ [[package]]
718
+ name = "radium"
719
+ version = "0.7.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
722
+
723
+ [[package]]
724
+ name = "rand"
725
+ version = "0.8.5"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
728
+ dependencies = [
729
+ "libc",
730
+ "rand_chacha 0.3.1",
731
+ "rand_core 0.6.4",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "rand"
736
+ version = "0.9.2"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
739
+ dependencies = [
740
+ "rand_chacha 0.9.0",
741
+ "rand_core 0.9.3",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "rand_chacha"
746
+ version = "0.3.1"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
749
+ dependencies = [
750
+ "ppv-lite86",
751
+ "rand_core 0.6.4",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "rand_chacha"
756
+ version = "0.9.0"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
759
+ dependencies = [
760
+ "ppv-lite86",
761
+ "rand_core 0.9.3",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "rand_core"
766
+ version = "0.6.4"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
769
+ dependencies = [
770
+ "getrandom 0.2.16",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "rand_core"
775
+ version = "0.9.3"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
778
+ dependencies = [
779
+ "getrandom 0.3.4",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "rayon"
784
+ version = "1.11.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
787
+ dependencies = [
788
+ "either",
789
+ "rayon-core",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "rayon-core"
794
+ version = "1.13.0"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
797
+ dependencies = [
798
+ "crossbeam-deque",
799
+ "crossbeam-utils",
800
+ ]
801
+
802
+ [[package]]
803
+ name = "regex"
804
+ version = "1.12.2"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
807
+ dependencies = [
808
+ "aho-corasick",
809
+ "memchr",
810
+ "regex-automata",
811
+ "regex-syntax",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "regex-automata"
816
+ version = "0.4.13"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
819
+ dependencies = [
820
+ "aho-corasick",
821
+ "memchr",
822
+ "regex-syntax",
823
+ ]
824
+
825
+ [[package]]
826
+ name = "regex-syntax"
827
+ version = "0.8.8"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
830
+
831
+ [[package]]
832
+ name = "rustc-hash"
833
+ version = "2.1.1"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
836
+
837
+ [[package]]
838
+ name = "rustversion"
839
+ version = "1.0.22"
840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
841
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
842
+
843
+ [[package]]
844
+ name = "ryu"
845
+ version = "1.0.20"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
848
+
849
+ [[package]]
850
+ name = "serde"
851
+ version = "1.0.228"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
854
+ dependencies = [
855
+ "serde_core",
856
+ "serde_derive",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "serde_core"
861
+ version = "1.0.228"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
864
+ dependencies = [
865
+ "serde_derive",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "serde_derive"
870
+ version = "1.0.228"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
873
+ dependencies = [
874
+ "proc-macro2",
875
+ "quote",
876
+ "syn",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "serde_json"
881
+ version = "1.0.145"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
884
+ dependencies = [
885
+ "itoa",
886
+ "memchr",
887
+ "ryu",
888
+ "serde",
889
+ "serde_core",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "sim"
894
+ version = "0.1.0"
895
+ dependencies = [
896
+ "baa",
897
+ "clap",
898
+ "patronus",
899
+ "rustc-hash",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "similar"
904
+ version = "2.7.0"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
907
+
908
+ [[package]]
909
+ name = "simplify"
910
+ version = "0.1.0"
911
+ dependencies = [
912
+ "clap",
913
+ "patronus",
914
+ "rustc-hash",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "smallvec"
919
+ version = "1.15.1"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
922
+
923
+ [[package]]
924
+ name = "strsim"
925
+ version = "0.11.1"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
928
+
929
+ [[package]]
930
+ name = "symbol_table"
931
+ version = "0.2.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "32bf088d1d7df2b2b6711b06da3471bc86677383c57b27251e18c56df8deac14"
934
+ dependencies = [
935
+ "ahash",
936
+ "hashbrown 0.12.3",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "symbolic_expressions"
941
+ version = "5.0.3"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "7c68d531d83ec6c531150584c42a4290911964d5f0d79132b193b67252a23b71"
944
+
945
+ [[package]]
946
+ name = "syn"
947
+ version = "2.0.107"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "2a26dbd934e5451d21ef060c018dae56fc073894c5a7896f882928a76e6d081b"
950
+ dependencies = [
951
+ "proc-macro2",
952
+ "quote",
953
+ "unicode-ident",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "tap"
958
+ version = "1.0.1"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
961
+
962
+ [[package]]
963
+ name = "target-lexicon"
964
+ version = "0.13.3"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
967
+
968
+ [[package]]
969
+ name = "termcolor"
970
+ version = "1.4.1"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
973
+ dependencies = [
974
+ "winapi-util",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "thiserror"
979
+ version = "1.0.69"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
982
+ dependencies = [
983
+ "thiserror-impl 1.0.69",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "thiserror"
988
+ version = "2.0.17"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
991
+ dependencies = [
992
+ "thiserror-impl 2.0.17",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "thiserror-impl"
997
+ version = "1.0.69"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1000
+ dependencies = [
1001
+ "proc-macro2",
1002
+ "quote",
1003
+ "syn",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "thiserror-impl"
1008
+ version = "2.0.17"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1011
+ dependencies = [
1012
+ "proc-macro2",
1013
+ "quote",
1014
+ "syn",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "twox-hash"
1019
+ version = "2.1.2"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1022
+
1023
+ [[package]]
1024
+ name = "unicode-ident"
1025
+ version = "1.0.19"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
1028
+
1029
+ [[package]]
1030
+ name = "unicode-width"
1031
+ version = "0.1.14"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1034
+
1035
+ [[package]]
1036
+ name = "unicode-width"
1037
+ version = "0.2.2"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1040
+
1041
+ [[package]]
1042
+ name = "unindent"
1043
+ version = "0.2.4"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1046
+
1047
+ [[package]]
1048
+ name = "utf8parse"
1049
+ version = "0.2.2"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1052
+
1053
+ [[package]]
1054
+ name = "version_check"
1055
+ version = "0.9.5"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1058
+
1059
+ [[package]]
1060
+ name = "view"
1061
+ version = "0.1.0"
1062
+ dependencies = [
1063
+ "clap",
1064
+ "patronus",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "wasi"
1069
+ version = "0.11.1+wasi-snapshot-preview1"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1072
+
1073
+ [[package]]
1074
+ name = "wasip2"
1075
+ version = "1.0.1+wasi-0.2.4"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1078
+ dependencies = [
1079
+ "wit-bindgen",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "wasm-bindgen"
1084
+ version = "0.2.104"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
1087
+ dependencies = [
1088
+ "cfg-if",
1089
+ "once_cell",
1090
+ "rustversion",
1091
+ "wasm-bindgen-macro",
1092
+ "wasm-bindgen-shared",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "wasm-bindgen-backend"
1097
+ version = "0.2.104"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
1100
+ dependencies = [
1101
+ "bumpalo",
1102
+ "log",
1103
+ "proc-macro2",
1104
+ "quote",
1105
+ "syn",
1106
+ "wasm-bindgen-shared",
1107
+ ]
1108
+
1109
+ [[package]]
1110
+ name = "wasm-bindgen-macro"
1111
+ version = "0.2.104"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
1114
+ dependencies = [
1115
+ "quote",
1116
+ "wasm-bindgen-macro-support",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "wasm-bindgen-macro-support"
1121
+ version = "0.2.104"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
1124
+ dependencies = [
1125
+ "proc-macro2",
1126
+ "quote",
1127
+ "syn",
1128
+ "wasm-bindgen-backend",
1129
+ "wasm-bindgen-shared",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "wasm-bindgen-shared"
1134
+ version = "0.2.104"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
1137
+ dependencies = [
1138
+ "unicode-ident",
1139
+ ]
1140
+
1141
+ [[package]]
1142
+ name = "web-time"
1143
+ version = "1.1.0"
1144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1145
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1146
+ dependencies = [
1147
+ "js-sys",
1148
+ "wasm-bindgen",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "winapi-util"
1153
+ version = "0.1.11"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1156
+ dependencies = [
1157
+ "windows-sys 0.61.2",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "windows-link"
1162
+ version = "0.2.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1165
+
1166
+ [[package]]
1167
+ name = "windows-sys"
1168
+ version = "0.59.0"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1171
+ dependencies = [
1172
+ "windows-targets 0.52.6",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "windows-sys"
1177
+ version = "0.60.2"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1180
+ dependencies = [
1181
+ "windows-targets 0.53.5",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "windows-sys"
1186
+ version = "0.61.2"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1189
+ dependencies = [
1190
+ "windows-link",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "windows-targets"
1195
+ version = "0.52.6"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1198
+ dependencies = [
1199
+ "windows_aarch64_gnullvm 0.52.6",
1200
+ "windows_aarch64_msvc 0.52.6",
1201
+ "windows_i686_gnu 0.52.6",
1202
+ "windows_i686_gnullvm 0.52.6",
1203
+ "windows_i686_msvc 0.52.6",
1204
+ "windows_x86_64_gnu 0.52.6",
1205
+ "windows_x86_64_gnullvm 0.52.6",
1206
+ "windows_x86_64_msvc 0.52.6",
1207
+ ]
1208
+
1209
+ [[package]]
1210
+ name = "windows-targets"
1211
+ version = "0.53.5"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1214
+ dependencies = [
1215
+ "windows-link",
1216
+ "windows_aarch64_gnullvm 0.53.1",
1217
+ "windows_aarch64_msvc 0.53.1",
1218
+ "windows_i686_gnu 0.53.1",
1219
+ "windows_i686_gnullvm 0.53.1",
1220
+ "windows_i686_msvc 0.53.1",
1221
+ "windows_x86_64_gnu 0.53.1",
1222
+ "windows_x86_64_gnullvm 0.53.1",
1223
+ "windows_x86_64_msvc 0.53.1",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "windows_aarch64_gnullvm"
1228
+ version = "0.52.6"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1231
+
1232
+ [[package]]
1233
+ name = "windows_aarch64_gnullvm"
1234
+ version = "0.53.1"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1237
+
1238
+ [[package]]
1239
+ name = "windows_aarch64_msvc"
1240
+ version = "0.52.6"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1243
+
1244
+ [[package]]
1245
+ name = "windows_aarch64_msvc"
1246
+ version = "0.53.1"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1249
+
1250
+ [[package]]
1251
+ name = "windows_i686_gnu"
1252
+ version = "0.52.6"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1255
+
1256
+ [[package]]
1257
+ name = "windows_i686_gnu"
1258
+ version = "0.53.1"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1261
+
1262
+ [[package]]
1263
+ name = "windows_i686_gnullvm"
1264
+ version = "0.52.6"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1267
+
1268
+ [[package]]
1269
+ name = "windows_i686_gnullvm"
1270
+ version = "0.53.1"
1271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1272
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1273
+
1274
+ [[package]]
1275
+ name = "windows_i686_msvc"
1276
+ version = "0.52.6"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1279
+
1280
+ [[package]]
1281
+ name = "windows_i686_msvc"
1282
+ version = "0.53.1"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1285
+
1286
+ [[package]]
1287
+ name = "windows_x86_64_gnu"
1288
+ version = "0.52.6"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1291
+
1292
+ [[package]]
1293
+ name = "windows_x86_64_gnu"
1294
+ version = "0.53.1"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1297
+
1298
+ [[package]]
1299
+ name = "windows_x86_64_gnullvm"
1300
+ version = "0.52.6"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1303
+
1304
+ [[package]]
1305
+ name = "windows_x86_64_gnullvm"
1306
+ version = "0.53.1"
1307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1308
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1309
+
1310
+ [[package]]
1311
+ name = "windows_x86_64_msvc"
1312
+ version = "0.52.6"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1315
+
1316
+ [[package]]
1317
+ name = "windows_x86_64_msvc"
1318
+ version = "0.53.1"
1319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1320
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1321
+
1322
+ [[package]]
1323
+ name = "wit-bindgen"
1324
+ version = "0.46.0"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1327
+
1328
+ [[package]]
1329
+ name = "wyz"
1330
+ version = "0.5.1"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
1333
+ dependencies = [
1334
+ "tap",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "zerocopy"
1339
+ version = "0.8.27"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1342
+ dependencies = [
1343
+ "zerocopy-derive",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "zerocopy-derive"
1348
+ version = "0.8.27"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1351
+ dependencies = [
1352
+ "proc-macro2",
1353
+ "quote",
1354
+ "syn",
1355
+ ]