boreal-python 1.1.0__tar.gz → 1.2.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 (125) hide show
  1. {boreal_python-1.1.0 → boreal_python-1.2.0}/Cargo.lock +162 -217
  2. {boreal_python-1.1.0 → boreal_python-1.2.0}/Cargo.toml +5 -0
  3. {boreal_python-1.1.0 → boreal_python-1.2.0}/PKG-INFO +1 -1
  4. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/Cargo.toml +11 -11
  5. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/error.rs +9 -5
  6. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/expression.rs +8 -8
  7. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/mod.rs +3 -3
  8. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/module.rs +7 -7
  9. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/rule.rs +2 -2
  10. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/tests.rs +1 -1
  11. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/variable.rs +2 -2
  12. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/evaluator/entrypoint.rs +3 -3
  13. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/evaluator/mod.rs +2 -6
  14. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/analysis.rs +1 -1
  15. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/literals.rs +3 -3
  16. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/only_literals.rs +1 -1
  17. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/raw.rs +2 -2
  18. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/validator/dfa.rs +2 -2
  19. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/validator/simple.rs +2 -6
  20. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/validator.rs +2 -2
  21. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/widener.rs +1 -1
  22. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/memory.rs +1 -5
  23. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/dotnet.rs +2 -2
  24. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/elf.rs +34 -40
  25. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/hash.rs +1 -1
  26. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/mod.rs +18 -14
  27. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/debug.rs +2 -2
  28. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/signatures/asn1.rs +1 -1
  29. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/signatures.rs +2 -2
  30. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/utils.rs +3 -7
  31. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe.rs +7 -13
  32. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/string.rs +6 -10
  33. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/regex/hir.rs +2 -2
  34. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/regex/mod.rs +2 -2
  35. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/ac_scan.rs +16 -3
  36. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/mod.rs +26 -24
  37. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/linux.rs +1 -5
  38. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/macos.rs +1 -1
  39. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/windows.rs +25 -9
  40. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/test_helpers.rs +2 -2
  41. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/wire.rs +23 -17
  42. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/Cargo.toml +4 -4
  43. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/boolean_expression.rs +3 -3
  44. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/common.rs +2 -2
  45. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/primary_expression.rs +3 -3
  46. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/read_integer.rs +2 -2
  47. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/number.rs +4 -4
  48. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/regex.rs +4 -4
  49. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/rule.rs +21 -13
  50. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/test_helpers.rs +1 -1
  51. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/types.rs +16 -10
  52. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/Cargo.toml +5 -5
  53. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/lib.rs +2 -2
  54. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/scanner.rs +5 -5
  55. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/string_match_instance.rs +1 -1
  56. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/string_matches.rs +3 -3
  57. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/uv.lock +173 -209
  58. {boreal_python-1.1.0 → boreal_python-1.2.0}/pyproject.toml +10 -9
  59. {boreal_python-1.1.0 → boreal_python-1.2.0}/README.md +0 -0
  60. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/LICENSE-APACHE +0 -0
  61. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/LICENSE-MIT +0 -0
  62. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/README.md +0 -0
  63. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/atoms.rs +0 -0
  64. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/bitmaps.rs +0 -0
  65. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/bytes_pool.rs +0 -0
  66. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/builder.rs +0 -0
  67. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/external_symbol.rs +0 -0
  68. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/compiler/params.rs +0 -0
  69. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/evaluator/error.rs +0 -0
  70. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/evaluator/module.rs +0 -0
  71. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/evaluator/read_integer.rs +0 -0
  72. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/evaluator/variable.rs +0 -0
  73. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/lib.rs +1 -1
  74. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/base64.rs +0 -0
  75. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/matcher/mod.rs +0 -0
  76. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/console.rs +0 -0
  77. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/cuckoo.rs +0 -0
  78. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/dex.rs +0 -0
  79. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/macho.rs +1 -1
  80. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/magic.rs +0 -0
  81. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/math.rs +0 -0
  82. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/ord.rs +0 -0
  83. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/signatures/verify.rs +1 -1
  84. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/pe/version_info.rs +0 -0
  85. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/module/time.rs +0 -0
  86. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/regex/visitor.rs +0 -0
  87. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/error.rs +0 -0
  88. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/params.rs +0 -0
  89. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys/default.rs +0 -0
  90. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/process/sys.rs +0 -0
  91. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/scanner/process.rs +0 -0
  92. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/statistics.rs +0 -0
  93. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal/src/timeout.rs +0 -0
  94. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/LICENSE-APACHE +0 -0
  95. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/LICENSE-MIT +0 -0
  96. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/README.md +0 -0
  97. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/error.rs +0 -0
  98. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/for_expression.rs +1 -1
  99. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/identifier.rs +2 -2
  100. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/mod.rs +0 -0
  101. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/expression/string_expression.rs +1 -1
  102. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/file.rs +1 -1
  103. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/hex_string.rs +1 -1
  104. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/lib.rs +0 -0
  105. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/nom_recipes.rs +1 -1
  106. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-parser/src/string.rs +1 -1
  107. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/README.md +0 -0
  108. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/boreal.pyi +0 -0
  109. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/docs/README.md +0 -0
  110. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/docs/api.md +0 -0
  111. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/docs/griffe_customization.py +0 -0
  112. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/docs/yara_compatibility_mode.md +0 -0
  113. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/mkdocs.yml +0 -0
  114. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/scripts/test-parallel.sh +0 -0
  115. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/scripts/test.sh +0 -0
  116. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/module.rs +0 -0
  117. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/rule.rs +0 -0
  118. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/rule_match.rs +0 -0
  119. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/src/rule_string.rs +0 -0
  120. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/tests/conftest.py +0 -0
  121. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/tests/test_api.py +0 -0
  122. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/tests/test_compile.py +0 -0
  123. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/tests/test_scanner.py +0 -0
  124. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/tests/test_types.py +0 -0
  125. {boreal_python-1.1.0 → boreal_python-1.2.0}/boreal-py/tests/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  # This file is automatically @generated by Cargo.
