boreal-python 0.1.0__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 (123) hide show
  1. boreal_python-0.1.0/Cargo.lock +1503 -0
  2. boreal_python-0.1.0/Cargo.toml +74 -0
  3. boreal_python-0.1.0/PKG-INFO +84 -0
  4. boreal_python-0.1.0/README.md +73 -0
  5. boreal_python-0.1.0/boreal/Cargo.toml +137 -0
  6. boreal_python-0.1.0/boreal/LICENSE-APACHE +176 -0
  7. boreal_python-0.1.0/boreal/LICENSE-MIT +23 -0
  8. boreal_python-0.1.0/boreal/README.md +219 -0
  9. boreal_python-0.1.0/boreal/src/atoms.rs +93 -0
  10. boreal_python-0.1.0/boreal/src/bitmaps.rs +146 -0
  11. boreal_python-0.1.0/boreal/src/bytes_pool.rs +229 -0
  12. boreal_python-0.1.0/boreal/src/compiler/builder.rs +105 -0
  13. boreal_python-0.1.0/boreal/src/compiler/error.rs +507 -0
  14. boreal_python-0.1.0/boreal/src/compiler/expression.rs +2532 -0
  15. boreal_python-0.1.0/boreal/src/compiler/external_symbol.rs +166 -0
  16. boreal_python-0.1.0/boreal/src/compiler/mod.rs +813 -0
  17. boreal_python-0.1.0/boreal/src/compiler/module.rs +1098 -0
  18. boreal_python-0.1.0/boreal/src/compiler/params.rs +117 -0
  19. boreal_python-0.1.0/boreal/src/compiler/rule.rs +546 -0
  20. boreal_python-0.1.0/boreal/src/compiler/tests.rs +301 -0
  21. boreal_python-0.1.0/boreal/src/compiler/variable.rs +250 -0
  22. boreal_python-0.1.0/boreal/src/evaluator/entrypoint.rs +89 -0
  23. boreal_python-0.1.0/boreal/src/evaluator/error.rs +29 -0
  24. boreal_python-0.1.0/boreal/src/evaluator/mod.rs +998 -0
  25. boreal_python-0.1.0/boreal/src/evaluator/module.rs +250 -0
  26. boreal_python-0.1.0/boreal/src/evaluator/read_integer.rs +47 -0
  27. boreal_python-0.1.0/boreal/src/evaluator/variable.rs +173 -0
  28. boreal_python-0.1.0/boreal/src/lib.rs +79 -0
  29. boreal_python-0.1.0/boreal/src/matcher/analysis.rs +296 -0
  30. boreal_python-0.1.0/boreal/src/matcher/base64.rs +78 -0
  31. boreal_python-0.1.0/boreal/src/matcher/literals.rs +901 -0
  32. boreal_python-0.1.0/boreal/src/matcher/mod.rs +663 -0
  33. boreal_python-0.1.0/boreal/src/matcher/only_literals.rs +433 -0
  34. boreal_python-0.1.0/boreal/src/matcher/raw.rs +304 -0
  35. boreal_python-0.1.0/boreal/src/matcher/validator/dfa.rs +623 -0
  36. boreal_python-0.1.0/boreal/src/matcher/validator/simple.rs +540 -0
  37. boreal_python-0.1.0/boreal/src/matcher/validator.rs +438 -0
  38. boreal_python-0.1.0/boreal/src/matcher/widener.rs +210 -0
  39. boreal_python-0.1.0/boreal/src/memory.rs +354 -0
  40. boreal_python-0.1.0/boreal/src/module/console.rs +190 -0
  41. boreal_python-0.1.0/boreal/src/module/cuckoo.rs +358 -0
  42. boreal_python-0.1.0/boreal/src/module/dex.rs +1060 -0
  43. boreal_python-0.1.0/boreal/src/module/dotnet.rs +2394 -0
  44. boreal_python-0.1.0/boreal/src/module/elf.rs +632 -0
  45. boreal_python-0.1.0/boreal/src/module/hash.rs +231 -0
  46. boreal_python-0.1.0/boreal/src/module/macho.rs +1191 -0
  47. boreal_python-0.1.0/boreal/src/module/magic.rs +99 -0
  48. boreal_python-0.1.0/boreal/src/module/math.rs +778 -0
  49. boreal_python-0.1.0/boreal/src/module/mod.rs +987 -0
  50. boreal_python-0.1.0/boreal/src/module/pe/debug.rs +69 -0
  51. boreal_python-0.1.0/boreal/src/module/pe/ord.rs +549 -0
  52. boreal_python-0.1.0/boreal/src/module/pe/signatures/asn1.rs +844 -0
  53. boreal_python-0.1.0/boreal/src/module/pe/signatures/verify.rs +226 -0
  54. boreal_python-0.1.0/boreal/src/module/pe/signatures.rs +733 -0
  55. boreal_python-0.1.0/boreal/src/module/pe/utils.rs +141 -0
  56. boreal_python-0.1.0/boreal/src/module/pe/version_info.rs +237 -0
  57. boreal_python-0.1.0/boreal/src/module/pe.rs +2570 -0
  58. boreal_python-0.1.0/boreal/src/module/string.rs +112 -0
  59. boreal_python-0.1.0/boreal/src/module/time.rs +37 -0
  60. boreal_python-0.1.0/boreal/src/regex/hir.rs +409 -0
  61. boreal_python-0.1.0/boreal/src/regex/mod.rs +462 -0
  62. boreal_python-0.1.0/boreal/src/regex/visitor.rs +147 -0
  63. boreal_python-0.1.0/boreal/src/scanner/ac_scan.rs +356 -0
  64. boreal_python-0.1.0/boreal/src/scanner/error.rs +59 -0
  65. boreal_python-0.1.0/boreal/src/scanner/mod.rs +2565 -0
  66. boreal_python-0.1.0/boreal/src/scanner/params.rs +725 -0
  67. boreal_python-0.1.0/boreal/src/scanner/process/sys/default.rs +6 -0
  68. boreal_python-0.1.0/boreal/src/scanner/process/sys/linux.rs +629 -0
  69. boreal_python-0.1.0/boreal/src/scanner/process/sys/macos.rs +203 -0
  70. boreal_python-0.1.0/boreal/src/scanner/process/sys/windows.rs +265 -0
  71. boreal_python-0.1.0/boreal/src/scanner/process/sys.rs +19 -0
  72. boreal_python-0.1.0/boreal/src/scanner/process.rs +8 -0
  73. boreal_python-0.1.0/boreal/src/statistics.rs +124 -0
  74. boreal_python-0.1.0/boreal/src/test_helpers.rs +31 -0
  75. boreal_python-0.1.0/boreal/src/timeout.rs +37 -0
  76. boreal_python-0.1.0/boreal/src/wire.rs +176 -0
  77. boreal_python-0.1.0/boreal-parser/Cargo.toml +22 -0
  78. boreal_python-0.1.0/boreal-parser/LICENSE-APACHE +176 -0
  79. boreal_python-0.1.0/boreal-parser/LICENSE-MIT +23 -0
  80. boreal_python-0.1.0/boreal-parser/README.md +17 -0
  81. boreal_python-0.1.0/boreal-parser/src/error.rs +263 -0
  82. boreal_python-0.1.0/boreal-parser/src/expression/boolean_expression.rs +1076 -0
  83. boreal_python-0.1.0/boreal-parser/src/expression/common.rs +80 -0
  84. boreal_python-0.1.0/boreal-parser/src/expression/for_expression.rs +953 -0
  85. boreal_python-0.1.0/boreal-parser/src/expression/identifier.rs +279 -0
  86. boreal_python-0.1.0/boreal-parser/src/expression/mod.rs +458 -0
  87. boreal_python-0.1.0/boreal-parser/src/expression/primary_expression.rs +1053 -0
  88. boreal_python-0.1.0/boreal-parser/src/expression/read_integer.rs +152 -0
  89. boreal_python-0.1.0/boreal-parser/src/expression/string_expression.rs +206 -0
  90. boreal_python-0.1.0/boreal-parser/src/file.rs +256 -0
  91. boreal_python-0.1.0/boreal-parser/src/hex_string.rs +670 -0
  92. boreal_python-0.1.0/boreal-parser/src/lib.rs +142 -0
  93. boreal_python-0.1.0/boreal-parser/src/nom_recipes.rs +211 -0
  94. boreal_python-0.1.0/boreal-parser/src/number.rs +176 -0
  95. boreal_python-0.1.0/boreal-parser/src/regex.rs +1528 -0
  96. boreal_python-0.1.0/boreal-parser/src/rule.rs +1221 -0
  97. boreal_python-0.1.0/boreal-parser/src/string.rs +288 -0
  98. boreal_python-0.1.0/boreal-parser/src/test_helpers.rs +65 -0
  99. boreal_python-0.1.0/boreal-parser/src/types.rs +472 -0
  100. boreal_python-0.1.0/boreal-py/Cargo.toml +33 -0
  101. boreal_python-0.1.0/boreal-py/README.md +73 -0
  102. boreal_python-0.1.0/boreal-py/boreal.pyi +291 -0
  103. boreal_python-0.1.0/boreal-py/docs/README.md +73 -0
  104. boreal_python-0.1.0/boreal-py/docs/api.md +3 -0
  105. boreal_python-0.1.0/boreal-py/docs/griffe_customization.py +38 -0
  106. boreal_python-0.1.0/boreal-py/docs/yara_compatibility_mode.md +166 -0
  107. boreal_python-0.1.0/boreal-py/mkdocs.yml +40 -0
  108. boreal_python-0.1.0/boreal-py/src/lib.rs +451 -0
  109. boreal_python-0.1.0/boreal-py/src/module.rs +108 -0
  110. boreal_python-0.1.0/boreal-py/src/rule.rs +106 -0
  111. boreal_python-0.1.0/boreal-py/src/rule_match.rs +79 -0
  112. boreal_python-0.1.0/boreal-py/src/rule_string.rs +30 -0
  113. boreal_python-0.1.0/boreal-py/src/scanner.rs +760 -0
  114. boreal_python-0.1.0/boreal-py/src/string_match_instance.rs +78 -0
  115. boreal_python-0.1.0/boreal-py/src/string_matches.rs +65 -0
  116. boreal_python-0.1.0/boreal-py/tests/conftest.py +9 -0
  117. boreal_python-0.1.0/boreal-py/tests/test_api.py +61 -0
  118. boreal_python-0.1.0/boreal-py/tests/test_compile.py +376 -0
  119. boreal_python-0.1.0/boreal-py/tests/test_scanner.py +943 -0
  120. boreal_python-0.1.0/boreal-py/tests/test_types.py +279 -0
  121. boreal_python-0.1.0/boreal-py/tests/utils.py +16 -0
  122. boreal_python-0.1.0/boreal-py/uv.lock +694 -0
  123. boreal_python-0.1.0/pyproject.toml +41 -0
