boreal-python 1.2.0__tar.gz → 1.3.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 (127) hide show
  1. {boreal_python-1.2.0 → boreal_python-1.3.0}/Cargo.lock +99 -88
  2. {boreal_python-1.2.0 → boreal_python-1.3.0}/PKG-INFO +1 -1
  3. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/Cargo.toml +5 -5
  4. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/bytes_pool.rs +71 -50
  5. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/error.rs +11 -0
  6. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/expression.rs +245 -148
  7. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/mod.rs +15 -9
  8. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/module.rs +52 -43
  9. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/params.rs +3 -1
  10. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/rule.rs +145 -40
  11. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/tests.rs +18 -0
  12. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/variable.rs +9 -82
  13. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/entrypoint.rs +2 -2
  14. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/mod.rs +50 -25
  15. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/analysis.rs +0 -22
  16. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/literals.rs +7 -0
  17. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/mod.rs +36 -32
  18. boreal_python-1.3.0/boreal/src/matcher/validator/simple.rs +1125 -0
  19. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/validator.rs +77 -153
  20. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/dotnet.rs +1 -1
  21. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/elf.rs +116 -108
  22. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/macho.rs +163 -151
  23. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/version_info.rs +1 -1
  24. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe.rs +214 -172
  25. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/regex/mod.rs +2 -2
  26. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/ac_scan.rs +106 -60
  27. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/mod.rs +140 -120
  28. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/linux.rs +2 -1
  29. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/macos.rs +2 -1
  30. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/windows.rs +2 -1
  31. boreal_python-1.3.0/boreal/src/scanner/process.rs +14 -0
  32. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/statistics.rs +6 -6
  33. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/wire.rs +1 -1
  34. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/Cargo.toml +2 -2
  35. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/lib.rs +9 -7
  36. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/rule.rs +7 -2
  37. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/rule_match.rs +6 -1
  38. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/scanner.rs +58 -43
  39. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_scanner.py +72 -4
  40. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/uv.lock +208 -138
  41. {boreal_python-1.2.0 → boreal_python-1.3.0}/pyproject.toml +1 -1
  42. boreal_python-1.2.0/boreal/src/matcher/validator/simple.rs +0 -536
  43. boreal_python-1.2.0/boreal/src/scanner/process.rs +0 -8
  44. {boreal_python-1.2.0 → boreal_python-1.3.0}/Cargo.toml +0 -0
  45. {boreal_python-1.2.0 → boreal_python-1.3.0}/README.md +0 -0
  46. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/LICENSE-APACHE +0 -0
  47. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/LICENSE-MIT +0 -0
  48. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/README.md +0 -0
  49. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/atoms.rs +0 -0
  50. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/bitmaps.rs +0 -0
  51. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/builder.rs +0 -0
  52. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/external_symbol.rs +0 -0
  53. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/error.rs +0 -0
  54. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/module.rs +0 -0
  55. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/read_integer.rs +0 -0
  56. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/variable.rs +0 -0
  57. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/lib.rs +0 -0
  58. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/base64.rs +0 -0
  59. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/only_literals.rs +0 -0
  60. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/raw.rs +0 -0
  61. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/validator/dfa.rs +0 -0
  62. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/widener.rs +0 -0
  63. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/memory.rs +0 -0
  64. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/console.rs +0 -0
  65. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/cuckoo.rs +0 -0
  66. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/dex.rs +0 -0
  67. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/hash.rs +0 -0
  68. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/magic.rs +0 -0
  69. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/math.rs +0 -0
  70. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/mod.rs +0 -0
  71. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/debug.rs +0 -0
  72. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/ord.rs +0 -0
  73. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
  74. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
  75. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures.rs +0 -0
  76. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/utils.rs +0 -0
  77. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/string.rs +0 -0
  78. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/time.rs +0 -0
  79. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/regex/hir.rs +0 -0
  80. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/regex/visitor.rs +0 -0
  81. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/error.rs +0 -0
  82. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/params.rs +0 -0
  83. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/default.rs +0 -0
  84. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys.rs +0 -0
  85. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/test_helpers.rs +0 -0
  86. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/timeout.rs +0 -0
  87. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/Cargo.toml +0 -0
  88. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/LICENSE-APACHE +0 -0
  89. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/LICENSE-MIT +0 -0
  90. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/README.md +0 -0
  91. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/error.rs +0 -0
  92. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/boolean_expression.rs +0 -0
  93. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/common.rs +0 -0
  94. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/for_expression.rs +0 -0
  95. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/identifier.rs +0 -0
  96. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/mod.rs +0 -0
  97. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/primary_expression.rs +0 -0
  98. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/read_integer.rs +0 -0
  99. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/string_expression.rs +0 -0
  100. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/file.rs +0 -0
  101. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/hex_string.rs +0 -0
  102. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/lib.rs +0 -0
  103. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/nom_recipes.rs +0 -0
  104. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/number.rs +0 -0
  105. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/regex.rs +0 -0
  106. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/rule.rs +0 -0
  107. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/string.rs +0 -0
  108. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/test_helpers.rs +0 -0
  109. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/types.rs +0 -0
  110. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/README.md +0 -0
  111. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/boreal.pyi +0 -0
  112. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/README.md +0 -0
  113. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/api.md +0 -0
  114. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/griffe_customization.py +0 -0
  115. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/yara_compatibility_mode.md +0 -0
  116. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/mkdocs.yml +0 -0
  117. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/scripts/test-parallel.sh +0 -0
  118. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/scripts/test.sh +0 -0
  119. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/module.rs +0 -0
  120. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/rule_string.rs +0 -0
  121. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/string_match_instance.rs +0 -0
  122. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/string_matches.rs +0 -0
  123. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/conftest.py +0 -0
  124. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_api.py +0 -0
  125. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_compile.py +0 -0
  126. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_types.py +0 -0
  127. {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/utils.py +0 -0
@@ -4,9 +4,9 @@ version = 4
4
4
 
5
5
  [[package]]
6
6
  name = "aho-corasick"
7
- version = "1.1.4"
7
+ version = "1.1.5"
8
8
  source = "registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
9
+ checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
10
10
  dependencies = [
11
11
  "memchr",
12
12
  ]
@@ -90,9 +90,9 @@ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
90
90
 
91
91
  [[package]]
92
92
  name = "base64"
93
- version = "0.22.1"
93
+ version = "0.23.1"
94
94
  source = "registry+https://github.com/rust-lang/crates.io-index"
95
- checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
95
+ checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
96
96
 
97
97
  [[package]]
98
98
  name = "base64ct"
@@ -115,14 +115,14 @@ dependencies = [
115
115
  "regex",
116
116
  "rustc-hash",
117
117
  "shlex 1.3.0",
118
- "syn",
118
+ "syn 2.0.119",
119
119
  ]
120
120
 
121
121
  [[package]]
122
122
  name = "bitflags"
123
- version = "2.13.1"
123
+ version = "2.13.2"
124
124
  source = "registry+https://github.com/rust-lang/crates.io-index"
125
- checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
125
+ checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
126
126
 
127
127
  [[package]]
128
128
  name = "block-buffer"
@@ -135,7 +135,7 @@ dependencies = [
135
135
 
136
136
  [[package]]
137
137
  name = "boreal"
138
- version = "1.2.0"
138
+ version = "1.3.0"
139
139
  dependencies = [
140
140
  "aho-corasick",
141
141
  "base64",
@@ -171,7 +171,7 @@ dependencies = [
171
171
 
172
172
  [[package]]
173
173
  name = "boreal-cli"
174
- version = "1.2.0"
174
+ version = "1.3.0"
175
175
  dependencies = [
176
176
  "assert_cmd",
177
177
  "boreal",
@@ -194,7 +194,7 @@ dependencies = [
194
194
 
195
195
  [[package]]
196
196
  name = "boreal-py"
197
- version = "1.2.0"
197
+ version = "1.3.0"
198
198
  dependencies = [
199
199
  "boreal",
200
200
  "parking_lot",
@@ -211,9 +211,9 @@ dependencies = [
211
211
 
212
212
  [[package]]
213
213
  name = "borsh"
214
- version = "1.7.0"
214
+ version = "1.8.1"
215
215
  source = "registry+https://github.com/rust-lang/crates.io-index"
216
- checksum = "2f3f6da4992df95bbcd9af42a6c7dcb994498fc9048230405f3b36ff7cd3f145"
216
+ checksum = "553c5d846a6ba5150c65e3b1b8ec073bcf1abc20f9b7220de384a4443ea4e20a"
217
217
  dependencies = [
218
218
  "bytes",
219
219
  "cfg_aliases",
@@ -221,9 +221,9 @@ dependencies = [
221
221
 
222
222
  [[package]]
223
223
  name = "bstr"
224
- version = "1.13.0"
224
+ version = "1.13.1"
225
225
  source = "registry+https://github.com/rust-lang/crates.io-index"
226
- checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530"
226
+ checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
227
227
  dependencies = [
228
228
  "memchr",
229
229
  "regex-automata",
@@ -238,9 +238,9 @@ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
238
238
 
239
239
  [[package]]
240
240
  name = "cc"
241
- version = "1.2.67"
241
+ version = "1.4.5"
242
242
  source = "registry+https://github.com/rust-lang/crates.io-index"
243
- checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
243
+ checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
244
244
  dependencies = [
245
245
  "find-msvc-tools",
246
246
  "shlex 2.0.1",
@@ -263,15 +263,15 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
263
263
 
264
264
  [[package]]
265
265
  name = "cfg_aliases"
266
- version = "0.2.1"
266
+ version = "0.2.2"
267
267
  source = "registry+https://github.com/rust-lang/crates.io-index"
268
- checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
268
+ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
269
269
 
270
270
  [[package]]
271
271
  name = "clang-sys"
272
- version = "1.8.1"
272
+ version = "1.9.1"
273
273
  source = "registry+https://github.com/rust-lang/crates.io-index"
274
- checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
274
+ checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
275
275
  dependencies = [
276
276
  "glob",
277
277
  "libc",
@@ -280,18 +280,18 @@ dependencies = [
280
280
 
281
281
  [[package]]
282
282
  name = "clap"
283
- version = "4.6.2"
283
+ version = "4.6.6"
284
284
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011"
285
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
286
286
  dependencies = [
287
287
  "clap_builder",
288
288
  ]
289
289
 
290
290
  [[package]]
291
291
  name = "clap_builder"
292
- version = "4.6.2"
292
+ version = "4.6.6"
293
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
294
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
295
295
  dependencies = [
296
296
  "anstream",
297
297
  "anstyle",
@@ -339,27 +339,27 @@ dependencies = [
339
339
 
340
340
  [[package]]
341
341
  name = "crc32fast"
342
- version = "1.5.0"
342
+ version = "1.5.2"
343
343
  source = "registry+https://github.com/rust-lang/crates.io-index"
344
- checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
344
+ checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
345
345
  dependencies = [
346
346
  "cfg-if",
347
347
  ]
348
348
 
349
349
  [[package]]
350
350
  name = "crossbeam-channel"
351
- version = "0.5.16"
351
+ version = "0.5.17"
352
352
  source = "registry+https://github.com/rust-lang/crates.io-index"
353
- checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
353
+ checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
354
354
  dependencies = [
355
355
  "crossbeam-utils",
356
356
  ]
357
357
 
358
358
  [[package]]
359
359
  name = "crossbeam-utils"
360
- version = "0.8.22"
360
+ version = "0.8.23"
361
361
  source = "registry+https://github.com/rust-lang/crates.io-index"
362
- checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
362
+ checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
363
363
 
364
364
  [[package]]
365
365
  name = "crypto-bigint"
@@ -403,7 +403,7 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
403
403
  dependencies = [
404
404
  "proc-macro2",
405
405
  "quote",
406
- "syn",
406
+ "syn 2.0.119",
407
407
  ]
408
408
 
409
409
  [[package]]
@@ -455,9 +455,9 @@ dependencies = [
455
455
 
456
456
  [[package]]
457
457
  name = "either"
458
- version = "1.16.0"
458
+ version = "1.18.0"
459
459
  source = "registry+https://github.com/rust-lang/crates.io-index"
460
- checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
460
+ checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
461
461
 
462
462
  [[package]]
463
463
  name = "elliptic-curve"
@@ -491,9 +491,9 @@ dependencies = [
491
491
 
492
492
  [[package]]
493
493
  name = "fastrand"
494
- version = "2.4.1"
494
+ version = "2.5.0"
495
495
  source = "registry+https://github.com/rust-lang/crates.io-index"
496
- checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
496
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
497
497
 
498
498
  [[package]]
499
499
  name = "ff"
@@ -507,9 +507,9 @@ dependencies = [
507
507
 
508
508
  [[package]]
509
509
  name = "find-msvc-tools"
510
- version = "0.1.9"
510
+ version = "0.1.12"
511
511
  source = "registry+https://github.com/rust-lang/crates.io-index"
512
- checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
512
+ checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
513
513
 
514
514
  [[package]]
515
515
  name = "fs_extra"
@@ -530,9 +530,9 @@ dependencies = [
530
530
 
531
531
  [[package]]
532
532
  name = "glob"
533
- version = "0.3.3"
533
+ version = "0.3.4"
534
534
  source = "registry+https://github.com/rust-lang/crates.io-index"
535
- checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
535
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
536
536
 
537
537
  [[package]]
538
538
  name = "group"
@@ -598,9 +598,9 @@ dependencies = [
598
598
 
599
599
  [[package]]
600
600
  name = "libc"
601
- version = "0.2.186"
601
+ version = "0.2.189"
602
602
  source = "registry+https://github.com/rust-lang/crates.io-index"
603
- checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
603
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
604
604
 
605
605
  [[package]]
606
606
  name = "libloading"
@@ -635,9 +635,9 @@ dependencies = [
635
635
 
636
636
  [[package]]
637
637
  name = "mach2"
638
- version = "0.6.0"
638
+ version = "0.7.0"
639
639
  source = "registry+https://github.com/rust-lang/crates.io-index"
640
- checksum = "dae608c151f68243f2b000364e1f7b186d9c29845f7d2d85bd31b9ad77ad552b"
640
+ checksum = "b0d28e293f2b8c9d2b2d1c0193bd3c1cbdc0d2cf396888dc01162f7cf9d6c3f3"
641
641
 
642
642
  [[package]]
643
643
  name = "magic"
@@ -727,9 +727,9 @@ dependencies = [
727
727
 
728
728
  [[package]]
729
729
  name = "num-integer"
730
- version = "0.1.46"
730
+ version = "0.1.47"
731
731
  source = "registry+https://github.com/rust-lang/crates.io-index"
732
- checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
732
+ checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
733
733
  dependencies = [
734
734
  "num-traits",
735
735
  ]
@@ -756,9 +756,9 @@ dependencies = [
756
756
 
757
757
  [[package]]
758
758
  name = "object"
759
- version = "0.39.1"
759
+ version = "0.40.0"
760
760
  source = "registry+https://github.com/rust-lang/crates.io-index"
761
- checksum = "2e5a6c098c7a3b6547378093f5cc30bc54fd361ce711e05293a5cc589562739b"
761
+ checksum = "dd229a0361b9d0d4396176e02d65897f487eebeab7caa6d443855ee152ca0b9c"
762
762
  dependencies = [
763
763
  "memchr",
764
764
  ]
@@ -854,9 +854,9 @@ dependencies = [
854
854
 
855
855
  [[package]]
856
856
  name = "portable-atomic"
857
- version = "1.13.1"
857
+ version = "1.15.0"
858
858
  source = "registry+https://github.com/rust-lang/crates.io-index"
859
- checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
859
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
860
860
 
861
861
  [[package]]
862
862
  name = "ppv-lite86"
@@ -906,18 +906,18 @@ dependencies = [
906
906
 
907
907
  [[package]]
908
908
  name = "proc-macro2"
909
- version = "1.0.106"
909
+ version = "1.0.107"
910
910
  source = "registry+https://github.com/rust-lang/crates.io-index"
911
- checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
911
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
912
912
  dependencies = [
913
913
  "unicode-ident",
914
914
  ]
915
915
 
916
916
  [[package]]
917
917
  name = "pyo3"
918
- version = "0.29.0"
918
+ version = "0.29.2"
919
919
  source = "registry+https://github.com/rust-lang/crates.io-index"
920
- checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
920
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
921
921
  dependencies = [
922
922
  "libc",
923
923
  "once_cell",
@@ -929,18 +929,18 @@ dependencies = [
929
929
 
930
930
  [[package]]
931
931
  name = "pyo3-build-config"
932
- version = "0.29.0"
932
+ version = "0.29.2"
933
933
  source = "registry+https://github.com/rust-lang/crates.io-index"
934
- checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
934
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
935
935
  dependencies = [
936
936
  "target-lexicon",
937
937
  ]
938
938
 
939
939
  [[package]]
940
940
  name = "pyo3-ffi"
941
- version = "0.29.0"
941
+ version = "0.29.2"
942
942
  source = "registry+https://github.com/rust-lang/crates.io-index"
943
- checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
943
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
944
944
  dependencies = [
945
945
  "libc",
946
946
  "pyo3-build-config",
@@ -948,42 +948,42 @@ dependencies = [
948
948
 
949
949
  [[package]]
950
950
  name = "pyo3-macros"
951
- version = "0.29.0"
951
+ version = "0.29.2"
952
952
  source = "registry+https://github.com/rust-lang/crates.io-index"
953
- checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
953
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
954
954
  dependencies = [
955
955
  "proc-macro2",
956
956
  "pyo3-macros-backend",
957
957
  "quote",
958
- "syn",
958
+ "syn 2.0.119",
959
959
  ]
960
960
 
961
961
  [[package]]
962
962
  name = "pyo3-macros-backend"
963
- version = "0.29.0"
963
+ version = "0.29.2"
964
964
  source = "registry+https://github.com/rust-lang/crates.io-index"
965
- checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
965
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
966
966
  dependencies = [
967
967
  "heck",
968
968
  "proc-macro2",
969
969
  "quote",
970
- "syn",
970
+ "syn 2.0.119",
971
971
  ]
972
972
 
973
973
  [[package]]
974
974
  name = "quote"
975
- version = "1.0.46"
975
+ version = "1.0.47"
976
976
  source = "registry+https://github.com/rust-lang/crates.io-index"
977
- checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
977
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
978
978
  dependencies = [
979
979
  "proc-macro2",
980
980
  ]
981
981
 
982
982
  [[package]]
983
983
  name = "rand"
984
- version = "0.8.7"
984
+ version = "0.8.8"
985
985
  source = "registry+https://github.com/rust-lang/crates.io-index"
986
- checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
986
+ checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
987
987
  dependencies = [
988
988
  "rand_chacha",
989
989
  "rand_core",
@@ -1028,9 +1028,9 @@ dependencies = [
1028
1028
 
1029
1029
  [[package]]
1030
1030
  name = "regex-automata"
1031
- version = "0.4.16"
1031
+ version = "0.4.18"
1032
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
1033
- checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
1033
+ checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
1034
1034
  dependencies = [
1035
1035
  "aho-corasick",
1036
1036
  "memchr",
@@ -1123,9 +1123,9 @@ dependencies = [
1123
1123
 
1124
1124
  [[package]]
1125
1125
  name = "serde"
1126
- version = "1.0.228"
1126
+ version = "1.0.229"
1127
1127
  source = "registry+https://github.com/rust-lang/crates.io-index"
1128
- checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1128
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1129
1129
  dependencies = [
1130
1130
  "serde_core",
1131
1131
  "serde_derive",
@@ -1133,29 +1133,29 @@ dependencies = [
1133
1133
 
1134
1134
  [[package]]
1135
1135
  name = "serde_core"
1136
- version = "1.0.228"
1136
+ version = "1.0.229"
1137
1137
  source = "registry+https://github.com/rust-lang/crates.io-index"
1138
- checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1138
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1139
1139
  dependencies = [
1140
1140
  "serde_derive",
1141
1141
  ]
1142
1142
 
1143
1143
  [[package]]
1144
1144
  name = "serde_derive"
1145
- version = "1.0.228"
1145
+ version = "1.0.229"
1146
1146
  source = "registry+https://github.com/rust-lang/crates.io-index"
1147
- checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1147
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1148
1148
  dependencies = [
1149
1149
  "proc-macro2",
1150
1150
  "quote",
1151
- "syn",
1151
+ "syn 3.0.5",
1152
1152
  ]
1153
1153
 
1154
1154
  [[package]]
1155
1155
  name = "serde_json"
1156
- version = "1.0.150"
1156
+ version = "1.0.151"
1157
1157
  source = "registry+https://github.com/rust-lang/crates.io-index"
1158
- checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1158
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
1159
1159
  dependencies = [
1160
1160
  "itoa",
1161
1161
  "memchr",
@@ -1166,9 +1166,9 @@ dependencies = [
1166
1166
 
1167
1167
  [[package]]
1168
1168
  name = "sha1"
1169
- version = "0.10.6"
1169
+ version = "0.10.7"
1170
1170
  source = "registry+https://github.com/rust-lang/crates.io-index"
1171
- checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1171
+ checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
1172
1172
  dependencies = [
1173
1173
  "cfg-if",
1174
1174
  "cpufeatures",
@@ -1210,9 +1210,9 @@ dependencies = [
1210
1210
 
1211
1211
  [[package]]
1212
1212
  name = "smallvec"
1213
- version = "1.15.2"
1213
+ version = "1.16.1"
1214
1214
  source = "registry+https://github.com/rust-lang/crates.io-index"
1215
- checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1215
+ checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
1216
1216
 
1217
1217
  [[package]]
1218
1218
  name = "spin"
@@ -1253,6 +1253,17 @@ dependencies = [
1253
1253
  "unicode-ident",
1254
1254
  ]
1255
1255
 
1256
+ [[package]]
1257
+ name = "syn"
1258
+ version = "3.0.5"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
1261
+ dependencies = [
1262
+ "proc-macro2",
1263
+ "quote",
1264
+ "unicode-ident",
1265
+ ]
1266
+
1256
1267
  [[package]]
1257
1268
  name = "target-lexicon"
1258
1269
  version = "0.13.5"
@@ -1303,7 +1314,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1303
1314
  dependencies = [
1304
1315
  "proc-macro2",
1305
1316
  "quote",
1306
- "syn",
1317
+ "syn 2.0.119",
1307
1318
  ]
1308
1319
 
1309
1320
  [[package]]
@@ -1416,22 +1427,22 @@ dependencies = [
1416
1427
 
1417
1428
  [[package]]
1418
1429
  name = "zerocopy"
1419
- version = "0.8.54"
1430
+ version = "0.8.57"
1420
1431
  source = "registry+https://github.com/rust-lang/crates.io-index"
1421
- checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1432
+ checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
1422
1433
  dependencies = [
1423
1434
  "zerocopy-derive",
1424
1435
  ]
1425
1436
 
1426
1437
  [[package]]
1427
1438
  name = "zerocopy-derive"
1428
- version = "0.8.54"
1439
+ version = "0.8.57"
1429
1440
  source = "registry+https://github.com/rust-lang/crates.io-index"
1430
- checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1441
+ checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
1431
1442
  dependencies = [
1432
1443
  "proc-macro2",
1433
1444
  "quote",
1434
- "syn",
1445
+ "syn 2.0.119",
1435
1446
  ]
1436
1447
 
1437
1448
  [[package]]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: boreal-python
3
- Version: 1.2.0
3
+ Version: 1.3.0
4
4
  Summary: Python bindings to the boreal YARA scanner
5
5
  Home-Page: https://github.com/vthib/boreal/
6
6
  Requires-Python: >=3.11
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "boreal"
3
- version = "1.2.0"
3
+ version = "1.3.0"
4
4
  description = "A library to evaluate YARA rules, used to scan bytes for textual and binary pattern"
5
5
  repository = "https://github.com/vthib/boreal"
6
6
  readme = "README.md"
@@ -79,7 +79,7 @@ sha2 = { version = "0.10", optional = true }
79
79
  tlsh2 = { version = "1.1", optional = true }
80
80
 
81
81
  # "object" feature
82
- object = { version = "0.39", optional = true, default-features = false, features = ["read"] }
82
+ object = { version = "0.40", optional = true, default-features = false, features = ["read"] }
83
83
 
84
84
  # "authenticode" feature
85
85
  const-oid = { version = "0.9", optional = true, features = ["db"] }
@@ -102,14 +102,14 @@ magic = { version = "0.16", optional = true }
102
102
  serde_json = { version = "1.0", optional = true }
103
103
 
104
104
  # "serialize" feature
105
- borsh = { version = "1.6.0", optional = true }
105
+ borsh = { version = "1.8.0", optional = true }
106
106
 
107
107
  [target.'cfg(target_os = "linux")'.dependencies]
108
108
  libc = { version = "0.2", optional = true }
109
109
 
110
110
  [target.'cfg(target_os = "macos")'.dependencies]
111
111
  libc = { version = "0.2", optional = true }
112
- mach2 = { version = "0.6", optional = true }
112
+ mach2 = { version = "0.7", optional = true }
113
113
 
114
114
  [target.'cfg(windows)'.dependencies]
115
115
  windows-sys = { version = "0.61", optional = true, features = [
@@ -125,7 +125,7 @@ windows-sys = { version = "0.61", optional = true, features = [
125
125
  ] }
126
126
 
127
127
  [dev-dependencies]
128
- base64 = "0.22"
128
+ base64 = "0.23"
129
129
  glob = "0.3.1"
130
130
  tempfile.workspace = true
131
131
  yara = { version = "0.32", features = ["vendored"] }