boreal-python 0.1.0__tar.gz → 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. {boreal_python-0.1.0 → boreal_python-1.0.0}/Cargo.lock +42 -43
  2. {boreal_python-0.1.0 → boreal_python-1.0.0}/PKG-INFO +2 -1
  3. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/Cargo.toml +2 -2
  4. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/Cargo.toml +1 -1
  5. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/Cargo.toml +6 -3
  6. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/uv.lock +1 -1
  7. {boreal_python-0.1.0 → boreal_python-1.0.0}/pyproject.toml +1 -1
  8. {boreal_python-0.1.0 → boreal_python-1.0.0}/Cargo.toml +0 -0
  9. {boreal_python-0.1.0 → boreal_python-1.0.0}/README.md +0 -0
  10. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/LICENSE-APACHE +0 -0
  11. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/LICENSE-MIT +0 -0
  12. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/README.md +0 -0
  13. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/atoms.rs +0 -0
  14. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/bitmaps.rs +0 -0
  15. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/bytes_pool.rs +0 -0
  16. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/builder.rs +0 -0
  17. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/error.rs +0 -0
  18. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/expression.rs +0 -0
  19. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/external_symbol.rs +0 -0
  20. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/mod.rs +0 -0
  21. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/module.rs +0 -0
  22. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/params.rs +0 -0
  23. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/rule.rs +0 -0
  24. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/tests.rs +0 -0
  25. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/variable.rs +0 -0
  26. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/entrypoint.rs +0 -0
  27. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/error.rs +0 -0
  28. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/mod.rs +0 -0
  29. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/module.rs +0 -0
  30. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/read_integer.rs +0 -0
  31. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/variable.rs +0 -0
  32. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/lib.rs +0 -0
  33. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/analysis.rs +0 -0
  34. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/base64.rs +0 -0
  35. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/literals.rs +0 -0
  36. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/mod.rs +0 -0
  37. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/only_literals.rs +0 -0
  38. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/raw.rs +0 -0
  39. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/validator/dfa.rs +0 -0
  40. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/validator/simple.rs +0 -0
  41. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/validator.rs +0 -0
  42. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/widener.rs +0 -0
  43. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/memory.rs +0 -0
  44. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/console.rs +0 -0
  45. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/cuckoo.rs +0 -0
  46. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/dex.rs +0 -0
  47. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/dotnet.rs +0 -0
  48. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/elf.rs +0 -0
  49. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/hash.rs +0 -0
  50. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/macho.rs +0 -0
  51. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/magic.rs +0 -0
  52. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/math.rs +0 -0
  53. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/mod.rs +0 -0
  54. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/debug.rs +0 -0
  55. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/ord.rs +0 -0
  56. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
  57. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
  58. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/signatures.rs +0 -0
  59. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/utils.rs +0 -0
  60. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/version_info.rs +0 -0
  61. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe.rs +0 -0
  62. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/string.rs +0 -0
  63. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/time.rs +0 -0
  64. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/regex/hir.rs +0 -0
  65. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/regex/mod.rs +0 -0
  66. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/regex/visitor.rs +0 -0
  67. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/ac_scan.rs +0 -0
  68. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/error.rs +0 -0
  69. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/mod.rs +0 -0
  70. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/params.rs +0 -0
  71. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/default.rs +0 -0
  72. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/linux.rs +0 -0
  73. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/macos.rs +0 -0
  74. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/windows.rs +0 -0
  75. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys.rs +0 -0
  76. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process.rs +0 -0
  77. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/statistics.rs +0 -0
  78. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/test_helpers.rs +0 -0
  79. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/timeout.rs +0 -0
  80. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/wire.rs +0 -0
  81. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/LICENSE-APACHE +0 -0
  82. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/LICENSE-MIT +0 -0
  83. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/README.md +0 -0
  84. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/error.rs +0 -0
  85. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/boolean_expression.rs +0 -0
  86. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/common.rs +0 -0
  87. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/for_expression.rs +0 -0
  88. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/identifier.rs +0 -0
  89. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/mod.rs +0 -0
  90. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/primary_expression.rs +0 -0
  91. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/read_integer.rs +0 -0
  92. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/string_expression.rs +0 -0
  93. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/file.rs +0 -0
  94. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/hex_string.rs +0 -0
  95. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/lib.rs +0 -0
  96. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/nom_recipes.rs +0 -0
  97. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/number.rs +0 -0
  98. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/regex.rs +0 -0
  99. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/rule.rs +0 -0
  100. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/string.rs +0 -0
  101. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/test_helpers.rs +0 -0
  102. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/types.rs +0 -0
  103. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/README.md +0 -0
  104. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/boreal.pyi +0 -0
  105. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/README.md +0 -0
  106. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/api.md +0 -0
  107. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/griffe_customization.py +0 -0
  108. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/yara_compatibility_mode.md +0 -0
  109. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/mkdocs.yml +0 -0
  110. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/lib.rs +0 -0
  111. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/module.rs +0 -0
  112. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/rule.rs +0 -0
  113. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/rule_match.rs +0 -0
  114. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/rule_string.rs +0 -0
  115. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/scanner.rs +0 -0
  116. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/string_match_instance.rs +0 -0
  117. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/string_matches.rs +0 -0
  118. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/conftest.py +0 -0
  119. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_api.py +0 -0
  120. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_compile.py +0 -0
  121. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_scanner.py +0 -0
  122. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_types.py +0 -0
  123. {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/utils.py +0 -0
@@ -123,9 +123,9 @@ dependencies = [
123
123
 
124
124
  [[package]]
125
125
  name = "bitflags"
126
- version = "2.9.0"
126
+ version = "2.9.1"
127
127
  source = "registry+https://github.com/rust-lang/crates.io-index"
128
- checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
128
+ checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
129
129
 
130
130
  [[package]]
131
131
  name = "block-buffer"
@@ -138,7 +138,7 @@ dependencies = [
138
138
 
139
139
  [[package]]
140
140
  name = "boreal"
141
- version = "0.9.0"
141
+ version = "1.0.0"
142
142
  dependencies = [
143
143
  "aho-corasick",
144
144
  "base64",
@@ -174,7 +174,7 @@ dependencies = [
174
174
 
175
175
  [[package]]
176
176
  name = "boreal-cli"
177
- version = "0.9.0"
177
+ version = "1.0.0"
178
178
  dependencies = [
179
179
  "assert_cmd",
180
180
  "boreal",
@@ -189,7 +189,7 @@ dependencies = [
189
189
 
190
190
  [[package]]
191
191
  name = "boreal-parser"
192
- version = "0.6.0"
192
+ version = "1.0.0"
193
193
  dependencies = [
194
194
  "codespan-reporting",
195
195
  "nom 8.0.0",
@@ -197,7 +197,7 @@ dependencies = [
197
197
 
198
198
  [[package]]
199
199
  name = "boreal-py"
200
- version = "0.1.0"
200
+ version = "1.0.0"
201
201
  dependencies = [
202
202
  "boreal",
203
203
  "pyo3",
@@ -239,9 +239,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
239
239
 
240
240
  [[package]]
241
241
  name = "cc"
242
- version = "1.2.19"
242
+ version = "1.2.23"
243
243
  source = "registry+https://github.com/rust-lang/crates.io-index"
244
- checksum = "8e3a13707ac958681c13b39b458c073d0d9bc8a22cb1b2f4c8e55eb72c13f362"
244
+ checksum = "5f4ac86a9e5bc1e2b3449ab9d7d3a6a405e3d1bb28d7b9be8614f55846ae3766"
245
245
  dependencies = [
246
246
  "shlex",
247
247
  ]
@@ -280,18 +280,18 @@ dependencies = [
280
280
 
281
281
  [[package]]
282
282
  name = "clap"
283
- version = "4.5.37"
283
+ version = "4.5.38"
284
284
  source = "registry+https://github.com/rust-lang/crates.io-index"
285
- checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
285
+ checksum = "ed93b9805f8ba930df42c2590f05453d5ec36cbb85d018868a5b24d31f6ac000"
286
286
  dependencies = [
287
287
  "clap_builder",
288
288
  ]
289
289
 
290
290
  [[package]]
291
291
  name = "clap_builder"
292
- version = "4.5.37"
292
+ version = "4.5.38"
293
293
  source = "registry+https://github.com/rust-lang/crates.io-index"
294
- checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
294
+ checksum = "379026ff283facf611b0ea629334361c4211d1b12ee01024eec1591133b04120"
295
295
  dependencies = [
296
296
  "anstream",
297
297
  "anstyle",
@@ -481,9 +481,9 @@ dependencies = [
481
481
 
482
482
  [[package]]
483
483
  name = "errno"
484
- version = "0.3.11"
484
+ version = "0.3.12"
485
485
  source = "registry+https://github.com/rust-lang/crates.io-index"
486
- checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e"
486
+ checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
487
487
  dependencies = [
488
488
  "libc",
489
489
  "windows-sys",
@@ -524,9 +524,9 @@ dependencies = [
524
524
 
525
525
  [[package]]
526
526
  name = "getrandom"
527
- version = "0.3.2"
527
+ version = "0.3.3"
528
528
  source = "registry+https://github.com/rust-lang/crates.io-index"
529
- checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
529
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
530
530
  dependencies = [
531
531
  "cfg-if",
532
532
  "libc",
@@ -613,9 +613,9 @@ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
613
613
 
614
614
  [[package]]
615
615
  name = "libloading"
616
- version = "0.8.6"
616
+ version = "0.8.7"
617
617
  source = "registry+https://github.com/rust-lang/crates.io-index"
618
- checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
618
+ checksum = "6a793df0d7afeac54f95b471d3af7f0d4fb975699f972341a4b76988d49cdf0c"
619
619
  dependencies = [
620
620
  "cfg-if",
621
621
  "windows-targets",
@@ -623,9 +623,9 @@ dependencies = [
623
623
 
624
624
  [[package]]
625
625
  name = "libm"
626
- version = "0.2.11"
626
+ version = "0.2.15"
627
627
  source = "registry+https://github.com/rust-lang/crates.io-index"
628
- checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
628
+ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
629
629
 
630
630
  [[package]]
631
631
  name = "linux-raw-sys"
@@ -908,11 +908,10 @@ dependencies = [
908
908
 
909
909
  [[package]]
910
910
  name = "pyo3"
911
- version = "0.24.1"
911
+ version = "0.25.0"
912
912
  source = "registry+https://github.com/rust-lang/crates.io-index"
913
- checksum = "17da310086b068fbdcefbba30aeb3721d5bb9af8db4987d6735b2183ca567229"
913
+ checksum = "f239d656363bcee73afef85277f1b281e8ac6212a1d42aa90e55b90ed43c47a4"
914
914
  dependencies = [
915
- "cfg-if",
916
915
  "indoc",
917
916
  "libc",
918
917
  "memoffset",
@@ -926,9 +925,9 @@ dependencies = [
926
925
 
927
926
  [[package]]
928
927
  name = "pyo3-build-config"
929
- version = "0.24.1"
928
+ version = "0.25.0"
930
929
  source = "registry+https://github.com/rust-lang/crates.io-index"
931
- checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
930
+ checksum = "755ea671a1c34044fa165247aaf6f419ca39caa6003aee791a0df2713d8f1b6d"
932
931
  dependencies = [
933
932
  "once_cell",
934
933
  "target-lexicon",
@@ -936,9 +935,9 @@ dependencies = [
936
935
 
937
936
  [[package]]
938
937
  name = "pyo3-ffi"
939
- version = "0.24.1"
938
+ version = "0.25.0"
940
939
  source = "registry+https://github.com/rust-lang/crates.io-index"
941
- checksum = "05280526e1dbf6b420062f3ef228b78c0c54ba94e157f5cb724a609d0f2faabc"
940
+ checksum = "fc95a2e67091e44791d4ea300ff744be5293f394f1bafd9f78c080814d35956e"
942
941
  dependencies = [
943
942
  "libc",
944
943
  "pyo3-build-config",
@@ -946,9 +945,9 @@ dependencies = [
946
945
 
947
946
  [[package]]
948
947
  name = "pyo3-macros"
949
- version = "0.24.1"
948
+ version = "0.25.0"
950
949
  source = "registry+https://github.com/rust-lang/crates.io-index"
951
- checksum = "5c3ce5686aa4d3f63359a5100c62a127c9f15e8398e5fdeb5deef1fed5cd5f44"
950
+ checksum = "a179641d1b93920829a62f15e87c0ed791b6c8db2271ba0fd7c2686090510214"
952
951
  dependencies = [
953
952
  "proc-macro2",
954
953
  "pyo3-macros-backend",
@@ -958,9 +957,9 @@ dependencies = [
958
957
 
959
958
  [[package]]
960
959
  name = "pyo3-macros-backend"
961
- version = "0.24.1"
960
+ version = "0.25.0"
962
961
  source = "registry+https://github.com/rust-lang/crates.io-index"
963
- checksum = "f4cf6faa0cbfb0ed08e89beb8103ae9724eb4750e3a78084ba4017cbe94f3855"
962
+ checksum = "9dff85ebcaab8c441b0e3f7ae40a6963ecea8a9f5e74f647e33fcf5ec9a1e89e"
964
963
  dependencies = [
965
964
  "heck",
966
965
  "proc-macro2",
@@ -1077,9 +1076,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1077
1076
 
1078
1077
  [[package]]
1079
1078
  name = "rustix"
1080
- version = "1.0.5"
1079
+ version = "1.0.7"
1081
1080
  source = "registry+https://github.com/rust-lang/crates.io-index"
1082
- checksum = "d97817398dd4bb2e6da002002db259209759911da105da92bec29ccb12cf58bf"
1081
+ checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1083
1082
  dependencies = [
1084
1083
  "bitflags",
1085
1084
  "errno",
@@ -1162,9 +1161,9 @@ dependencies = [
1162
1161
 
1163
1162
  [[package]]
1164
1163
  name = "sha2"
1165
- version = "0.10.8"
1164
+ version = "0.10.9"
1166
1165
  source = "registry+https://github.com/rust-lang/crates.io-index"
1167
- checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1166
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1168
1167
  dependencies = [
1169
1168
  "cfg-if",
1170
1169
  "cpufeatures",
@@ -1223,9 +1222,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1223
1222
 
1224
1223
  [[package]]
1225
1224
  name = "syn"
1226
- version = "2.0.100"
1225
+ version = "2.0.101"
1227
1226
  source = "registry+https://github.com/rust-lang/crates.io-index"
1228
- checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
1227
+ checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1229
1228
  dependencies = [
1230
1229
  "proc-macro2",
1231
1230
  "quote",
@@ -1240,9 +1239,9 @@ checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a"
1240
1239
 
1241
1240
  [[package]]
1242
1241
  name = "tempfile"
1243
- version = "3.19.1"
1242
+ version = "3.20.0"
1244
1243
  source = "registry+https://github.com/rust-lang/crates.io-index"
1245
- checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf"
1244
+ checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1246
1245
  dependencies = [
1247
1246
  "fastrand",
1248
1247
  "getrandom",
@@ -1478,18 +1477,18 @@ dependencies = [
1478
1477
 
1479
1478
  [[package]]
1480
1479
  name = "zerocopy"
1481
- version = "0.8.24"
1480
+ version = "0.8.25"
1482
1481
  source = "registry+https://github.com/rust-lang/crates.io-index"
1483
- checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
1482
+ checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
1484
1483
  dependencies = [
1485
1484
  "zerocopy-derive",
1486
1485
  ]
1487
1486
 
1488
1487
  [[package]]
1489
1488
  name = "zerocopy-derive"
1490
- version = "0.8.24"
1489
+ version = "0.8.25"
1491
1490
  source = "registry+https://github.com/rust-lang/crates.io-index"
1492
- checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
1491
+ checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
1493
1492
  dependencies = [
1494
1493
  "proc-macro2",
1495
1494
  "quote",
@@ -1,8 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: boreal-python
3
- Version: 0.1.0
3
+ Version: 1.0.0
4
4
  Summary: Python bindings to the boreal YARA scanner
5
5
  Keywords: boreal,yara,string-matching,scan,python
6
+ Home-Page: https://github.com/vthib/boreal/
6
7
  License: MIT OR Apache-2.0
7
8
  Requires-Python: >=3.11
8
9
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "boreal"
3
- version = "0.9.0"
3
+ version = "1.0.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"
@@ -58,7 +58,7 @@ profiling = []
58
58
  serialize = ["dep:borsh"]
59
59
 
60
60
  [dependencies]
61
- boreal-parser = { path = "../boreal-parser", version = "0.6.0" }
61
+ boreal-parser = { path = "../boreal-parser", version = "1.0.0" }
62
62
 
63
63
  # Proper error reporting on compilation
64
64
  codespan-reporting = "0.12"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "boreal-parser"
3
- version = "0.6.0"
3
+ version = "1.0.0"
4
4
  description = "A parser library for YARA files, intended for use with the boreal library"
5
5
  repository = "https://github.com/vthib/boreal"
6
6
  readme = "README.md"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "boreal-py"
3
- version = "0.1.0"
3
+ version = "1.0.0"
4
4
  description = "Python bindings to the boreal YARA scanner"
5
5
  repository = "https://github.com/vthib/boreal"
6
6
  readme = "README.md"
@@ -11,6 +11,9 @@ edition = "2021"
11
11
  # MSRV
12
12
  rust-version = "1.66"
13
13
 
14
+ homepage = "https://github.com/vthib/boreal/"
15
+ documentation = "https://vthib.github.io/boreal/boreal-py/dev/yara_compatibility_mode/"
16
+
14
17
  [lib]
15
18
  name = "boreal"
16
19
  crate-type = ["cdylib"]
@@ -25,9 +28,9 @@ serialize = ["boreal/serialize"]
25
28
  authenticode-verify = ["boreal/authenticode-verify"]
26
29
 
27
30
  [dependencies]
28
- boreal = { path = "../boreal", version = "0.9.0", features = ["memmap"] }
31
+ boreal = { path = "../boreal", version = "1.0.0", features = ["memmap"] }
29
32
 
30
- pyo3 = { version = "0.24", features = ["abi3", "abi3-py311", "extension-module", "macros"] }
33
+ pyo3 = { version = "0.25", features = ["abi3", "abi3-py311", "extension-module", "macros"] }
31
34
 
32
35
  [lints]
33
36
  workspace = true
@@ -26,7 +26,7 @@ wheels = [
26
26
 
27
27
  [[package]]
28
28
  name = "boreal-python"
29
- version = "0.1.0"
29
+ version = "1.0.0"
30
30
  source = { editable = "." }
31
31
 
32
32
  [package.dev-dependencies]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "boreal-python"
3
- version = "0.1.0"
3
+ version = "1.0.0"
4
4
  readme = "README.md"
5
5
  description = "Python bindings to the boreal YARA scanner"
6
6
  requires-python = ">=3.11"
File without changes
File without changes