boreal-python 1.0.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-1.0.0 → boreal_python-1.1.0}/Cargo.lock +229 -229
  2. {boreal_python-1.0.0 → boreal_python-1.1.0}/PKG-INFO +3 -4
  3. {boreal_python-1.0.0/boreal-py/docs → boreal_python-1.1.0}/README.md +2 -0
  4. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/Cargo.toml +10 -10
  5. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/README.md +7 -11
  6. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/atoms.rs +10 -2
  7. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/bitmaps.rs +6 -4
  8. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/mod.rs +15 -14
  9. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/module.rs +4 -2
  10. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/params.rs +36 -0
  11. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/mod.rs +4 -5
  12. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/module.rs +2 -2
  13. {boreal_python-1.0.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-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/mod.rs +1 -1
  16. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/memory.rs +2 -2
  17. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/dotnet.rs +1 -1
  18. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/mod.rs +1 -1
  19. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe.rs +44 -6
  20. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/regex/visitor.rs +1 -1
  21. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/ac_scan.rs +18 -2
  22. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/mod.rs +23 -8
  23. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/params.rs +1 -1
  24. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/linux.rs +1 -1
  25. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/macos.rs +1 -1
  26. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/windows.rs +1 -1
  27. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/Cargo.toml +2 -2
  28. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/boolean_expression.rs +35 -16
  29. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/mod.rs +0 -2
  30. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/primary_expression.rs +22 -7
  31. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/hex_string.rs +37 -12
  32. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/lib.rs +15 -1
  33. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/regex.rs +39 -11
  34. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/test_helpers.rs +0 -13
  35. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/types.rs +71 -4
  36. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/Cargo.toml +4 -3
  37. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/README.md +2 -0
  38. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/boreal.pyi +2 -0
  39. {boreal_python-1.0.0 → boreal_python-1.1.0/boreal-py/docs}/README.md +2 -0
  40. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/docs/yara_compatibility_mode.md +1 -0
  41. {boreal_python-1.0.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-1.0.0 → boreal_python-1.1.0}/boreal-py/src/lib.rs +51 -14
  45. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/module.rs +1 -1
  46. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/rule.rs +1 -1
  47. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/scanner.rs +49 -36
  48. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_api.py +6 -1
  49. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_compile.py +96 -14
  50. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_scanner.py +200 -78
  51. {boreal_python-1.0.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-1.0.0 → boreal_python-1.1.0}/pyproject.toml +5 -2
  55. boreal_python-1.0.0/boreal/src/matcher/literals.rs +0 -901
  56. boreal_python-1.0.0/boreal-py/tests/utils.py +0 -16
  57. boreal_python-1.0.0/boreal-py/uv.lock +0 -694
  58. {boreal_python-1.0.0 → boreal_python-1.1.0}/Cargo.toml +0 -0
  59. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/LICENSE-APACHE +0 -0
  60. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/LICENSE-MIT +0 -0
  61. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/bytes_pool.rs +0 -0
  62. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/builder.rs +0 -0
  63. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/error.rs +0 -0
  64. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/expression.rs +0 -0
  65. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/external_symbol.rs +0 -0
  66. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/rule.rs +0 -0
  67. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/tests.rs +0 -0
  68. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/variable.rs +0 -0
  69. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/entrypoint.rs +0 -0
  70. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/error.rs +0 -0
  71. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/read_integer.rs +0 -0
  72. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/variable.rs +0 -0
  73. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/lib.rs +0 -0
  74. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/base64.rs +0 -0
  75. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/only_literals.rs +0 -0
  76. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/raw.rs +0 -0
  77. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/validator/dfa.rs +0 -0
  78. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/validator/simple.rs +0 -0
  79. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/validator.rs +0 -0
  80. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/widener.rs +0 -0
  81. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/console.rs +0 -0
  82. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/cuckoo.rs +0 -0
  83. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/dex.rs +0 -0
  84. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/elf.rs +0 -0
  85. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/hash.rs +0 -0
  86. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/macho.rs +0 -0
  87. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/magic.rs +0 -0
  88. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/math.rs +0 -0
  89. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/debug.rs +0 -0
  90. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/ord.rs +0 -0
  91. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
  92. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
  93. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures.rs +0 -0
  94. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/utils.rs +0 -0
  95. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/version_info.rs +0 -0
  96. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/string.rs +0 -0
  97. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/time.rs +0 -0
  98. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/regex/hir.rs +0 -0
  99. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/regex/mod.rs +0 -0
  100. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/error.rs +0 -0
  101. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/default.rs +0 -0
  102. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys.rs +0 -0
  103. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process.rs +0 -0
  104. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/statistics.rs +0 -0
  105. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/test_helpers.rs +0 -0
  106. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/timeout.rs +0 -0
  107. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/wire.rs +0 -0
  108. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/LICENSE-APACHE +0 -0
  109. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/LICENSE-MIT +0 -0
  110. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/README.md +0 -0
  111. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/error.rs +0 -0
  112. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/common.rs +0 -0
  113. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/for_expression.rs +0 -0
  114. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/identifier.rs +0 -0
  115. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/read_integer.rs +0 -0
  116. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/string_expression.rs +0 -0
  117. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/file.rs +0 -0
  118. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/nom_recipes.rs +0 -0
  119. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/number.rs +0 -0
  120. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/rule.rs +0 -0
  121. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/string.rs +0 -0
  122. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/docs/api.md +0 -0
  123. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/docs/griffe_customization.py +0 -0
  124. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/rule_match.rs +0 -0
  125. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/rule_string.rs +0 -0
  126. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/string_match_instance.rs +0 -0
  127. {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/string_matches.rs +0 -0
  128. {boreal_python-1.0.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.1"
125
+ version = "2.10.0"
127
126
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
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 = "1.0.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 = "1.0.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 = "1.0.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 = "1.0.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.23"
236
+ version = "1.2.47"
243
237
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
- checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
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.38"
278
+ version = "4.5.53"
284
279
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
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.38"
287
+ version = "4.5.53"
293
288
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
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.12"
473
+ version = "0.3.14"
485
474
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
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.3"
522
+ version = "0.3.4"
528
523
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
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,18 +605,18 @@ 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.7"
614
+ version = "0.8.9"
617
615
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
616
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
619
617
  dependencies = [
620
618
  "cfg-if",
621
- "windows-targets",
619
+ "windows-link",
622
620
  ]
623
621
 
624
622
  [[package]]
@@ -629,29 +627,33 @@ 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,18 +929,18 @@ 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.25.0"
941
+ version = "0.27.1"
912
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
943
+ checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
914
944
  dependencies = [
915
945
  "indoc",
916
946
  "libc",
@@ -925,19 +955,18 @@ dependencies = [
925
955
 
926
956
  [[package]]
927
957
  name = "pyo3-build-config"
928
- version = "0.25.0"
958
+ version = "0.27.1"
929
959
  source = "registry+https://github.com/rust-lang/crates.io-index"
930
- checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
960
+ checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
931
961
  dependencies = [
932
- "once_cell",
933
962
  "target-lexicon",
934
963
  ]
935
964
 
936
965
  [[package]]
937
966
  name = "pyo3-ffi"
938
- version = "0.25.0"
967
+ version = "0.27.1"
939
968
  source = "registry+https://github.com/rust-lang/crates.io-index"
940
- checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
969
+ checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
941
970
  dependencies = [
942
971
  "libc",
943
972
  "pyo3-build-config",
@@ -945,9 +974,9 @@ dependencies = [
945
974
 
946
975
  [[package]]
947
976
  name = "pyo3-macros"
948
- version = "0.25.0"
977
+ version = "0.27.1"
949
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
950
- checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
979
+ checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
951
980
  dependencies = [
952
981
  "proc-macro2",
953
982
  "pyo3-macros-backend",
@@ -957,9 +986,9 @@ dependencies = [
957
986
 
958
987
  [[package]]
959
988
  name = "pyo3-macros-backend"
960
- version = "0.25.0"
989
+ version = "0.27.1"
961
990
  source = "registry+https://github.com/rust-lang/crates.io-index"
962
- checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
991
+ checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
963
992
  dependencies = [
964
993
  "heck",
965
994
  "proc-macro2",
@@ -970,18 +999,18 @@ dependencies = [
970
999
 
971
1000
  [[package]]
972
1001
  name = "quote"
973
- version = "1.0.40"
1002
+ version = "1.0.42"
974
1003
  source = "registry+https://github.com/rust-lang/crates.io-index"
975
- checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1004
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
976
1005
  dependencies = [
977
1006
  "proc-macro2",
978
1007
  ]
979
1008
 
980
1009
  [[package]]
981
1010
  name = "r-efi"
982
- version = "5.2.0"
1011
+ version = "5.3.0"
983
1012
  source = "registry+https://github.com/rust-lang/crates.io-index"
984
- checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1013
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
985
1014
 
986
1015
  [[package]]
987
1016
  name = "rand"
@@ -1009,11 +1038,20 @@ version = "0.6.4"
1009
1038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1010
1039
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1011
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
+
1012
1050
  [[package]]
1013
1051
  name = "regex"
1014
- version = "1.11.1"
1052
+ version = "1.12.2"
1015
1053
  source = "registry+https://github.com/rust-lang/crates.io-index"
1016
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1054
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1017
1055
  dependencies = [
1018
1056
  "aho-corasick",
1019
1057
  "memchr",
@@ -1023,9 +1061,9 @@ dependencies = [
1023
1061
 
1024
1062
  [[package]]
1025
1063
  name = "regex-automata"
1026
- version = "0.4.9"
1064
+ version = "0.4.13"
1027
1065
  source = "registry+https://github.com/rust-lang/crates.io-index"
1028
- checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1066
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1029
1067
  dependencies = [
1030
1068
  "aho-corasick",
1031
1069
  "memchr",
@@ -1034,9 +1072,9 @@ dependencies = [
1034
1072
 
1035
1073
  [[package]]
1036
1074
  name = "regex-syntax"
1037
- version = "0.8.5"
1075
+ version = "0.8.8"
1038
1076
  source = "registry+https://github.com/rust-lang/crates.io-index"
1039
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1077
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1040
1078
 
1041
1079
  [[package]]
1042
1080
  name = "rfc6979"
@@ -1050,9 +1088,9 @@ dependencies = [
1050
1088
 
1051
1089
  [[package]]
1052
1090
  name = "rsa"
1053
- version = "0.9.8"
1091
+ version = "0.9.9"
1054
1092
  source = "registry+https://github.com/rust-lang/crates.io-index"
1055
- checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
1093
+ checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
1056
1094
  dependencies = [
1057
1095
  "const-oid",
1058
1096
  "digest",
@@ -1076,9 +1114,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1076
1114
 
1077
1115
  [[package]]
1078
1116
  name = "rustix"
1079
- version = "1.0.7"
1117
+ version = "1.1.2"
1080
1118
  source = "registry+https://github.com/rust-lang/crates.io-index"
1081
- checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1119
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1082
1120
  dependencies = [
1083
1121
  "bitflags",
1084
1122
  "errno",
@@ -1087,6 +1125,12 @@ dependencies = [
1087
1125
  "windows-sys",
1088
1126
  ]
1089
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
+
1090
1134
  [[package]]
1091
1135
  name = "ryu"
1092
1136
  version = "1.0.20"
@@ -1102,6 +1146,12 @@ dependencies = [
1102
1146
  "winapi-util",
1103
1147
  ]
1104
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
+
1105
1155
  [[package]]
1106
1156
  name = "sec1"
1107
1157
  version = "0.7.3"
@@ -1118,18 +1168,28 @@ dependencies = [
1118
1168
 
1119
1169
  [[package]]
1120
1170
  name = "serde"
1121
- version = "1.0.219"
1171
+ version = "1.0.228"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1174
+ dependencies = [
1175
+ "serde_core",
1176
+ "serde_derive",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "serde_core"
1181
+ version = "1.0.228"
1122
1182
  source = "registry+https://github.com/rust-lang/crates.io-index"
1123
- checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1183
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1124
1184
  dependencies = [
1125
1185
  "serde_derive",
1126
1186
  ]
1127
1187
 
1128
1188
  [[package]]
1129
1189
  name = "serde_derive"
1130
- version = "1.0.219"
1190
+ version = "1.0.228"
1131
1191
  source = "registry+https://github.com/rust-lang/crates.io-index"
1132
- checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1192
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1133
1193
  dependencies = [
1134
1194
  "proc-macro2",
1135
1195
  "quote",
@@ -1138,14 +1198,15 @@ dependencies = [
1138
1198
 
1139
1199
  [[package]]
1140
1200
  name = "serde_json"
1141
- version = "1.0.140"
1201
+ version = "1.0.145"
1142
1202
  source = "registry+https://github.com/rust-lang/crates.io-index"
1143
- checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1203
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1144
1204
  dependencies = [
1145
1205
  "itoa",
1146
1206
  "memchr",
1147
1207
  "ryu",
1148
1208
  "serde",
1209
+ "serde_core",
1149
1210
  ]
1150
1211
 
1151
1212
  [[package]]
@@ -1188,9 +1249,9 @@ dependencies = [
1188
1249
 
1189
1250
  [[package]]
1190
1251
  name = "smallvec"
1191
- version = "1.15.0"
1252
+ version = "1.15.1"
1192
1253
  source = "registry+https://github.com/rust-lang/crates.io-index"
1193
- checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
1254
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1194
1255
 
1195
1256
  [[package]]
1196
1257
  name = "spin"
@@ -1222,9 +1283,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1222
1283
 
1223
1284
  [[package]]
1224
1285
  name = "syn"
1225
- version = "2.0.101"
1286
+ version = "2.0.110"
1226
1287
  source = "registry+https://github.com/rust-lang/crates.io-index"
1227
- checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1288
+ checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1228
1289
  dependencies = [
1229
1290
  "proc-macro2",
1230
1291
  "quote",
@@ -1233,15 +1294,15 @@ dependencies = [
1233
1294
 
1234
1295
  [[package]]
1235
1296
  name = "target-lexicon"
1236
- version = "0.13.2"
1297
+ version = "0.13.3"
1237
1298
  source = "registry+https://github.com/rust-lang/crates.io-index"
1238
- checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1299
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1239
1300
 
1240
1301
  [[package]]
1241
1302
  name = "tempfile"
1242
- version = "3.20.0"
1303
+ version = "3.23.0"
1243
1304
  source = "registry+https://github.com/rust-lang/crates.io-index"
1244
- checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1305
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1245
1306
  dependencies = [
1246
1307
  "fastrand",
1247
1308
  "getrandom",
@@ -1287,27 +1348,27 @@ dependencies = [
1287
1348
 
1288
1349
  [[package]]
1289
1350
  name = "tlsh2"
1290
- version = "0.4.0"
1351
+ version = "1.1.0"
1291
1352
  source = "registry+https://github.com/rust-lang/crates.io-index"
1292
- checksum = "0d1ca7b6482798eaf06ef6a4a5e1211e370758888698cfff4a53142441ef5143"
1353
+ checksum = "7184dfffa0d05e10284df327c6cb52f0d62c5aa6c9a8b9236fa151d4361882f1"
1293
1354
 
1294
1355
  [[package]]
1295
1356
  name = "typenum"
1296
- version = "1.18.0"
1357
+ version = "1.19.0"
1297
1358
  source = "registry+https://github.com/rust-lang/crates.io-index"
1298
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1359
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1299
1360
 
1300
1361
  [[package]]
1301
1362
  name = "unicode-ident"
1302
- version = "1.0.18"
1363
+ version = "1.0.22"
1303
1364
  source = "registry+https://github.com/rust-lang/crates.io-index"
1304
- checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1365
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1305
1366
 
1306
1367
  [[package]]
1307
1368
  name = "unicode-width"
1308
- version = "0.2.0"
1369
+ version = "0.2.2"
1309
1370
  source = "registry+https://github.com/rust-lang/crates.io-index"
1310
- checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1371
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1311
1372
 
1312
1373
  [[package]]
1313
1374
  name = "unindent"
@@ -1353,110 +1414,49 @@ dependencies = [
1353
1414
  ]
1354
1415
 
1355
1416
  [[package]]
1356
- name = "wasi"
1357
- version = "0.14.2+wasi-0.2.4"
1417
+ name = "wasip2"
1418
+ version = "1.0.1+wasi-0.2.4"
1358
1419
  source = "registry+https://github.com/rust-lang/crates.io-index"
1359
- checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1420
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1360
1421
  dependencies = [
1361
- "wit-bindgen-rt",
1422
+ "wit-bindgen",
1362
1423
  ]
1363
1424
 
1364
1425
  [[package]]
1365
1426
  name = "winapi-util"
1366
- version = "0.1.9"
1427
+ version = "0.1.11"
1367
1428
  source = "registry+https://github.com/rust-lang/crates.io-index"
1368
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
1429
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1369
1430
  dependencies = [
1370
1431
  "windows-sys",
1371
1432
  ]
1372
1433
 
1373
1434
  [[package]]
1374
- name = "windows-sys"
1375
- version = "0.59.0"
1435
+ name = "windows-link"
1436
+ version = "0.2.1"
1376
1437
  source = "registry+https://github.com/rust-lang/crates.io-index"
1377
- checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1378
- dependencies = [
1379
- "windows-targets",
1380
- ]
1438
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1381
1439
 
1382
1440
  [[package]]
1383
- name = "windows-targets"
1384
- version = "0.52.6"
1441
+ name = "windows-sys"
1442
+ version = "0.61.2"
1385
1443
  source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1444
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1387
1445
  dependencies = [
1388
- "windows_aarch64_gnullvm",
1389
- "windows_aarch64_msvc",
1390
- "windows_i686_gnu",
1391
- "windows_i686_gnullvm",
1392
- "windows_i686_msvc",
1393
- "windows_x86_64_gnu",
1394
- "windows_x86_64_gnullvm",
1395
- "windows_x86_64_msvc",
1446
+ "windows-link",
1396
1447
  ]
1397
1448
 
1398
1449
  [[package]]
1399
- name = "windows_aarch64_gnullvm"
1400
- version = "0.52.6"
1450
+ name = "wit-bindgen"
1451
+ version = "0.46.0"
1401
1452
  source = "registry+https://github.com/rust-lang/crates.io-index"
1402
- checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1403
-
1404
- [[package]]
1405
- name = "windows_aarch64_msvc"
1406
- version = "0.52.6"
1407
- source = "registry+https://github.com/rust-lang/crates.io-index"
1408
- checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1409
-
1410
- [[package]]
1411
- name = "windows_i686_gnu"
1412
- version = "0.52.6"
1413
- source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1415
-
1416
- [[package]]
1417
- name = "windows_i686_gnullvm"
1418
- version = "0.52.6"
1419
- source = "registry+https://github.com/rust-lang/crates.io-index"
1420
- checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1421
-
1422
- [[package]]
1423
- name = "windows_i686_msvc"
1424
- version = "0.52.6"
1425
- source = "registry+https://github.com/rust-lang/crates.io-index"
1426
- checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1427
-
1428
- [[package]]
1429
- name = "windows_x86_64_gnu"
1430
- version = "0.52.6"
1431
- source = "registry+https://github.com/rust-lang/crates.io-index"
1432
- checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1433
-
1434
- [[package]]
1435
- name = "windows_x86_64_gnullvm"
1436
- version = "0.52.6"
1437
- source = "registry+https://github.com/rust-lang/crates.io-index"
1438
- checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1439
-
1440
- [[package]]
1441
- name = "windows_x86_64_msvc"
1442
- version = "0.52.6"
1443
- source = "registry+https://github.com/rust-lang/crates.io-index"
1444
- checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1445
-
1446
- [[package]]
1447
- name = "wit-bindgen-rt"
1448
- version = "0.39.0"
1449
- source = "registry+https://github.com/rust-lang/crates.io-index"
1450
- checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
1451
- dependencies = [
1452
- "bitflags",
1453
- ]
1453
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1454
1454
 
1455
1455
  [[package]]
1456
1456
  name = "yara"
1457
- version = "0.30.0"
1457
+ version = "0.31.0"
1458
1458
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "2860d5b9e61e482a7bb3481ae4375e9c551dc07afaf15c2172dd81009f01686c"
1459
+ checksum = "3463ea22ddcfa07b44876dc48d1299469984d4083e8cace4e1eed8e1f41871b3"
1460
1460
  dependencies = [
1461
1461
  "bitflags",
1462
1462
  "thiserror",
@@ -1465,9 +1465,9 @@ dependencies = [
1465
1465
 
1466
1466
  [[package]]
1467
1467
  name = "yara-sys"
1468
- version = "0.29.0"
1468
+ version = "0.31.0"
1469
1469
  source = "registry+https://github.com/rust-lang/crates.io-index"
1470
- checksum = "bbeb5b2ed726cb3786945423539732a681ce2eb9911ee5e7548fad7ca96b0731"
1470
+ checksum = "1b2168a47828c221f8ce1918a902fb8ee5f5a0aad57f417ab6d3bf7b9047ffa2"
1471
1471
  dependencies = [
1472
1472
  "bindgen",
1473
1473
  "cc",
@@ -1477,18 +1477,18 @@ dependencies = [
1477
1477
 
1478
1478
  [[package]]
1479
1479
  name = "zerocopy"
1480
- version = "0.8.25"
1480
+ version = "0.8.28"
1481
1481
  source = "registry+https://github.com/rust-lang/crates.io-index"
1482
- checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
1482
+ checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90"
1483
1483
  dependencies = [
1484
1484
  "zerocopy-derive",
1485
1485
  ]
1486
1486
 
1487
1487
  [[package]]
1488
1488
  name = "zerocopy-derive"
1489
- version = "0.8.25"
1489
+ version = "0.8.28"
1490
1490
  source = "registry+https://github.com/rust-lang/crates.io-index"
1491
- checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
1491
+ checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26"
1492
1492
  dependencies = [
1493
1493
  "proc-macro2",
1494
1494
  "quote",
@@ -1497,6 +1497,6 @@ dependencies = [
1497
1497
 
1498
1498
  [[package]]
1499
1499
  name = "zeroize"
1500
- version = "1.8.1"
1500
+ version = "1.8.2"
1501
1501
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
1502
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"