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.
- {boreal_python-0.1.0 → boreal_python-1.0.0}/Cargo.lock +42 -43
- {boreal_python-0.1.0 → boreal_python-1.0.0}/PKG-INFO +2 -1
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/Cargo.toml +2 -2
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/Cargo.toml +1 -1
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/Cargo.toml +6 -3
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/uv.lock +1 -1
- {boreal_python-0.1.0 → boreal_python-1.0.0}/pyproject.toml +1 -1
- {boreal_python-0.1.0 → boreal_python-1.0.0}/Cargo.toml +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/README.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/LICENSE-APACHE +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/LICENSE-MIT +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/README.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/atoms.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/bitmaps.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/bytes_pool.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/builder.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/error.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/expression.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/external_symbol.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/module.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/params.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/rule.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/tests.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/compiler/variable.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/entrypoint.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/error.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/module.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/read_integer.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/evaluator/variable.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/lib.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/analysis.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/base64.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/literals.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/only_literals.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/raw.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/validator/dfa.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/validator/simple.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/validator.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/matcher/widener.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/memory.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/console.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/cuckoo.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/dex.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/dotnet.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/elf.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/hash.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/macho.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/magic.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/math.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/debug.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/ord.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/signatures.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/utils.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe/version_info.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/pe.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/string.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/module/time.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/regex/hir.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/regex/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/regex/visitor.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/ac_scan.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/error.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/params.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/default.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/linux.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/macos.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys/windows.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process/sys.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/scanner/process.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/statistics.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/test_helpers.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/timeout.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal/src/wire.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/LICENSE-APACHE +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/LICENSE-MIT +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/README.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/error.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/boolean_expression.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/common.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/for_expression.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/identifier.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/mod.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/primary_expression.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/read_integer.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/string_expression.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/file.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/hex_string.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/lib.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/nom_recipes.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/number.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/regex.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/rule.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/string.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/test_helpers.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/types.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/README.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/boreal.pyi +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/README.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/api.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/griffe_customization.py +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/docs/yara_compatibility_mode.md +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/mkdocs.yml +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/lib.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/module.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/rule.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/rule_match.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/rule_string.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/scanner.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/string_match_instance.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/src/string_matches.rs +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/conftest.py +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_api.py +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_compile.py +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_scanner.py +0 -0
- {boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-py/tests/test_types.py +0 -0
- {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.
|
|
126
|
+
version = "2.9.1"
|
|
127
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
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.
|
|
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.
|
|
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.
|
|
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 = "
|
|
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.
|
|
242
|
+
version = "1.2.23"
|
|
243
243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
-
checksum = "
|
|
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.
|
|
283
|
+
version = "4.5.38"
|
|
284
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
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.
|
|
292
|
+
version = "4.5.38"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
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.
|
|
484
|
+
version = "0.3.12"
|
|
485
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
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.
|
|
527
|
+
version = "0.3.3"
|
|
528
528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
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.
|
|
616
|
+
version = "0.8.7"
|
|
617
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
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.
|
|
626
|
+
version = "0.2.15"
|
|
627
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
-
checksum = "
|
|
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.
|
|
911
|
+
version = "0.25.0"
|
|
912
912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
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.
|
|
928
|
+
version = "0.25.0"
|
|
930
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
-
checksum = "
|
|
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.
|
|
938
|
+
version = "0.25.0"
|
|
940
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
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.
|
|
948
|
+
version = "0.25.0"
|
|
950
949
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
-
checksum = "
|
|
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.
|
|
960
|
+
version = "0.25.0"
|
|
962
961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
963
|
-
checksum = "
|
|
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.
|
|
1079
|
+
version = "1.0.7"
|
|
1081
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
-
checksum = "
|
|
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.
|
|
1164
|
+
version = "0.10.9"
|
|
1166
1165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
-
checksum = "
|
|
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.
|
|
1225
|
+
version = "2.0.101"
|
|
1227
1226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1228
|
-
checksum = "
|
|
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.
|
|
1242
|
+
version = "3.20.0"
|
|
1244
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
-
checksum = "
|
|
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.
|
|
1480
|
+
version = "0.8.25"
|
|
1482
1481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "
|
|
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.
|
|
1489
|
+
version = "0.8.25"
|
|
1491
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
-
checksum = "
|
|
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:
|
|
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.
|
|
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.
|
|
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-py"
|
|
3
|
-
version = "
|
|
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.
|
|
31
|
+
boreal = { path = "../boreal", version = "1.0.0", features = ["memmap"] }
|
|
29
32
|
|
|
30
|
-
pyo3 = { version = "0.
|
|
33
|
+
pyo3 = { version = "0.25", features = ["abi3", "abi3-py311", "extension-module", "macros"] }
|
|
31
34
|
|
|
32
35
|
[lints]
|
|
33
36
|
workspace = true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/boolean_expression.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/primary_expression.rs
RENAMED
|
File without changes
|
|
File without changes
|
{boreal_python-0.1.0 → boreal_python-1.0.0}/boreal-parser/src/expression/string_expression.rs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|