2
2
  # It is not intended for manual editing.
3
- version = 3
3
+ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "aho-corasick"
@@ -13,9 +13,9 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "anstream"
16
- version = "0.6.21"
16
+ version = "1.0.0"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
18
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
19
19
  dependencies = [
20
20
  "anstyle",
21
21
  "anstyle-parse",
@@ -28,15 +28,15 @@ dependencies = [
28
28
 
29
29
  [[package]]
30
30
  name = "anstyle"
31
- version = "1.0.13"
31
+ version = "1.0.14"
32
32
  source = "registry+https://github.com/rust-lang/crates.io-index"
33
- checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
34
 
35
35
  [[package]]
36
36
  name = "anstyle-parse"
37
- version = "0.2.7"
37
+ version = "1.0.0"
38
38
  source = "registry+https://github.com/rust-lang/crates.io-index"
39
- checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
39
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
40
40
  dependencies = [
41
41
  "utf8parse",
42
42
  ]
@@ -63,9 +63,9 @@ dependencies = [
63
63
 
64
64
  [[package]]
65
65
  name = "assert_cmd"
66
- version = "2.1.1"
66
+ version = "2.2.2"
67
67
  source = "registry+https://github.com/rust-lang/crates.io-index"
68
- checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
68
+ checksum = "2aa3a22042e45de04255c7bf3626e239f450200fd0493c1e382263544b20aea6"
69
69
  dependencies = [
70
70
  "anstyle",
71
71
  "bstr",
@@ -78,9 +78,9 @@ dependencies = [
78
78
 
79
79
  [[package]]
80
80
  name = "autocfg"
81
- version = "1.5.0"
81
+ version = "1.5.1"
82
82
  source = "registry+https://github.com/rust-lang/crates.io-index"
83
- checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
83
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
84
84
 
85
85
  [[package]]
86
86
  name = "base16ct"
@@ -96,35 +96,33 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
96
96
 
97
97
  [[package]]
98
98
  name = "base64ct"
99
- version = "1.6.0"
99
+ version = "1.8.3"
100
100
  source = "registry+https://github.com/rust-lang/crates.io-index"
101
- checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
101
+ checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
102
102
 
103
103
  [[package]]
104
104
  name = "bindgen"
105
- version = "0.68.1"
105
+ version = "0.72.1"
106
106
  source = "registry+https://github.com/rust-lang/crates.io-index"
107
- checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078"
107
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
108
108
  dependencies = [
109
109
  "bitflags",
110
110
  "cexpr",
111
111
  "clang-sys",
112
- "lazy_static",
113
- "lazycell",
114
- "peeking_take_while",
112
+ "itertools",
115
113
  "proc-macro2",
116
114
  "quote",
117
115
  "regex",
118
116
  "rustc-hash",
119
- "shlex",
117
+ "shlex 1.3.0",
120
118
  "syn",
121
119
  ]
122
120
 
123
121
  [[package]]
124
122
  name = "bitflags"
125
- version = "2.10.0"
123
+ version = "2.13.1"
126
124
  source = "registry+https://github.com/rust-lang/crates.io-index"
127
- checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
125
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
128
126
 
129
127
  [[package]]
130
128
  name = "block-buffer"
@@ -137,7 +135,7 @@ dependencies = [
137
135
 
138
136
  [[package]]
139
137
  name = "boreal"
140
- version = "1.1.0"
138
+ version = "1.2.0"
141
139
  dependencies = [
142
140
  "aho-corasick",
143
141
  "base64",
@@ -173,7 +171,7 @@ dependencies = [
173
171
 
174
172
  [[package]]
175
173
  name = "boreal-cli"
176
- version = "1.1.0"
174
+ version = "1.2.0"
177
175
  dependencies = [
178
176
  "assert_cmd",
179
177
  "boreal",
@@ -188,7 +186,7 @@ dependencies = [
188
186
 
189
187
  [[package]]
190
188
  name = "boreal-parser"
191
- version = "1.1.0"
189
+ version = "1.2.0"
192
190
  dependencies = [
193
191
  "codespan-reporting",
194
192
  "nom 8.0.0",
@@ -196,7 +194,7 @@ dependencies = [
196
194
 
197
195
  [[package]]
198
196
  name = "boreal-py"
199
- version = "1.1.0"
197
+ version = "1.2.0"
200
198
  dependencies = [
201
199
  "boreal",
202
200
  "parking_lot",
@@ -213,32 +211,39 @@ dependencies = [
213
211
 
214
212
  [[package]]
215
213
  name = "borsh"
216
- version = "1.5.7"
214
+ version = "1.7.0"
217
215
  source = "registry+https://github.com/rust-lang/crates.io-index"
218
- checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
216
+ checksum = "2f3f6da4992df95bbcd9af42a6c7dcb994498fc9048230405f3b36ff7cd3f145"
219
217
  dependencies = [
218
+ "bytes",
220
219
  "cfg_aliases",
221
220
  ]
222
221
 
223
222
  [[package]]
224
223
  name = "bstr"
225
- version = "1.12.1"
224
+ version = "1.13.0"
226
225
  source = "registry+https://github.com/rust-lang/crates.io-index"
227
- checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
226
+ checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
228
227
  dependencies = [
229
228
  "memchr",
230
229
  "regex-automata",
231
- "serde",
230
+ "serde_core",
232
231
  ]
233
232
 
233
+ [[package]]
234
+ name = "bytes"
235
+ version = "1.12.1"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
238
+
234
239
  [[package]]
235
240
  name = "cc"
236
- version = "1.2.47"
241
+ version = "1.2.67"
237
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
238
- checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07"
243
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
239
244
  dependencies = [
240
245
  "find-msvc-tools",
241
- "shlex",
246
+ "shlex 2.0.1",
242
247
  ]
243
248
 
244
249
  [[package]]
@@ -275,18 +280,18 @@ dependencies = [
275
280
 
276
281
  [[package]]
277
282
  name = "clap"
278
- version = "4.5.53"
283
+ version = "4.6.2"
279
284
  source = "registry+https://github.com/rust-lang/crates.io-index"
280
- checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
285
+ checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
281
286
  dependencies = [
282
287
  "clap_builder",
283
288
  ]
284
289
 
285
290
  [[package]]
286
291
  name = "clap_builder"
287
- version = "4.5.53"
292
+ version = "4.6.2"
288
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
289
- checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
294
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
290
295
  dependencies = [
291
296
  "anstream",
292
297
  "anstyle",
@@ -296,9 +301,9 @@ dependencies = [
296
301
 
297
302
  [[package]]
298
303
  name = "clap_lex"
299
- version = "0.7.6"
304
+ version = "1.1.0"
300
305
  source = "registry+https://github.com/rust-lang/crates.io-index"
301
- checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
306
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
302
307
 
303
308
  [[package]]
304
309
  name = "codespan-reporting"
@@ -313,9 +318,9 @@ dependencies = [
313
318
 
314
319
  [[package]]
315
320
  name = "colorchoice"
316
- version = "1.0.4"
321
+ version = "1.0.5"
317
322
  source = "registry+https://github.com/rust-lang/crates.io-index"
318
- checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
323
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
319
324
 
320
325
  [[package]]
321
326
  name = "const-oid"
@@ -343,18 +348,18 @@ dependencies = [
343
348
 
344
349
  [[package]]
345
350
  name = "crossbeam-channel"
346
- version = "0.5.15"
351
+ version = "0.5.16"
347
352
  source = "registry+https://github.com/rust-lang/crates.io-index"
348
- checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
353
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
349
354
  dependencies = [
350
355
  "crossbeam-utils",
351
356
  ]
352
357
 
353
358
  [[package]]
354
359
  name = "crossbeam-utils"
355
- version = "0.8.21"
360
+ version = "0.8.22"
356
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
357
- checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
362
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
358
363
 
359
364
  [[package]]
360
365
  name = "crypto-bigint"
@@ -448,6 +453,12 @@ dependencies = [
448
453
  "signature",
449
454
  ]
450
455
 
456
+ [[package]]
457
+ name = "either"
458
+ version = "1.16.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
461
+
451
462
  [[package]]
452
463
  name = "elliptic-curve"
453
464
  version = "0.13.8"
@@ -480,9 +491,9 @@ dependencies = [
480
491
 
481
492
  [[package]]
482
493
  name = "fastrand"
483
- version = "2.3.0"
494
+ version = "2.4.1"
484
495
  source = "registry+https://github.com/rust-lang/crates.io-index"
485
- checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
496
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
486
497
 
487
498
  [[package]]
488
499
  name = "ff"
@@ -496,9 +507,9 @@ dependencies = [
496
507
 
497
508
  [[package]]
498
509
  name = "find-msvc-tools"
499
- version = "0.1.5"
510
+ version = "0.1.9"
500
511
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
512
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
502
513
 
503
514
  [[package]]
504
515
  name = "fs_extra"
@@ -517,18 +528,6 @@ dependencies = [
517
528
  "zeroize",
518
529
  ]
519
530
 
520
- [[package]]
521
- name = "getrandom"
522
- version = "0.3.4"
523
- source = "registry+https://github.com/rust-lang/crates.io-index"
524
- checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
525
- dependencies = [
526
- "cfg-if",
527
- "libc",
528
- "r-efi",
529
- "wasip2",
530
- ]
531
-
532
531
  [[package]]
533
532
  name = "glob"
534
533
  version = "0.3.3"
@@ -567,26 +566,26 @@ dependencies = [
567
566
  "digest",
568
567
  ]
569
568
 
570
- [[package]]
571
- name = "indoc"
572
- version = "2.0.7"
573
- source = "registry+https://github.com/rust-lang/crates.io-index"
574
- checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
575
- dependencies = [
576
- "rustversion",
577
- ]
578
-
579
569
  [[package]]
580
570
  name = "is_terminal_polyfill"
581
571
  version = "1.70.2"
582
572
  source = "registry+https://github.com/rust-lang/crates.io-index"
583
573
  checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
584
574
 
575
+ [[package]]
576
+ name = "itertools"
577
+ version = "0.13.0"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
580
+ dependencies = [
581
+ "either",
582
+ ]
583
+
585
584
  [[package]]
586
585
  name = "itoa"
587
- version = "1.0.15"
586
+ version = "1.0.18"
588
587
  source = "registry+https://github.com/rust-lang/crates.io-index"
589
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
588
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
590
589
 
591
590
  [[package]]
592
591
  name = "lazy_static"
@@ -597,17 +596,11 @@ dependencies = [
597
596
  "spin",
598
597
  ]
599
598
 
600
- [[package]]
601
- name = "lazycell"
602
- version = "1.3.0"
603
- source = "registry+https://github.com/rust-lang/crates.io-index"
604
- checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
605
-
606
599
  [[package]]
607
600
  name = "libc"
608
- version = "0.2.177"
601
+ version = "0.2.186"
609
602
  source = "registry+https://github.com/rust-lang/crates.io-index"
610
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
603
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
611
604
 
612
605
  [[package]]
613
606
  name = "libloading"
@@ -621,15 +614,15 @@ dependencies = [
621
614
 
622
615
  [[package]]
623
616
  name = "libm"
624
- version = "0.2.15"
617
+ version = "0.2.16"
625
618
  source = "registry+https://github.com/rust-lang/crates.io-index"
626
- checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
619
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
627
620
 
628
621
  [[package]]
629
622
  name = "linux-raw-sys"
630
- version = "0.11.0"
623
+ version = "0.12.1"
631
624
  source = "registry+https://github.com/rust-lang/crates.io-index"
632
- checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
625
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
633
626
 
634
627
  [[package]]
635
628
  name = "lock_api"
@@ -678,28 +671,19 @@ dependencies = [
678
671
 
679
672
  [[package]]
680
673
  name = "memchr"
681
- version = "2.7.6"
674
+ version = "2.8.3"
682
675
  source = "registry+https://github.com/rust-lang/crates.io-index"
683
- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
676
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
684
677
 
685
678
  [[package]]
686
679
  name = "memmap2"
687
- version = "0.9.9"
680
+ version = "0.9.11"
688
681
  source = "registry+https://github.com/rust-lang/crates.io-index"
689
- checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
682
+ checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
690
683
  dependencies = [
691
684
  "libc",
692
685
  ]
693
686
 
694
- [[package]]
695
- name = "memoffset"
696
- version = "0.9.1"
697
- source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
699
- dependencies = [
700
- "autocfg",
701
- ]
702
-
703
687
  [[package]]
704
688
  name = "minimal-lexical"
705
689
  version = "0.2.1"
@@ -752,11 +736,10 @@ dependencies = [
752
736
 
753
737
  [[package]]
754
738
  name = "num-iter"
755
- version = "0.1.45"
739
+ version = "0.1.46"
756
740
  source = "registry+https://github.com/rust-lang/crates.io-index"
757
- checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
741
+ checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
758
742
  dependencies = [
759
- "autocfg",
760
743
  "num-integer",
761
744
  "num-traits",
762
745
  ]
@@ -773,18 +756,18 @@ dependencies = [
773
756
 
774
757
  [[package]]
775
758
  name = "object"
776
- version = "0.37.3"
759
+ version = "0.39.1"
777
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
778
- checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
761
+ checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
779
762
  dependencies = [
780
763
  "memchr",
781
764
  ]
782
765
 
783
766
  [[package]]
784
767
  name = "once_cell"
785
- version = "1.21.3"
768
+ version = "1.21.4"
786
769
  source = "registry+https://github.com/rust-lang/crates.io-index"
787
- checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
770
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
788
771
 
789
772
  [[package]]
790
773
  name = "once_cell_polyfill"
@@ -839,12 +822,6 @@ dependencies = [
839
822
  "windows-link",
840
823
  ]
841
824
 
842
- [[package]]
843
- name = "peeking_take_while"
844
- version = "0.1.2"
845
- source = "registry+https://github.com/rust-lang/crates.io-index"
846
- checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
847
-
848
825
  [[package]]
849
826
  name = "pem-rfc7468"
850
827
  version = "0.7.0"
@@ -877,9 +854,9 @@ dependencies = [
877
854
 
878
855
  [[package]]
879
856
  name = "portable-atomic"
880
- version = "1.11.1"
857
+ version = "1.13.1"
881
858
  source = "registry+https://github.com/rust-lang/crates.io-index"
882
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
859
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
883
860
 
884
861
  [[package]]
885
862
  name = "ppv-lite86"
@@ -892,9 +869,9 @@ dependencies = [
892
869
 
893
870
  [[package]]
894
871
  name = "predicates"
895
- version = "3.1.3"
872
+ version = "3.1.4"
896
873
  source = "registry+https://github.com/rust-lang/crates.io-index"
897
- checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
874
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
898
875
  dependencies = [
899
876
  "anstyle",
900
877
  "difflib",
@@ -904,15 +881,15 @@ dependencies = [
904
881
 
905
882
  [[package]]
906
883
  name = "predicates-core"
907
- version = "1.0.9"
884
+ version = "1.0.10"
908
885
  source = "registry+https://github.com/rust-lang/crates.io-index"
909
- checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
886
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
910
887
 
911
888
  [[package]]
912
889
  name = "predicates-tree"
913
- version = "1.0.12"
890
+ version = "1.0.13"
914
891
  source = "registry+https://github.com/rust-lang/crates.io-index"
915
- checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
892
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
916
893
  dependencies = [
917
894
  "predicates-core",
918
895
  "termtree",
@@ -929,44 +906,41 @@ dependencies = [
929
906
 
930
907
  [[package]]
931
908
  name = "proc-macro2"
932
- version = "1.0.103"
909
+ version = "1.0.106"
933
910
  source = "registry+https://github.com/rust-lang/crates.io-index"
934
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
911
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
935
912
  dependencies = [
936
913
  "unicode-ident",
937
914
  ]
938
915
 
939
916
  [[package]]
940
917
  name = "pyo3"
941
- version = "0.27.1"
918
+ version = "0.29.0"
942
919
  source = "registry+https://github.com/rust-lang/crates.io-index"
943
- checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
920
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
944
921
  dependencies = [
945
- "indoc",
946
922
  "libc",
947
- "memoffset",
948
923
  "once_cell",
949
924
  "portable-atomic",
950
925
  "pyo3-build-config",
951
926
  "pyo3-ffi",
952
927
  "pyo3-macros",
953
- "unindent",
954
928
  ]
955
929
 
956
930
  [[package]]
957
931
  name = "pyo3-build-config"
958
- version = "0.27.1"
932
+ version = "0.29.0"
959
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
960
- checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
934
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
961
935
  dependencies = [
962
936
  "target-lexicon",
963
937
  ]
964
938
 
965
939
  [[package]]
966
940
  name = "pyo3-ffi"
967
- version = "0.27.1"
941
+ version = "0.29.0"
968
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
969
- checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
943
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
970
944
  dependencies = [
971
945
  "libc",
972
946
  "pyo3-build-config",
@@ -974,9 +948,9 @@ dependencies = [
974
948
 
975
949
  [[package]]
976
950
  name = "pyo3-macros"
977
- version = "0.27.1"
951
+ version = "0.29.0"
978
952
  source = "registry+https://github.com/rust-lang/crates.io-index"
979
- checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
953
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
980
954
  dependencies = [
981
955
  "proc-macro2",
982
956
  "pyo3-macros-backend",
@@ -986,37 +960,30 @@ dependencies = [
986
960
 
987
961
  [[package]]
988
962
  name = "pyo3-macros-backend"
989
- version = "0.27.1"
963
+ version = "0.29.0"
990
964
  source = "registry+https://github.com/rust-lang/crates.io-index"
991
- checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
965
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
992
966
  dependencies = [
993
967
  "heck",
994
968
  "proc-macro2",
995
- "pyo3-build-config",
996
969
  "quote",
997
970
  "syn",
998
971
  ]
999
972
 
1000
973
  [[package]]
1001
974
  name = "quote"
1002
- version = "1.0.42"
975
+ version = "1.0.46"
1003
976
  source = "registry+https://github.com/rust-lang/crates.io-index"
1004
- checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
977
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1005
978
  dependencies = [
1006
979
  "proc-macro2",
1007
980
  ]
1008
981
 
1009
- [[package]]
1010
- name = "r-efi"
1011
- version = "5.3.0"
1012
- source = "registry+https://github.com/rust-lang/crates.io-index"
1013
- checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1014
-
1015
982
  [[package]]
1016
983
  name = "rand"
1017
- version = "0.8.5"
984
+ version = "0.8.7"
1018
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
1019
- checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
986
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
1020
987
  dependencies = [
1021
988
  "rand_chacha",
1022
989
  "rand_core",
@@ -1049,9 +1016,9 @@ dependencies = [
1049
1016
 
1050
1017
  [[package]]
1051
1018
  name = "regex"
1052
- version = "1.12.2"
1019
+ version = "1.13.1"
1053
1020
  source = "registry+https://github.com/rust-lang/crates.io-index"
1054
- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1021
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
1055
1022
  dependencies = [
1056
1023
  "aho-corasick",
1057
1024
  "memchr",
@@ -1061,9 +1028,9 @@ dependencies = [
1061
1028
 
1062
1029
  [[package]]
1063
1030
  name = "regex-automata"
1064
- version = "0.4.13"
1031
+ version = "0.4.16"
1065
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
1066
- checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1033
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1067
1034
  dependencies = [
1068
1035
  "aho-corasick",
1069
1036
  "memchr",
@@ -1072,9 +1039,9 @@ dependencies = [
1072
1039
 
1073
1040
  [[package]]
1074
1041
  name = "regex-syntax"
1075
- version = "0.8.8"
1042
+ version = "0.8.11"
1076
1043
  source = "registry+https://github.com/rust-lang/crates.io-index"
1077
- checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1044
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1078
1045
 
1079
1046
  [[package]]
1080
1047
  name = "rfc6979"
@@ -1088,9 +1055,9 @@ dependencies = [
1088
1055
 
1089
1056
  [[package]]
1090
1057
  name = "rsa"
1091
- version = "0.9.9"
1058
+ version = "0.9.10"
1092
1059
  source = "registry+https://github.com/rust-lang/crates.io-index"
1093
- checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
1060
+ checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1094
1061
  dependencies = [
1095
1062
  "const-oid",
1096
1063
  "digest",
@@ -1108,15 +1075,15 @@ dependencies = [
1108
1075
 
1109
1076
  [[package]]
1110
1077
  name = "rustc-hash"
1111
- version = "1.1.0"
1078
+ version = "2.1.3"
1112
1079
  source = "registry+https://github.com/rust-lang/crates.io-index"
1113
- checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1080
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1114
1081
 
1115
1082
  [[package]]
1116
1083
  name = "rustix"
1117
- version = "1.1.2"
1084
+ version = "1.1.4"
1118
1085
  source = "registry+https://github.com/rust-lang/crates.io-index"
1119
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1086
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1120
1087
  dependencies = [
1121
1088
  "bitflags",
1122
1089
  "errno",
@@ -1125,18 +1092,6 @@ dependencies = [
1125
1092
  "windows-sys",
1126
1093
  ]
1127
1094
 
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
-
1134
- [[package]]
1135
- name = "ryu"
1136
- version = "1.0.20"
1137
- source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1139
-
1140
1095
  [[package]]
1141
1096
  name = "same-file"
1142
1097
  version = "1.0.6"
@@ -1198,15 +1153,15 @@ dependencies = [
1198
1153
 
1199
1154
  [[package]]
1200
1155
  name = "serde_json"
1201
- version = "1.0.145"
1156
+ version = "1.0.150"
1202
1157
  source = "registry+https://github.com/rust-lang/crates.io-index"
1203
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1158
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1204
1159
  dependencies = [
1205
1160
  "itoa",
1206
1161
  "memchr",
1207
- "ryu",
1208
1162
  "serde",
1209
1163
  "serde_core",
1164
+ "zmij",
1210
1165
  ]
1211
1166
 
1212
1167
  [[package]]
@@ -1237,6 +1192,12 @@ version = "1.3.0"
1237
1192
  source = "registry+https://github.com/rust-lang/crates.io-index"
1238
1193
  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1239
1194
 
1195
+ [[package]]
1196
+ name = "shlex"
1197
+ version = "2.0.1"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1200
+
1240
1201
  [[package]]
1241
1202
  name = "signature"
1242
1203
  version = "2.2.0"
@@ -1249,15 +1210,15 @@ dependencies = [
1249
1210
 
1250
1211
  [[package]]
1251
1212
  name = "smallvec"
1252
- version = "1.15.1"
1213
+ version = "1.15.2"
1253
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1254
- checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1215
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1255
1216
 
1256
1217
  [[package]]
1257
1218
  name = "spin"
1258
- version = "0.9.8"
1219
+ version = "0.9.9"
1259
1220
  source = "registry+https://github.com/rust-lang/crates.io-index"
1260
- checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1221
+ checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
1261
1222
 
1262
1223
  [[package]]
1263
1224
  name = "spki"
@@ -1283,9 +1244,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1283
1244
 
1284
1245
  [[package]]
1285
1246
  name = "syn"
1286
- version = "2.0.110"
1247
+ version = "2.0.119"
1287
1248
  source = "registry+https://github.com/rust-lang/crates.io-index"
1288
- checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
1249
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1289
1250
  dependencies = [
1290
1251
  "proc-macro2",
1291
1252
  "quote",
@@ -1294,18 +1255,17 @@ dependencies = [
1294
1255
 
1295
1256
  [[package]]
1296
1257
  name = "target-lexicon"
1297
- version = "0.13.3"
1258
+ version = "0.13.5"
1298
1259
  source = "registry+https://github.com/rust-lang/crates.io-index"
1299
- checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1260
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1300
1261
 
1301
1262
  [[package]]
1302
1263
  name = "tempfile"
1303
- version = "3.23.0"
1264
+ version = "3.27.0"
1304
1265
  source = "registry+https://github.com/rust-lang/crates.io-index"
1305
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1266
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1306
1267
  dependencies = [
1307
1268
  "fastrand",
1308
- "getrandom",
1309
1269
  "once_cell",
1310
1270
  "rustix",
1311
1271
  "windows-sys",
@@ -1354,15 +1314,15 @@ checksum = "7184dfffa0d05e10284df327c6cb52f0d62c5aa6c9a8b9236fa151d4361882f1"
1354
1314
 
1355
1315
  [[package]]
1356
1316
  name = "typenum"
1357
- version = "1.19.0"
1317
+ version = "1.20.1"
1358
1318
  source = "registry+https://github.com/rust-lang/crates.io-index"
1359
- checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1319
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
1360
1320
 
1361
1321
  [[package]]
1362
1322
  name = "unicode-ident"
1363
- version = "1.0.22"
1323
+ version = "1.0.24"
1364
1324
  source = "registry+https://github.com/rust-lang/crates.io-index"
1365
- checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1325
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1366
1326
 
1367
1327
  [[package]]
1368
1328
  name = "unicode-width"
@@ -1370,12 +1330,6 @@ version = "0.2.2"
1370
1330
  source = "registry+https://github.com/rust-lang/crates.io-index"
1371
1331
  checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1372
1332
 
1373
- [[package]]
1374
- name = "unindent"
1375
- version = "0.2.4"
1376
- source = "registry+https://github.com/rust-lang/crates.io-index"
1377
- checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1378
-
1379
1333
  [[package]]
1380
1334
  name = "utf8parse"
1381
1335
  version = "0.2.2"
@@ -1413,15 +1367,6 @@ dependencies = [
1413
1367
  "winapi-util",
1414
1368
  ]
1415
1369
 
1416
- [[package]]
1417
- name = "wasip2"
1418
- version = "1.0.1+wasi-0.2.4"
1419
- source = "registry+https://github.com/rust-lang/crates.io-index"
1420
- checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1421
- dependencies = [
1422
- "wit-bindgen",
1423
- ]
1424
-
1425
1370
  [[package]]
1426
1371
  name = "winapi-util"
1427
1372
  version = "0.1.11"
@@ -1446,17 +1391,11 @@ dependencies = [
1446
1391
  "windows-link",
1447
1392
  ]
1448
1393
 
1449
- [[package]]
1450
- name = "wit-bindgen"
1451
- version = "0.46.0"
1452
- source = "registry+https://github.com/rust-lang/crates.io-index"
1453
- checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1454
-
1455
1394
  [[package]]
1456
1395
  name = "yara"
1457
- version = "0.31.0"
1396
+ version = "0.32.0"
1458
1397
  source = "registry+https://github.com/rust-lang/crates.io-index"
1459
- checksum = "3463ea22ddcfa07b44876dc48d1299469984d4083e8cace4e1eed8e1f41871b3"
1398
+ checksum = "b3caead5c2f89f36a59da301b0ad42e6c096b957db0b4adc60e05aae74c2c3ac"
1460
1399
  dependencies = [
1461
1400
  "bitflags",
1462
1401
  "thiserror",
@@ -1465,9 +1404,9 @@ dependencies = [
1465
1404
 
1466
1405
  [[package]]
1467
1406
  name = "yara-sys"
1468
- version = "0.31.0"
1407
+ version = "0.32.0"
1469
1408
  source = "registry+https://github.com/rust-lang/crates.io-index"
1470
- checksum = "1b2168a47828c221f8ce1918a902fb8ee5f5a0aad57f417ab6d3bf7b9047ffa2"
1409
+ checksum = "ba8598e7b8b80190eddb1e030e87e4051f2fec79df901748a9257a4a59fcc3e5"
1471
1410
  dependencies = [
1472
1411
  "bindgen",
1473
1412
  "cc",
@@ -1477,18 +1416,18 @@ dependencies = [
1477
1416
 
1478
1417
  [[package]]
1479
1418
  name = "zerocopy"
1480
- version = "0.8.28"
1419
+ version = "0.8.54"
1481
1420
  source = "registry+https://github.com/rust-lang/crates.io-index"
1482
- checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90"
1421
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1483
1422
  dependencies = [
1484
1423
  "zerocopy-derive",
1485
1424
  ]
1486
1425
 
1487
1426
  [[package]]
1488
1427
  name = "zerocopy-derive"
1489
- version = "0.8.28"
1428
+ version = "0.8.54"
1490
1429
  source = "registry+https://github.com/rust-lang/crates.io-index"
1491
- checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26"
1430
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1492
1431
  dependencies = [
1493
1432
  "proc-macro2",
1494
1433
  "quote",
@@ -1497,6 +1436,12 @@ dependencies = [
1497
1436
 
1498
1437
  [[package]]
1499
1438
  name = "zeroize"
1500
- version = "1.8.2"
1439
+ version = "1.9.0"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
1442
+
1443
+ [[package]]
1444
+ name = "zmij"
1445
+ version = "1.0.23"
1501
1446
  source = "registry+https://github.com/rust-lang/crates.io-index"
1502
- checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1447
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"