@@ -0,0 +1,1503 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.3"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "anstream"
16
+ version = "0.6.18"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
19
+ dependencies = [
20
+ "anstyle",
21
+ "anstyle-parse",
22
+ "anstyle-query",
23
+ "anstyle-wincon",
24
+ "colorchoice",
25
+ "is_terminal_polyfill",
26
+ "utf8parse",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.10"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
34
+
35
+ [[package]]
36
+ name = "anstyle-parse"
37
+ version = "0.2.6"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
40
+ dependencies = [
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle-query"
46
+ version = "1.1.2"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
49
+ dependencies = [
50
+ "windows-sys",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-wincon"
55
+ version = "3.0.7"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
58
+ dependencies = [
59
+ "anstyle",
60
+ "once_cell",
61
+ "windows-sys",
62
+ ]
63
+
64
+ [[package]]
65
+ name = "assert_cmd"
66
+ version = "2.0.17"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
69
+ dependencies = [
70
+ "anstyle",
71
+ "bstr",
72
+ "doc-comment",
73
+ "libc",
74
+ "predicates",
75
+ "predicates-core",
76
+ "predicates-tree",
77
+ "wait-timeout",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "autocfg"
82
+ version = "1.4.0"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
85
+
86
+ [[package]]
87
+ name = "base16ct"
88
+ version = "0.2.0"
89
+ source = "registry+https://github.com/rust-lang/crates.io-index"
90
+ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
91
+
92
+ [[package]]
93
+ name = "base64"
94
+ version = "0.22.1"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
97
+
98
+ [[package]]
99
+ name = "base64ct"
100
+ version = "1.6.0"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
103
+
104
+ [[package]]
105
+ name = "bindgen"
106
+ version = "0.68.1"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078"
109
+ dependencies = [
110
+ "bitflags",
111
+ "cexpr",
112
+ "clang-sys",
113
+ "lazy_static",
114
+ "lazycell",
115
+ "peeking_take_while",
116
+ "proc-macro2",
117
+ "quote",
118
+ "regex",
119
+ "rustc-hash",
120
+ "shlex",
121
+ "syn",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "bitflags"
126
+ version = "2.9.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
129
+
130
+ [[package]]
131
+ name = "block-buffer"
132
+ version = "0.10.4"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
135
+ dependencies = [
136
+ "generic-array",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "boreal"
141
+ version = "0.9.0"
142
+ dependencies = [
143
+ "aho-corasick",
144
+ "base64",
145
+ "boreal-parser",
146
+ "borsh",
147
+ "codespan-reporting",
148
+ "const-oid",
149
+ "crc32fast",
150
+ "der",
151
+ "dsa",
152
+ "glob",
153
+ "libc",
154
+ "mach2",
155
+ "magic",
156
+ "md-5",
157
+ "memchr",
158
+ "memmap2",
159
+ "object",
160
+ "p256",
161
+ "p384",
162
+ "regex-automata",
163
+ "regex-syntax",
164
+ "rsa",
165
+ "serde_json",
166
+ "sha1",
167
+ "sha2",
168
+ "spki",
169
+ "tempfile",
170
+ "tlsh2",
171
+ "windows-sys",
172
+ "yara",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "boreal-cli"
177
+ version = "0.9.0"
178
+ dependencies = [
179
+ "assert_cmd",
180
+ "boreal",
181
+ "clap",
182
+ "codespan-reporting",
183
+ "crossbeam-channel",
184
+ "hex",
185
+ "predicates",
186
+ "tempfile",
187
+ "walkdir",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "boreal-parser"
192
+ version = "0.6.0"
193
+ dependencies = [
194
+ "codespan-reporting",
195
+ "nom 8.0.0",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "boreal-py"
200
+ version = "0.1.0"
201
+ dependencies = [
202
+ "boreal",
203
+ "pyo3",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "boreal-test-helpers"
208
+ version = "0.0.1"
209
+ dependencies = [
210
+ "memmap2",
211
+ "tempfile",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "borsh"
216
+ version = "1.5.7"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
219
+ dependencies = [
220
+ "cfg_aliases",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "bstr"
225
+ version = "1.12.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
228
+ dependencies = [
229
+ "memchr",
230
+ "regex-automata",
231
+ "serde",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "byteorder"
236
+ version = "1.5.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
239
+
240
+ [[package]]
241
+ name = "cc"
242
+ version = "1.2.19"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
245
+ dependencies = [
246
+ "shlex",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "cexpr"
251
+ version = "0.6.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
254
+ dependencies = [
255
+ "nom 7.1.3",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "cfg-if"
260
+ version = "1.0.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
263
+
264
+ [[package]]
265
+ name = "cfg_aliases"
266
+ version = "0.2.1"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
269
+
270
+ [[package]]
271
+ name = "clang-sys"
272
+ version = "1.8.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
275
+ dependencies = [
276
+ "glob",
277
+ "libc",
278
+ "libloading",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "clap"
283
+ version = "4.5.37"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
286
+ dependencies = [
287
+ "clap_builder",
288
+ ]
289
+
290
+ [[package]]
291
+ name = "clap_builder"
292
+ version = "4.5.37"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
295
+ dependencies = [
296
+ "anstream",
297
+ "anstyle",
298
+ "clap_lex",
299
+ "strsim",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "clap_lex"
304
+ version = "0.7.4"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
307
+
308
+ [[package]]
309
+ name = "codespan-reporting"
310
+ version = "0.12.0"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
313
+ dependencies = [
314
+ "serde",
315
+ "termcolor",
316
+ "unicode-width",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "colorchoice"
321
+ version = "1.0.3"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
324
+
325
+ [[package]]
326
+ name = "const-oid"
327
+ version = "0.9.6"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
330
+
331
+ [[package]]
332
+ name = "cpufeatures"
333
+ version = "0.2.17"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
336
+ dependencies = [
337
+ "libc",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "crc32fast"
342
+ version = "1.4.2"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
345
+ dependencies = [
346
+ "cfg-if",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "crossbeam-channel"
351
+ version = "0.5.15"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
354
+ dependencies = [
355
+ "crossbeam-utils",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "crossbeam-utils"
360
+ version = "0.8.21"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
363
+
364
+ [[package]]
365
+ name = "crypto-bigint"
366
+ version = "0.5.5"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
369
+ dependencies = [
370
+ "generic-array",
371
+ "rand_core",
372
+ "subtle",
373
+ "zeroize",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "crypto-common"
378
+ version = "0.1.6"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
381
+ dependencies = [
382
+ "generic-array",
383
+ "typenum",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "der"
388
+ version = "0.7.10"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
391
+ dependencies = [
392
+ "const-oid",
393
+ "der_derive",
394
+ "pem-rfc7468",
395
+ "zeroize",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "der_derive"
400
+ version = "0.7.3"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
403
+ dependencies = [
404
+ "proc-macro2",
405
+ "quote",
406
+ "syn",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "difflib"
411
+ version = "0.4.0"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
414
+
415
+ [[package]]
416
+ name = "digest"
417
+ version = "0.10.7"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
420
+ dependencies = [
421
+ "block-buffer",
422
+ "const-oid",
423
+ "crypto-common",
424
+ "subtle",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "doc-comment"
429
+ version = "0.3.3"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
432
+
433
+ [[package]]
434
+ name = "dsa"
435
+ version = "0.6.3"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "48bc224a9084ad760195584ce5abb3c2c34a225fa312a128ad245a6b412b7689"
438
+ dependencies = [
439
+ "digest",
440
+ "num-bigint-dig",
441
+ "num-traits",
442
+ "pkcs8",
443
+ "rfc6979",
444
+ "sha2",
445
+ "signature",
446
+ "zeroize",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "ecdsa"
451
+ version = "0.16.9"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
454
+ dependencies = [
455
+ "der",
456
+ "digest",
457
+ "elliptic-curve",
458
+ "rfc6979",
459
+ "signature",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "elliptic-curve"
464
+ version = "0.13.8"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
467
+ dependencies = [
468
+ "base16ct",
469
+ "crypto-bigint",
470
+ "digest",
471
+ "ff",
472
+ "generic-array",
473
+ "group",
474
+ "pem-rfc7468",
475
+ "pkcs8",
476
+ "rand_core",
477
+ "sec1",
478
+ "subtle",
479
+ "zeroize",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "errno"
484
+ version = "0.3.11"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
487
+ dependencies = [
488
+ "libc",
489
+ "windows-sys",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "fastrand"
494
+ version = "2.3.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
497
+
498
+ [[package]]
499
+ name = "ff"
500
+ version = "0.13.1"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
503
+ dependencies = [
504
+ "rand_core",
505
+ "subtle",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "fs_extra"
510
+ version = "1.3.0"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
513
+
514
+ [[package]]
515
+ name = "generic-array"
516
+ version = "0.14.7"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
519
+ dependencies = [
520
+ "typenum",
521
+ "version_check",
522
+ "zeroize",
523
+ ]
524
+
525
+ [[package]]
526
+ name = "getrandom"
527
+ version = "0.3.2"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
530
+ dependencies = [
531
+ "cfg-if",
532
+ "libc",
533
+ "r-efi",
534
+ "wasi",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "glob"
539
+ version = "0.3.2"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
542
+
543
+ [[package]]
544
+ name = "group"
545
+ version = "0.13.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
548
+ dependencies = [
549
+ "ff",
550
+ "rand_core",
551
+ "subtle",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "heck"
556
+ version = "0.5.0"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
559
+
560
+ [[package]]
561
+ name = "hex"
562
+ version = "0.4.3"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
565
+
566
+ [[package]]
567
+ name = "hmac"
568
+ version = "0.12.1"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
571
+ dependencies = [
572
+ "digest",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "indoc"
577
+ version = "2.0.6"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
580
+
581
+ [[package]]
582
+ name = "is_terminal_polyfill"
583
+ version = "1.70.1"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
586
+
587
+ [[package]]
588
+ name = "itoa"
589
+ version = "1.0.15"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
592
+
593
+ [[package]]
594
+ name = "lazy_static"
595
+ version = "1.5.0"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
598
+ dependencies = [
599
+ "spin",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "lazycell"
604
+ version = "1.3.0"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
607
+
608
+ [[package]]
609
+ name = "libc"
610
+ version = "0.2.172"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
613
+
614
+ [[package]]
615
+ name = "libloading"
616
+ version = "0.8.6"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
619
+ dependencies = [
620
+ "cfg-if",
621
+ "windows-targets",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "libm"
626
+ version = "0.2.11"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
629
+
630
+ [[package]]
631
+ name = "linux-raw-sys"
632
+ version = "0.9.4"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
635
+
636
+ [[package]]
637
+ name = "mach2"
638
+ version = "0.4.2"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
641
+ dependencies = [
642
+ "libc",
643
+ ]
644
+
645
+ [[package]]
646
+ name = "magic"
647
+ version = "0.16.2"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
650
+ dependencies = [
651
+ "bitflags",
652
+ "libc",
653
+ "magic-sys",
654
+ "thiserror",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "magic-sys"
659
+ version = "0.3.0"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "eff86ae08895140d628119d407d568f3b657145ee8c265878064f717534bb3bc"
662
+ dependencies = [
663
+ "libc",
664
+ "vcpkg",
665
+ ]
666
+
667
+ [[package]]
668
+ name = "md-5"
669
+ version = "0.10.6"
670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
671
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
672
+ dependencies = [
673
+ "cfg-if",
674
+ "digest",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "memchr"
679
+ version = "2.7.4"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
682
+
683
+ [[package]]
684
+ name = "memmap2"
685
+ version = "0.9.5"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
688
+ dependencies = [
689
+ "libc",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "memoffset"
694
+ version = "0.9.1"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
697
+ dependencies = [
698
+ "autocfg",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "minimal-lexical"
703
+ version = "0.2.1"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
706
+
707
+ [[package]]
708
+ name = "nom"
709
+ version = "7.1.3"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
712
+ dependencies = [
713
+ "memchr",
714
+ "minimal-lexical",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "nom"
719
+ version = "8.0.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
722
+ dependencies = [
723
+ "memchr",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "num-bigint-dig"
728
+ version = "0.8.4"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
731
+ dependencies = [
732
+ "byteorder",
733
+ "lazy_static",
734
+ "libm",
735
+ "num-integer",
736
+ "num-iter",
737
+ "num-traits",
738
+ "rand",
739
+ "smallvec",
740
+ "zeroize",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "num-integer"
745
+ version = "0.1.46"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
748
+ dependencies = [
749
+ "num-traits",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "num-iter"
754
+ version = "0.1.45"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
757
+ dependencies = [
758
+ "autocfg",
759
+ "num-integer",
760
+ "num-traits",
761
+ ]
762
+
763
+ [[package]]
764
+ name = "num-traits"
765
+ version = "0.2.19"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
768
+ dependencies = [
769
+ "autocfg",
770
+ "libm",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "object"
775
+ version = "0.36.7"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
778
+ dependencies = [
779
+ "memchr",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "once_cell"
784
+ version = "1.21.3"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
787
+
788
+ [[package]]
789
+ name = "p256"
790
+ version = "0.13.2"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
793
+ dependencies = [
794
+ "ecdsa",
795
+ "elliptic-curve",
796
+ "primeorder",
797
+ "sha2",
798
+ ]
799
+
800
+ [[package]]
801
+ name = "p384"
802
+ version = "0.13.1"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
805
+ dependencies = [
806
+ "ecdsa",
807
+ "elliptic-curve",
808
+ "primeorder",
809
+ "sha2",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "peeking_take_while"
814
+ version = "0.1.2"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
817
+
818
+ [[package]]
819
+ name = "pem-rfc7468"
820
+ version = "0.7.0"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
823
+ dependencies = [
824
+ "base64ct",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "pkcs1"
829
+ version = "0.7.5"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
832
+ dependencies = [
833
+ "der",
834
+ "pkcs8",
835
+ "spki",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "pkcs8"
840
+ version = "0.10.2"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
843
+ dependencies = [
844
+ "der",
845
+ "spki",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "portable-atomic"
850
+ version = "1.11.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
853
+
854
+ [[package]]
855
+ name = "ppv-lite86"
856
+ version = "0.2.21"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
859
+ dependencies = [
860
+ "zerocopy",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "predicates"
865
+ version = "3.1.3"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
868
+ dependencies = [
869
+ "anstyle",
870
+ "difflib",
871
+ "predicates-core",
872
+ "regex",
873
+ ]
874
+
875
+ [[package]]
876
+ name = "predicates-core"
877
+ version = "1.0.9"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
880
+
881
+ [[package]]
882
+ name = "predicates-tree"
883
+ version = "1.0.12"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
886
+ dependencies = [
887
+ "predicates-core",
888
+ "termtree",
889
+ ]
890
+
891
+ [[package]]
892
+ name = "primeorder"
893
+ version = "0.13.6"
894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
895
+ checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
896
+ dependencies = [
897
+ "elliptic-curve",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "proc-macro2"
902
+ version = "1.0.95"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
905
+ dependencies = [
906
+ "unicode-ident",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "pyo3"
911
+ version = "0.24.1"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
914
+ dependencies = [
915
+ "cfg-if",
916
+ "indoc",
917
+ "libc",
918
+ "memoffset",
919
+ "once_cell",
920
+ "portable-atomic",
921
+ "pyo3-build-config",
922
+ "pyo3-ffi",
923
+ "pyo3-macros",
924
+ "unindent",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "pyo3-build-config"
929
+ version = "0.24.1"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
932
+ dependencies = [
933
+ "once_cell",
934
+ "target-lexicon",
935
+ ]
936
+
937
+ [[package]]
938
+ name = "pyo3-ffi"
939
+ version = "0.24.1"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
942
+ dependencies = [
943
+ "libc",
944
+ "pyo3-build-config",
945
+ ]
946
+
947
+ [[package]]
948
+ name = "pyo3-macros"
949
+ version = "0.24.1"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
952
+ dependencies = [
953
+ "proc-macro2",
954
+ "pyo3-macros-backend",
955
+ "quote",
956
+ "syn",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "pyo3-macros-backend"
961
+ version = "0.24.1"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
964
+ dependencies = [
965
+ "heck",
966
+ "proc-macro2",
967
+ "pyo3-build-config",
968
+ "quote",
969
+ "syn",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "quote"
974
+ version = "1.0.40"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
977
+ dependencies = [
978
+ "proc-macro2",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "r-efi"
983
+ version = "5.2.0"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
986
+
987
+ [[package]]
988
+ name = "rand"
989
+ version = "0.8.5"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
992
+ dependencies = [
993
+ "rand_chacha",
994
+ "rand_core",
995
+ ]
996
+
997
+ [[package]]
998
+ name = "rand_chacha"
999
+ version = "0.3.1"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1002
+ dependencies = [
1003
+ "ppv-lite86",
1004
+ "rand_core",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "rand_core"
1009
+ version = "0.6.4"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1012
+
1013
+ [[package]]
1014
+ name = "regex"
1015
+ version = "1.11.1"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1018
+ dependencies = [
1019
+ "aho-corasick",
1020
+ "memchr",
1021
+ "regex-automata",
1022
+ "regex-syntax",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "regex-automata"
1027
+ version = "0.4.9"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1030
+ dependencies = [
1031
+ "aho-corasick",
1032
+ "memchr",
1033
+ "regex-syntax",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "regex-syntax"
1038
+ version = "0.8.5"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1041
+
1042
+ [[package]]
1043
+ name = "rfc6979"
1044
+ version = "0.4.0"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
1047
+ dependencies = [
1048
+ "hmac",
1049
+ "subtle",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "rsa"
1054
+ version = "0.9.8"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
1057
+ dependencies = [
1058
+ "const-oid",
1059
+ "digest",
1060
+ "num-bigint-dig",
1061
+ "num-integer",
1062
+ "num-traits",
1063
+ "pkcs1",
1064
+ "pkcs8",
1065
+ "rand_core",
1066
+ "signature",
1067
+ "spki",
1068
+ "subtle",
1069
+ "zeroize",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "rustc-hash"
1074
+ version = "1.1.0"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1077
+
1078
+ [[package]]
1079
+ name = "rustix"
1080
+ version = "1.0.5"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
1083
+ dependencies = [
1084
+ "bitflags",
1085
+ "errno",
1086
+ "libc",
1087
+ "linux-raw-sys",
1088
+ "windows-sys",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "ryu"
1093
+ version = "1.0.20"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1096
+
1097
+ [[package]]
1098
+ name = "same-file"
1099
+ version = "1.0.6"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1102
+ dependencies = [
1103
+ "winapi-util",
1104
+ ]
1105
+
1106
+ [[package]]
1107
+ name = "sec1"
1108
+ version = "0.7.3"
1109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1110
+ checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
1111
+ dependencies = [
1112
+ "base16ct",
1113
+ "der",
1114
+ "generic-array",
1115
+ "pkcs8",
1116
+ "subtle",
1117
+ "zeroize",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "serde"
1122
+ version = "1.0.219"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1125
+ dependencies = [
1126
+ "serde_derive",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "serde_derive"
1131
+ version = "1.0.219"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1134
+ dependencies = [
1135
+ "proc-macro2",
1136
+ "quote",
1137
+ "syn",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "serde_json"
1142
+ version = "1.0.140"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1145
+ dependencies = [
1146
+ "itoa",
1147
+ "memchr",
1148
+ "ryu",
1149
+ "serde",
1150
+ ]
1151
+
1152
+ [[package]]
1153
+ name = "sha1"
1154
+ version = "0.10.6"
1155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1156
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1157
+ dependencies = [
1158
+ "cfg-if",
1159
+ "cpufeatures",
1160
+ "digest",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "sha2"
1165
+ version = "0.10.8"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1168
+ dependencies = [
1169
+ "cfg-if",
1170
+ "cpufeatures",
1171
+ "digest",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "shlex"
1176
+ version = "1.3.0"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1179
+
1180
+ [[package]]
1181
+ name = "signature"
1182
+ version = "2.2.0"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1185
+ dependencies = [
1186
+ "digest",
1187
+ "rand_core",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "smallvec"
1192
+ version = "1.15.0"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
1195
+
1196
+ [[package]]
1197
+ name = "spin"
1198
+ version = "0.9.8"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1201
+
1202
+ [[package]]
1203
+ name = "spki"
1204
+ version = "0.7.3"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
1207
+ dependencies = [
1208
+ "base64ct",
1209
+ "der",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "strsim"
1214
+ version = "0.11.1"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1217
+
1218
+ [[package]]
1219
+ name = "subtle"
1220
+ version = "2.6.1"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1223
+
1224
+ [[package]]
1225
+ name = "syn"
1226
+ version = "2.0.100"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
1229
+ dependencies = [
1230
+ "proc-macro2",
1231
+ "quote",
1232
+ "unicode-ident",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "target-lexicon"
1237
+ version = "0.13.2"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1240
+
1241
+ [[package]]
1242
+ name = "tempfile"
1243
+ version = "3.19.1"
1244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1245
+ checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
1246
+ dependencies = [
1247
+ "fastrand",
1248
+ "getrandom",
1249
+ "once_cell",
1250
+ "rustix",
1251
+ "windows-sys",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "termcolor"
1256
+ version = "1.4.1"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1259
+ dependencies = [
1260
+ "winapi-util",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "termtree"
1265
+ version = "0.5.1"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1268
+
1269
+ [[package]]
1270
+ name = "thiserror"
1271
+ version = "1.0.69"
1272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1273
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1274
+ dependencies = [
1275
+ "thiserror-impl",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "thiserror-impl"
1280
+ version = "1.0.69"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1283
+ dependencies = [
1284
+ "proc-macro2",
1285
+ "quote",
1286
+ "syn",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "tlsh2"
1291
+ version = "0.4.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "0d1ca7b6482798eaf06ef6a4a5e1211e370758888698cfff4a53142441ef5143"
1294
+
1295
+ [[package]]
1296
+ name = "typenum"
1297
+ version = "1.18.0"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1300
+
1301
+ [[package]]
1302
+ name = "unicode-ident"
1303
+ version = "1.0.18"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1306
+
1307
+ [[package]]
1308
+ name = "unicode-width"
1309
+ version = "0.2.0"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1312
+
1313
+ [[package]]
1314
+ name = "unindent"
1315
+ version = "0.2.4"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1318
+
1319
+ [[package]]
1320
+ name = "utf8parse"
1321
+ version = "0.2.2"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1324
+
1325
+ [[package]]
1326
+ name = "vcpkg"
1327
+ version = "0.2.15"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1330
+
1331
+ [[package]]
1332
+ name = "version_check"
1333
+ version = "0.9.5"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1336
+
1337
+ [[package]]
1338
+ name = "wait-timeout"
1339
+ version = "0.2.1"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1342
+ dependencies = [
1343
+ "libc",
1344
+ ]
1345
+
1346
+ [[package]]
1347
+ name = "walkdir"
1348
+ version = "2.5.0"
1349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1350
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1351
+ dependencies = [
1352
+ "same-file",
1353
+ "winapi-util",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "wasi"
1358
+ version = "0.14.2+wasi-0.2.4"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1361
+ dependencies = [
1362
+ "wit-bindgen-rt",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "winapi-util"
1367
+ version = "0.1.9"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1370
+ dependencies = [
1371
+ "windows-sys",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "windows-sys"
1376
+ version = "0.59.0"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1379
+ dependencies = [
1380
+ "windows-targets",
1381
+ ]
1382
+
1383
+ [[package]]
1384
+ name = "windows-targets"
1385
+ version = "0.52.6"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1388
+ dependencies = [
1389
+ "windows_aarch64_gnullvm",
1390
+ "windows_aarch64_msvc",
1391
+ "windows_i686_gnu",
1392
+ "windows_i686_gnullvm",
1393
+ "windows_i686_msvc",
1394
+ "windows_x86_64_gnu",
1395
+ "windows_x86_64_gnullvm",
1396
+ "windows_x86_64_msvc",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "windows_aarch64_gnullvm"
1401
+ version = "0.52.6"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1404
+
1405
+ [[package]]
1406
+ name = "windows_aarch64_msvc"
1407
+ version = "0.52.6"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1410
+
1411
+ [[package]]
1412
+ name = "windows_i686_gnu"
1413
+ version = "0.52.6"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1416
+
1417
+ [[package]]
1418
+ name = "windows_i686_gnullvm"
1419
+ version = "0.52.6"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1422
+
1423
+ [[package]]
1424
+ name = "windows_i686_msvc"
1425
+ version = "0.52.6"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1428
+
1429
+ [[package]]
1430
+ name = "windows_x86_64_gnu"
1431
+ version = "0.52.6"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1434
+
1435
+ [[package]]
1436
+ name = "windows_x86_64_gnullvm"
1437
+ version = "0.52.6"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1440
+
1441
+ [[package]]
1442
+ name = "windows_x86_64_msvc"
1443
+ version = "0.52.6"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1446
+
1447
+ [[package]]
1448
+ name = "wit-bindgen-rt"
1449
+ version = "0.39.0"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1452
+ dependencies = [
1453
+ "bitflags",
1454
+ ]
1455
+
1456
+ [[package]]
1457
+ name = "yara"
1458
+ version = "0.30.0"
1459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1460
+ checksum = "2860d5b9e61e482a7bb3481ae4375e9c551dc07afaf15c2172dd81009f01686c"
1461
+ dependencies = [
1462
+ "bitflags",
1463
+ "thiserror",
1464
+ "yara-sys",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "yara-sys"
1469
+ version = "0.29.0"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "bbeb5b2ed726cb3786945423539732a681ce2eb9911ee5e7548fad7ca96b0731"
1472
+ dependencies = [
1473
+ "bindgen",
1474
+ "cc",
1475
+ "fs_extra",
1476
+ "glob",
1477
+ ]
1478
+
1479
+ [[package]]
1480
+ name = "zerocopy"
1481
+ version = "0.8.24"
1482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1483
+ checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
1484
+ dependencies = [
1485
+ "zerocopy-derive",
1486
+ ]
1487
+
1488
+ [[package]]
1489
+ name = "zerocopy-derive"
1490
+ version = "0.8.24"
1491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1492
+ checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
1493
+ dependencies = [
1494
+ "proc-macro2",
1495
+ "quote",
1496
+ "syn",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "zeroize"
1501
+ version = "1.8.1"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"