boreal-python 0.1.0__tar.gz → 1.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 (128) hide show
  1. {boreal_python-0.1.0 → boreal_python-1.1.0}/Cargo.lock +233 -234
  2. {boreal_python-0.1.0 → boreal_python-1.1.0}/PKG-INFO +4 -4
  3. {boreal_python-0.1.0/boreal-py/docs → boreal_python-1.1.0}/README.md +2 -0
  4. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/Cargo.toml +10 -10
  5. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/README.md +7 -11
  6. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/atoms.rs +10 -2
  7. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/bitmaps.rs +6 -4
  8. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/mod.rs +15 -14
  9. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/module.rs +4 -2
  10. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/params.rs +36 -0
  11. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/evaluator/mod.rs +4 -5
  12. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/evaluator/module.rs +2 -2
  13. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/analysis.rs +5 -5
  14. boreal_python-1.1.0/boreal/src/matcher/literals.rs +1274 -0
  15. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/mod.rs +1 -1
  16. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/memory.rs +2 -2
  17. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/dotnet.rs +1 -1
  18. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/mod.rs +1 -1
  19. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe.rs +44 -6
  20. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/regex/visitor.rs +1 -1
  21. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/ac_scan.rs +18 -2
  22. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/mod.rs +23 -8
  23. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/params.rs +1 -1
  24. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/linux.rs +1 -1
  25. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/macos.rs +1 -1
  26. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/windows.rs +1 -1
  27. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/Cargo.toml +2 -2
  28. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/boolean_expression.rs +35 -16
  29. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/mod.rs +0 -2
  30. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/primary_expression.rs +22 -7
  31. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/hex_string.rs +37 -12
  32. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/lib.rs +15 -1
  33. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/regex.rs +39 -11
  34. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/test_helpers.rs +0 -13
  35. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/types.rs +71 -4
  36. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/Cargo.toml +7 -3
  37. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/README.md +2 -0
  38. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/boreal.pyi +2 -0
  39. {boreal_python-0.1.0 → boreal_python-1.1.0/boreal-py/docs}/README.md +2 -0
  40. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/docs/yara_compatibility_mode.md +1 -0
  41. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/mkdocs.yml +9 -1
  42. boreal_python-1.1.0/boreal-py/scripts/test-parallel.sh +9 -0
  43. boreal_python-1.1.0/boreal-py/scripts/test.sh +5 -0
  44. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/lib.rs +51 -14
  45. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/module.rs +1 -1
  46. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/rule.rs +1 -1
  47. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/scanner.rs +49 -36
  48. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/tests/test_api.py +6 -1
  49. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/tests/test_compile.py +96 -14
  50. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/tests/test_scanner.py +200 -78
  51. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/tests/test_types.py +102 -53
  52. boreal_python-1.1.0/boreal-py/tests/utils.py +45 -0
  53. boreal_python-1.1.0/boreal-py/uv.lock +798 -0
  54. {boreal_python-0.1.0 → boreal_python-1.1.0}/pyproject.toml +5 -2
  55. boreal_python-0.1.0/boreal/src/matcher/literals.rs +0 -901
  56. boreal_python-0.1.0/boreal-py/tests/utils.py +0 -16
  57. boreal_python-0.1.0/boreal-py/uv.lock +0 -694
  58. {boreal_python-0.1.0 → boreal_python-1.1.0}/Cargo.toml +0 -0
  59. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/LICENSE-APACHE +0 -0
  60. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/LICENSE-MIT +0 -0
  61. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/bytes_pool.rs +0 -0
  62. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/builder.rs +0 -0
  63. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/error.rs +0 -0
  64. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/expression.rs +0 -0
  65. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/external_symbol.rs +0 -0
  66. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/rule.rs +0 -0
  67. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/tests.rs +0 -0
  68. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/compiler/variable.rs +0 -0
  69. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/evaluator/entrypoint.rs +0 -0
  70. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/evaluator/error.rs +0 -0
  71. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/evaluator/read_integer.rs +0 -0
  72. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/evaluator/variable.rs +0 -0
  73. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/lib.rs +0 -0
  74. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/base64.rs +0 -0
  75. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/only_literals.rs +0 -0
  76. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/raw.rs +0 -0
  77. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/validator/dfa.rs +0 -0
  78. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/validator/simple.rs +0 -0
  79. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/validator.rs +0 -0
  80. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/matcher/widener.rs +0 -0
  81. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/console.rs +0 -0
  82. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/cuckoo.rs +0 -0
  83. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/dex.rs +0 -0
  84. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/elf.rs +0 -0
  85. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/hash.rs +0 -0
  86. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/macho.rs +0 -0
  87. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/magic.rs +0 -0
  88. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/math.rs +0 -0
  89. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/debug.rs +0 -0
  90. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/ord.rs +0 -0
  91. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
  92. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
  93. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures.rs +0 -0
  94. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/utils.rs +0 -0
  95. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/pe/version_info.rs +0 -0
  96. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/string.rs +0 -0
  97. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/module/time.rs +0 -0
  98. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/regex/hir.rs +0 -0
  99. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/regex/mod.rs +0 -0
  100. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/error.rs +0 -0
  101. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/default.rs +0 -0
  102. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys.rs +0 -0
  103. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/scanner/process.rs +0 -0
  104. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/statistics.rs +0 -0
  105. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/test_helpers.rs +0 -0
  106. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/timeout.rs +0 -0
  107. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal/src/wire.rs +0 -0
  108. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/LICENSE-APACHE +0 -0
  109. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/LICENSE-MIT +0 -0
  110. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/README.md +0 -0
  111. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/error.rs +0 -0
  112. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/common.rs +0 -0
  113. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/for_expression.rs +0 -0
  114. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/identifier.rs +0 -0
  115. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/read_integer.rs +0 -0
  116. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/expression/string_expression.rs +0 -0
  117. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/file.rs +0 -0
  118. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/nom_recipes.rs +0 -0
  119. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/number.rs +0 -0
  120. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/rule.rs +0 -0
  121. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-parser/src/string.rs +0 -0
  122. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/docs/api.md +0 -0
  123. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/docs/griffe_customization.py +0 -0
  124. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/rule_match.rs +0 -0
  125. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/rule_string.rs +0 -0
  126. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/string_match_instance.rs +0 -0
  127. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/src/string_matches.rs +0 -0
  128. {boreal_python-0.1.0 → boreal_python-1.1.0}/boreal-py/tests/conftest.py +0 -0
@@ -4,18 +4,18 @@ version = 3
4
4
 
5
5
  [[package]]
6
6
  name = "aho-corasick"
7
- version = "1.1.3"
7
+ version = "1.1.4"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
10
  dependencies = [
11
11
  "memchr",
12
12
  ]
13
13
 
14
14
  [[package]]
15
15
  name = "anstream"
16
- version = "0.6.18"
16
+ version = "0.6.21"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
18
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
19
19
  dependencies = [
20
20
  "anstyle",
21
21
  "anstyle-parse",
@@ -28,48 +28,47 @@ dependencies = [
28
28
 
29
29
  [[package]]
30
30
  name = "anstyle"
31
- version = "1.0.10"
31
+ version = "1.0.13"
32
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
33
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
34
34
 
35
35
  [[package]]
36
36
  name = "anstyle-parse"
37
- version = "0.2.6"
37
+ version = "0.2.7"
38
38
  source = "registry+https://github.com/rust-lang/crates.io-index"
39
- checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
39
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
40
40
  dependencies = [
41
41
  "utf8parse",
42
42
  ]
43
43
 
44
44
  [[package]]
45
45
  name = "anstyle-query"
46
- version = "1.1.2"
46
+ version = "1.1.5"
47
47
  source = "registry+https://github.com/rust-lang/crates.io-index"
48
- checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
48
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
49
49
  dependencies = [
50
50
  "windows-sys",
51
51
  ]
52
52
 
53
53
  [[package]]
54
54
  name = "anstyle-wincon"
55
- version = "3.0.7"
55
+ version = "3.0.11"
56
56
  source = "registry+https://github.com/rust-lang/crates.io-index"
57
- checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
57
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
58
58
  dependencies = [
59
59
  "anstyle",
60
- "once_cell",
60
+ "once_cell_polyfill",
61
61
  "windows-sys",
62
62
  ]
63
63
 
64
64
  [[package]]
65
65
  name = "assert_cmd"
66
- version = "2.0.17"
66
+ version = "2.1.1"
67
67
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
68
+ checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
69
69
  dependencies = [
70
70
  "anstyle",
71
71
  "bstr",
72
- "doc-comment",
73
72
  "libc",
74
73
  "predicates",
75
74
  "predicates-core",
@@ -79,9 +78,9 @@ dependencies = [
79
78
 
80
79
  [[package]]
81
80
  name = "autocfg"
82
- version = "1.4.0"
81
+ version = "1.5.0"
83
82
  source = "registry+https://github.com/rust-lang/crates.io-index"
84
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
83
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
85
84
 
86
85
  [[package]]
87
86
  name = "base16ct"
@@ -123,9 +122,9 @@ dependencies = [
123
122
 
124
123
  [[package]]
125
124
  name = "bitflags"
126
- version = "2.9.0"
125
+ version = "2.10.0"
127
126
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
127
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
129
128
 
130
129
  [[package]]
131
130
  name = "block-buffer"
@@ -138,7 +137,7 @@ dependencies = [
138
137
 
139
138
  [[package]]
140
139
  name = "boreal"
141
- version = "0.9.0"
140
+ version = "1.1.0"
142
141
  dependencies = [
143
142
  "aho-corasick",
144
143
  "base64",
@@ -174,7 +173,7 @@ dependencies = [
174
173
 
175
174
  [[package]]
176
175
  name = "boreal-cli"
177
- version = "0.9.0"
176
+ version = "1.1.0"
178
177
  dependencies = [
179
178
  "assert_cmd",
180
179
  "boreal",
@@ -189,7 +188,7 @@ dependencies = [
189
188
 
190
189
  [[package]]
191
190
  name = "boreal-parser"
192
- version = "0.6.0"
191
+ version = "1.1.0"
193
192
  dependencies = [
194
193
  "codespan-reporting",
195
194
  "nom 8.0.0",
@@ -197,9 +196,10 @@ dependencies = [
197
196
 
198
197
  [[package]]
199
198
  name = "boreal-py"
200
- version = "0.1.0"
199
+ version = "1.1.0"
201
200
  dependencies = [
202
201
  "boreal",
202
+ "parking_lot",
203
203
  "pyo3",
204
204
  ]
205
205
 
@@ -222,27 +222,22 @@ dependencies = [
222
222
 
223
223
  [[package]]
224
224
  name = "bstr"
225
- version = "1.12.0"
225
+ version = "1.12.1"
226
226
  source = "registry+https://github.com/rust-lang/crates.io-index"
227
- checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
227
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
228
228
  dependencies = [
229
229
  "memchr",
230
230
  "regex-automata",
231
231
  "serde",
232
232
  ]
233
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
234
  [[package]]
241
235
  name = "cc"
242
- version = "1.2.19"
236
+ version = "1.2.47"
243
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
238
+ checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07"
245
239
  dependencies = [
240
+ "find-msvc-tools",
246
241
  "shlex",
247
242
  ]
248
243
 
@@ -257,9 +252,9 @@ dependencies = [
257
252
 
258
253
  [[package]]
259
254
  name = "cfg-if"
260
- version = "1.0.0"
255
+ version = "1.0.4"
261
256
  source = "registry+https://github.com/rust-lang/crates.io-index"
262
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
257
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
263
258
 
264
259
  [[package]]
265
260
  name = "cfg_aliases"
@@ -280,18 +275,18 @@ dependencies = [
280
275
 
281
276
  [[package]]
282
277
  name = "clap"
283
- version = "4.5.37"
278
+ version = "4.5.53"
284
279
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
280
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
286
281
  dependencies = [
287
282
  "clap_builder",
288
283
  ]
289
284
 
290
285
  [[package]]
291
286
  name = "clap_builder"
292
- version = "4.5.37"
287
+ version = "4.5.53"
293
288
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
289
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
295
290
  dependencies = [
296
291
  "anstream",
297
292
  "anstyle",
@@ -301,15 +296,15 @@ dependencies = [
301
296
 
302
297
  [[package]]
303
298
  name = "clap_lex"
304
- version = "0.7.4"
299
+ version = "0.7.6"
305
300
  source = "registry+https://github.com/rust-lang/crates.io-index"
306
- checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
301
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
307
302
 
308
303
  [[package]]
309
304
  name = "codespan-reporting"
310
- version = "0.12.0"
305
+ version = "0.13.1"
311
306
  source = "registry+https://github.com/rust-lang/crates.io-index"
312
- checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
307
+ checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
313
308
  dependencies = [
314
309
  "serde",
315
310
  "termcolor",
@@ -318,9 +313,9 @@ dependencies = [
318
313
 
319
314
  [[package]]
320
315
  name = "colorchoice"
321
- version = "1.0.3"
316
+ version = "1.0.4"
322
317
  source = "registry+https://github.com/rust-lang/crates.io-index"
323
- checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
318
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
324
319
 
325
320
  [[package]]
326
321
  name = "const-oid"
@@ -339,9 +334,9 @@ dependencies = [
339
334
 
340
335
  [[package]]
341
336
  name = "crc32fast"
342
- version = "1.4.2"
337
+ version = "1.5.0"
343
338
  source = "registry+https://github.com/rust-lang/crates.io-index"
344
- checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
339
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
345
340
  dependencies = [
346
341
  "cfg-if",
347
342
  ]
@@ -424,12 +419,6 @@ dependencies = [
424
419
  "subtle",
425
420
  ]
426
421
 
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
422
  [[package]]
434
423
  name = "dsa"
435
424
  version = "0.6.3"
@@ -481,9 +470,9 @@ dependencies = [
481
470
 
482
471
  [[package]]
483
472
  name = "errno"
484
- version = "0.3.11"
473
+ version = "0.3.14"
485
474
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
475
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
487
476
  dependencies = [
488
477
  "libc",
489
478
  "windows-sys",
@@ -505,6 +494,12 @@ dependencies = [
505
494
  "subtle",
506
495
  ]
507
496
 
497
+ [[package]]
498
+ name = "find-msvc-tools"
499
+ version = "0.1.5"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
502
+
508
503
  [[package]]
509
504
  name = "fs_extra"
510
505
  version = "1.3.0"
@@ -513,9 +508,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
513
508
 
514
509
  [[package]]
515
510
  name = "generic-array"
516
- version = "0.14.7"
511
+ version = "0.14.9"
517
512
  source = "registry+https://github.com/rust-lang/crates.io-index"
518
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
513
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
519
514
  dependencies = [
520
515
  "typenum",
521
516
  "version_check",
@@ -524,21 +519,21 @@ dependencies = [
524
519
 
525
520
  [[package]]
526
521
  name = "getrandom"
527
- version = "0.3.2"
522
+ version = "0.3.4"
528
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
524
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
530
525
  dependencies = [
531
526
  "cfg-if",
532
527
  "libc",
533
528
  "r-efi",
534
- "wasi",
529
+ "wasip2",
535
530
  ]
536
531
 
537
532
  [[package]]
538
533
  name = "glob"
539
- version = "0.3.2"
534
+ version = "0.3.3"
540
535
  source = "registry+https://github.com/rust-lang/crates.io-index"
541
- checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
536
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
542
537
 
543
538
  [[package]]
544
539
  name = "group"
@@ -574,15 +569,18 @@ dependencies = [
574
569
 
575
570
  [[package]]
576
571
  name = "indoc"
577
- version = "2.0.6"
572
+ version = "2.0.7"
578
573
  source = "registry+https://github.com/rust-lang/crates.io-index"
579
- checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
574
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
575
+ dependencies = [
576
+ "rustversion",
577
+ ]
580
578
 
581
579
  [[package]]
582
580
  name = "is_terminal_polyfill"
583
- version = "1.70.1"
581
+ version = "1.70.2"
584
582
  source = "registry+https://github.com/rust-lang/crates.io-index"
585
- checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
583
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
586
584
 
587
585
  [[package]]
588
586
  name = "itoa"
@@ -607,51 +605,55 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
607
605
 
608
606
  [[package]]
609
607
  name = "libc"
610
- version = "0.2.172"
608
+ version = "0.2.177"
611
609
  source = "registry+https://github.com/rust-lang/crates.io-index"
612
- checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
610
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
613
611
 
614
612
  [[package]]
615
613
  name = "libloading"
616
- version = "0.8.6"
614
+ version = "0.8.9"
617
615
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
616
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
619
617
  dependencies = [
620
618
  "cfg-if",
621
- "windows-targets",
619
+ "windows-link",
622
620
  ]
623
621
 
624
622
  [[package]]
625
623
  name = "libm"
626
- version = "0.2.11"
624
+ version = "0.2.15"
627
625
  source = "registry+https://github.com/rust-lang/crates.io-index"
628
- checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
626
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
629
627
 
630
628
  [[package]]
631
629
  name = "linux-raw-sys"
632
- version = "0.9.4"
630
+ version = "0.11.0"
633
631
  source = "registry+https://github.com/rust-lang/crates.io-index"
634
- checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
632
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
635
633
 
636
634
  [[package]]
637
- name = "mach2"
638
- version = "0.4.2"
635
+ name = "lock_api"
636
+ version = "0.4.14"
639
637
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
- checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
638
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
641
639
  dependencies = [
642
- "libc",
640
+ "scopeguard",
643
641
  ]
644
642
 
643
+ [[package]]
644
+ name = "mach2"
645
+ version = "0.6.0"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "dae608c151f68243f2b000364e1f7b186d9c29845f7d2d85bd31b9ad77ad552b"
648
+
645
649
  [[package]]
646
650
  name = "magic"
647
- version = "0.16.2"
651
+ version = "0.16.7"
648
652
  source = "registry+https://github.com/rust-lang/crates.io-index"
649
- checksum = "a200ae03df8c3dce7a963f6eeaac8feb41bf9001cb7e5ab22e3205aec2f0373d"
653
+ checksum = "50ecbc2953846d9a3f8f6ed0700e66e49e5ad696eefb4e17fbaebbf457e1e752"
650
654
  dependencies = [
651
655
  "bitflags",
652
- "libc",
653
656
  "magic-sys",
654
- "thiserror",
655
657
  ]
656
658
 
657
659
  [[package]]
@@ -676,15 +678,15 @@ dependencies = [
676
678
 
677
679
  [[package]]
678
680
  name = "memchr"
679
- version = "2.7.4"
681
+ version = "2.7.6"
680
682
  source = "registry+https://github.com/rust-lang/crates.io-index"
681
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
683
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
682
684
 
683
685
  [[package]]
684
686
  name = "memmap2"
685
- version = "0.9.5"
687
+ version = "0.9.9"
686
688
  source = "registry+https://github.com/rust-lang/crates.io-index"
687
- checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
689
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
688
690
  dependencies = [
689
691
  "libc",
690
692
  ]
@@ -725,11 +727,10 @@ dependencies = [
725
727
 
726
728
  [[package]]
727
729
  name = "num-bigint-dig"
728
- version = "0.8.4"
730
+ version = "0.8.6"
729
731
  source = "registry+https://github.com/rust-lang/crates.io-index"
730
- checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
732
+ checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
731
733
  dependencies = [
732
- "byteorder",
733
734
  "lazy_static",
734
735
  "libm",
735
736
  "num-integer",
@@ -772,9 +773,9 @@ dependencies = [
772
773
 
773
774
  [[package]]
774
775
  name = "object"
775
- version = "0.36.7"
776
+ version = "0.37.3"
776
777
  source = "registry+https://github.com/rust-lang/crates.io-index"
777
- checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
778
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
778
779
  dependencies = [
779
780
  "memchr",
780
781
  ]
@@ -785,6 +786,12 @@ version = "1.21.3"
785
786
  source = "registry+https://github.com/rust-lang/crates.io-index"
786
787
  checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
787
788
 
789
+ [[package]]
790
+ name = "once_cell_polyfill"
791
+ version = "1.70.2"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
794
+
788
795
  [[package]]
789
796
  name = "p256"
790
797
  version = "0.13.2"
@@ -809,6 +816,29 @@ dependencies = [
809
816
  "sha2",
810
817
  ]
811
818
 
819
+ [[package]]
820
+ name = "parking_lot"
821
+ version = "0.12.5"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
824
+ dependencies = [
825
+ "lock_api",
826
+ "parking_lot_core",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "parking_lot_core"
831
+ version = "0.9.12"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
834
+ dependencies = [
835
+ "cfg-if",
836
+ "libc",
837
+ "redox_syscall",
838
+ "smallvec",
839
+ "windows-link",
840
+ ]
841
+
812
842
  [[package]]
813
843
  name = "peeking_take_while"
814
844
  version = "0.1.2"
@@ -847,9 +877,9 @@ dependencies = [
847
877
 
848
878
  [[package]]
849
879
  name = "portable-atomic"
850
- version = "1.11.0"
880
+ version = "1.11.1"
851
881
  source = "registry+https://github.com/rust-lang/crates.io-index"
852
- checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
882
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
853
883
 
854
884
  [[package]]
855
885
  name = "ppv-lite86"
@@ -899,20 +929,19 @@ dependencies = [
899
929
 
900
930
  [[package]]
901
931
  name = "proc-macro2"
902
- version = "1.0.95"
932
+ version = "1.0.103"
903
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
904
- checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
934
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
905
935
  dependencies = [
906
936
  "unicode-ident",
907
937
  ]
908
938
 
909
939
  [[package]]
910
940
  name = "pyo3"
911
- version = "0.24.1"
941
+ version = "0.27.1"
912
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
943
+ checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
914
944
  dependencies = [
915
- "cfg-if",
916
945
  "indoc",
917
946
  "libc",
918
947
  "memoffset",
@@ -926,19 +955,18 @@ dependencies = [
926
955
 
927
956
  [[package]]
928
957
  name = "pyo3-build-config"
929
- version = "0.24.1"
958
+ version = "0.27.1"
930
959
  source = "registry+https://github.com/rust-lang/crates.io-index"
931
- checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
960
+ checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
932
961
  dependencies = [
933
- "once_cell",
934
962
  "target-lexicon",
935
963
  ]
936
964
 
937
965
  [[package]]
938
966
  name = "pyo3-ffi"
939
- version = "0.24.1"
967
+ version = "0.27.1"
940
968
  source = "registry+https://github.com/rust-lang/crates.io-index"
941
- checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
969
+ checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
942
970
  dependencies = [
943
971
  "libc",
944
972
  "pyo3-build-config",
@@ -946,9 +974,9 @@ dependencies = [
946
974
 
947
975
  [[package]]
948
976
  name = "pyo3-macros"
949
- version = "0.24.1"
977
+ version = "0.27.1"
950
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
951
- checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
979
+ checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
952
980
  dependencies = [
953
981
  "proc-macro2",
954
982
  "pyo3-macros-backend",
@@ -958,9 +986,9 @@ dependencies = [
958
986
 
959
987
  [[package]]
960
988
  name = "pyo3-macros-backend"
961
- version = "0.24.1"
989
+ version = "0.27.1"
962
990
  source = "registry+https://github.com/rust-lang/crates.io-index"
963
- checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
991
+ checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
964
992
  dependencies = [
965
993
  "heck",
966
994
  "proc-macro2",
@@ -971,18 +999,18 @@ dependencies = [
971
999
 
972
1000
  [[package]]
973
1001
  name = "quote"
974
- version = "1.0.40"
1002
+ version = "1.0.42"
975
1003
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1004
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
977
1005
  dependencies = [
978
1006
  "proc-macro2",
979
1007
  ]
980
1008
 
981
1009
  [[package]]
982
1010
  name = "r-efi"
983
- version = "5.2.0"
1011
+ version = "5.3.0"
984
1012
  source = "registry+https://github.com/rust-lang/crates.io-index"
985
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1013
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
986
1014
 
987
1015
  [[package]]
988
1016
  name = "rand"
@@ -1010,11 +1038,20 @@ version = "0.6.4"
1010
1038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1011
1039
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1012
1040
 
1041
+ [[package]]
1042
+ name = "redox_syscall"
1043
+ version = "0.5.18"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1046
+ dependencies = [
1047
+ "bitflags",
1048
+ ]
1049
+
1013
1050
  [[package]]
1014
1051
  name = "regex"
1015
- version = "1.11.1"
1052
+ version = "1.12.2"
1016
1053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1017
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1054
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1018
1055
  dependencies = [
1019
1056
  "aho-corasick",
1020
1057
  "memchr",
@@ -1024,9 +1061,9 @@ dependencies = [
1024
1061
 
1025
1062
  [[package]]
1026
1063
  name = "regex-automata"
1027
- version = "0.4.9"
1064
+ version = "0.4.13"
1028
1065
  source = "registry+https://github.com/rust-lang/crates.io-index"
1029
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1066
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1030
1067
  dependencies = [
1031
1068
  "aho-corasick",
1032
1069
  "memchr",
@@ -1035,9 +1072,9 @@ dependencies = [
1035
1072
 
1036
1073
  [[package]]
1037
1074
  name = "regex-syntax"
1038
- version = "0.8.5"
1075
+ version = "0.8.8"
1039
1076
  source = "registry+https://github.com/rust-lang/crates.io-index"
1040
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1077
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1041
1078
 
1042
1079
  [[package]]
1043
1080
  name = "rfc6979"
@@ -1051,9 +1088,9 @@ dependencies = [
1051
1088
 
1052
1089
  [[package]]
1053
1090
  name = "rsa"
1054
- version = "0.9.8"
1091
+ version = "0.9.9"
1055
1092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1056
- checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
1093
+ checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
1057
1094
  dependencies = [
1058
1095
  "const-oid",
1059
1096
  "digest",
@@ -1077,9 +1114,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1077
1114
 
1078
1115
  [[package]]
1079
1116
  name = "rustix"
1080
- version = "1.0.5"
1117
+ version = "1.1.2"
1081
1118
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
1119
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1083
1120
  dependencies = [
1084
1121
  "bitflags",
1085
1122
  "errno",
@@ -1088,6 +1125,12 @@ dependencies = [
1088
1125
  "windows-sys",
1089
1126
  ]
1090
1127
 
1128
+ [[package]]
1129
+ name = "rustversion"
1130
+ version = "1.0.22"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1133
+
1091
1134
  [[package]]
1092
1135
  name = "ryu"
1093
1136
  version = "1.0.20"
@@ -1103,6 +1146,12 @@ dependencies = [
1103
1146
  "winapi-util",
1104
1147
  ]
1105
1148
 
1149
+ [[package]]
1150
+ name = "scopeguard"
1151
+ version = "1.2.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1154
+
1106
1155
  [[package]]
1107
1156
  name = "sec1"
1108
1157
  version = "0.7.3"
@@ -1119,18 +1168,28 @@ dependencies = [
1119
1168
 
1120
1169
  [[package]]
1121
1170
  name = "serde"
1122
- version = "1.0.219"
1171
+ version = "1.0.228"
1123
1172
  source = "registry+https://github.com/rust-lang/crates.io-index"
1124
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1173
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1174
+ dependencies = [
1175
+ "serde_core",
1176
+ "serde_derive",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "serde_core"
1181
+ version = "1.0.228"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1125
1184
  dependencies = [
1126
1185
  "serde_derive",
1127
1186
  ]
1128
1187
 
1129
1188
  [[package]]
1130
1189
  name = "serde_derive"
1131
- version = "1.0.219"
1190
+ version = "1.0.228"
1132
1191
  source = "registry+https://github.com/rust-lang/crates.io-index"
1133
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1192
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1134
1193
  dependencies = [
1135
1194
  "proc-macro2",
1136
1195
  "quote",
@@ -1139,14 +1198,15 @@ dependencies = [
1139
1198
 
1140
1199
  [[package]]
1141
1200
  name = "serde_json"
1142
- version = "1.0.140"
1201
+ version = "1.0.145"
1143
1202
  source = "registry+https://github.com/rust-lang/crates.io-index"
1144
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1203
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1145
1204
  dependencies = [
1146
1205
  "itoa",
1147
1206
  "memchr",
1148
1207
  "ryu",
1149
1208
  "serde",
1209
+ "serde_core",
1150
1210
  ]
1151
1211
 
1152
1212
  [[package]]
@@ -1162,9 +1222,9 @@ dependencies = [
1162
1222
 
1163
1223
  [[package]]
1164
1224
  name = "sha2"
1165
- version = "0.10.8"
1225
+ version = "0.10.9"
1166
1226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1167
- checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1227
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1168
1228
  dependencies = [
1169
1229
  "cfg-if",
1170
1230
  "cpufeatures",
@@ -1189,9 +1249,9 @@ dependencies = [
1189
1249
 
1190
1250
  [[package]]
1191
1251
  name = "smallvec"
1192
- version = "1.15.0"
1252
+ version = "1.15.1"
1193
1253
  source = "registry+https://github.com/rust-lang/crates.io-index"
1194
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
1254
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1195
1255
 
1196
1256
  [[package]]
1197
1257
  name = "spin"
@@ -1223,9 +1283,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1223
1283
 
1224
1284
  [[package]]
1225
1285
  name = "syn"
1226
- version = "2.0.100"
1286
+ version = "2.0.110"
1227
1287
  source = "registry+https://github.com/rust-lang/crates.io-index"
1228
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
1288
+ checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1229
1289
  dependencies = [
1230
1290
  "proc-macro2",
1231
1291
  "quote",
@@ -1234,15 +1294,15 @@ dependencies = [
1234
1294
 
1235
1295
  [[package]]
1236
1296
  name = "target-lexicon"
1237
- version = "0.13.2"
1297
+ version = "0.13.3"
1238
1298
  source = "registry+https://github.com/rust-lang/crates.io-index"
1239
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1299
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1240
1300
 
1241
1301
  [[package]]
1242
1302
  name = "tempfile"
1243
- version = "3.19.1"
1303
+ version = "3.23.0"
1244
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
1305
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1246
1306
  dependencies = [
1247
1307
  "fastrand",
1248
1308
  "getrandom",
@@ -1288,27 +1348,27 @@ dependencies = [
1288
1348
 
1289
1349
  [[package]]
1290
1350
  name = "tlsh2"
1291
- version = "0.4.0"
1351
+ version = "1.1.0"
1292
1352
  source = "registry+https://github.com/rust-lang/crates.io-index"
1293
- checksum = "0d1ca7b6482798eaf06ef6a4a5e1211e370758888698cfff4a53142441ef5143"
1353
+ checksum = "7184dfffa0d05e10284df327c6cb52f0d62c5aa6c9a8b9236fa151d4361882f1"
1294
1354
 
1295
1355
  [[package]]
1296
1356
  name = "typenum"
1297
- version = "1.18.0"
1357
+ version = "1.19.0"
1298
1358
  source = "registry+https://github.com/rust-lang/crates.io-index"
1299
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1359
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1300
1360
 
1301
1361
  [[package]]
1302
1362
  name = "unicode-ident"
1303
- version = "1.0.18"
1363
+ version = "1.0.22"
1304
1364
  source = "registry+https://github.com/rust-lang/crates.io-index"
1305
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1365
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1306
1366
 
1307
1367
  [[package]]
1308
1368
  name = "unicode-width"
1309
- version = "0.2.0"
1369
+ version = "0.2.2"
1310
1370
  source = "registry+https://github.com/rust-lang/crates.io-index"
1311
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1371
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1312
1372
 
1313
1373
  [[package]]
1314
1374
  name = "unindent"
@@ -1354,110 +1414,49 @@ dependencies = [
1354
1414
  ]
1355
1415
 
1356
1416
  [[package]]
1357
- name = "wasi"
1358
- version = "0.14.2+wasi-0.2.4"
1417
+ name = "wasip2"
1418
+ version = "1.0.1+wasi-0.2.4"
1359
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1360
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1420
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1361
1421
  dependencies = [
1362
- "wit-bindgen-rt",
1422
+ "wit-bindgen",
1363
1423
  ]
1364
1424
 
1365
1425
  [[package]]
1366
1426
  name = "winapi-util"
1367
- version = "0.1.9"
1427
+ version = "0.1.11"
1368
1428
  source = "registry+https://github.com/rust-lang/crates.io-index"
1369
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1429
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1370
1430
  dependencies = [
1371
1431
  "windows-sys",
1372
1432
  ]
1373
1433
 
1374
1434
  [[package]]
1375
- name = "windows-sys"
1376
- version = "0.59.0"
1435
+ name = "windows-link"
1436
+ version = "0.2.1"
1377
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1378
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1379
- dependencies = [
1380
- "windows-targets",
1381
- ]
1438
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1382
1439
 
1383
1440
  [[package]]
1384
- name = "windows-targets"
1385
- version = "0.52.6"
1441
+ name = "windows-sys"
1442
+ version = "0.61.2"
1386
1443
  source = "registry+https://github.com/rust-lang/crates.io-index"
1387
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1444
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1388
1445
  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",
1446
+ "windows-link",
1397
1447
  ]
1398
1448
 
1399
1449
  [[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"
1450
+ name = "wit-bindgen"
1451
+ version = "0.46.0"
1408
1452
  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
- ]
1453
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1455
1454
 
1456
1455
  [[package]]
1457
1456
  name = "yara"
1458
- version = "0.30.0"
1457
+ version = "0.31.0"
1459
1458
  source = "registry+https://github.com/rust-lang/crates.io-index"
1460
- checksum = "2860d5b9e61e482a7bb3481ae4375e9c551dc07afaf15c2172dd81009f01686c"
1459
+ checksum = "3463ea22ddcfa07b44876dc48d1299469984d4083e8cace4e1eed8e1f41871b3"
1461
1460
  dependencies = [
1462
1461
  "bitflags",
1463
1462
  "thiserror",
@@ -1466,9 +1465,9 @@ dependencies = [
1466
1465
 
1467
1466
  [[package]]
1468
1467
  name = "yara-sys"
1469
- version = "0.29.0"
1468
+ version = "0.31.0"
1470
1469
  source = "registry+https://github.com/rust-lang/crates.io-index"
1471
- checksum = "bbeb5b2ed726cb3786945423539732a681ce2eb9911ee5e7548fad7ca96b0731"
1470
+ checksum = "1b2168a47828c221f8ce1918a902fb8ee5f5a0aad57f417ab6d3bf7b9047ffa2"
1472
1471
  dependencies = [
1473
1472
  "bindgen",
1474
1473
  "cc",
@@ -1478,18 +1477,18 @@ dependencies = [
1478
1477
 
1479
1478
  [[package]]
1480
1479
  name = "zerocopy"
1481
- version = "0.8.24"
1480
+ version = "0.8.28"
1482
1481
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
1482
+ checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90"
1484
1483
  dependencies = [
1485
1484
  "zerocopy-derive",
1486
1485
  ]
1487
1486
 
1488
1487
  [[package]]
1489
1488
  name = "zerocopy-derive"
1490
- version = "0.8.24"
1489
+ version = "0.8.28"
1491
1490
  source = "registry+https://github.com/rust-lang/crates.io-index"
1492
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
1491
+ checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26"
1493
1492
  dependencies = [
1494
1493
  "proc-macro2",
1495
1494
  "quote",
@@ -1498,6 +1497,6 @@ dependencies = [
1498
1497
 
1499
1498
  [[package]]
1500
1499
  name = "zeroize"
1501
- version = "1.8.1"
1500
+ version = "1.8.2"
1502
1501
  source = "registry+https://github.com/rust-lang/crates.io-index"
1503
- checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
1502
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"