boreal-python 1.0.0__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {boreal_python-1.0.0 → boreal_python-1.1.0}/Cargo.lock +229 -229
- {boreal_python-1.0.0 → boreal_python-1.1.0}/PKG-INFO +3 -4
- {boreal_python-1.0.0/boreal-py/docs → boreal_python-1.1.0}/README.md +2 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/Cargo.toml +10 -10
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/README.md +7 -11
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/atoms.rs +10 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/bitmaps.rs +6 -4
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/mod.rs +15 -14
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/module.rs +4 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/params.rs +36 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/mod.rs +4 -5
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/module.rs +2 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/analysis.rs +5 -5
- boreal_python-1.1.0/boreal/src/matcher/literals.rs +1274 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/mod.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/memory.rs +2 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/dotnet.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/mod.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe.rs +44 -6
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/regex/visitor.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/ac_scan.rs +18 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/mod.rs +23 -8
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/params.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/linux.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/macos.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/windows.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/Cargo.toml +2 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/boolean_expression.rs +35 -16
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/mod.rs +0 -2
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/primary_expression.rs +22 -7
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/hex_string.rs +37 -12
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/lib.rs +15 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/regex.rs +39 -11
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/test_helpers.rs +0 -13
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/types.rs +71 -4
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/Cargo.toml +4 -3
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/README.md +2 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/boreal.pyi +2 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0/boreal-py/docs}/README.md +2 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/docs/yara_compatibility_mode.md +1 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/mkdocs.yml +9 -1
- boreal_python-1.1.0/boreal-py/scripts/test-parallel.sh +9 -0
- boreal_python-1.1.0/boreal-py/scripts/test.sh +5 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/lib.rs +51 -14
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/module.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/rule.rs +1 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/scanner.rs +49 -36
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_api.py +6 -1
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_compile.py +96 -14
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_scanner.py +200 -78
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/test_types.py +102 -53
- boreal_python-1.1.0/boreal-py/tests/utils.py +45 -0
- boreal_python-1.1.0/boreal-py/uv.lock +798 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/pyproject.toml +5 -2
- boreal_python-1.0.0/boreal/src/matcher/literals.rs +0 -901
- boreal_python-1.0.0/boreal-py/tests/utils.py +0 -16
- boreal_python-1.0.0/boreal-py/uv.lock +0 -694
- {boreal_python-1.0.0 → boreal_python-1.1.0}/Cargo.toml +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/LICENSE-APACHE +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/LICENSE-MIT +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/bytes_pool.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/builder.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/error.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/expression.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/external_symbol.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/rule.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/tests.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/compiler/variable.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/entrypoint.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/error.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/read_integer.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/evaluator/variable.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/lib.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/base64.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/only_literals.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/raw.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/validator/dfa.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/validator/simple.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/validator.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/matcher/widener.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/console.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/cuckoo.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/dex.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/elf.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/hash.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/macho.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/magic.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/math.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/debug.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/ord.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/signatures.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/utils.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/pe/version_info.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/string.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/module/time.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/regex/hir.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/regex/mod.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/error.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys/default.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process/sys.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/scanner/process.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/statistics.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/test_helpers.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/timeout.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal/src/wire.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/LICENSE-APACHE +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/LICENSE-MIT +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/README.md +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/error.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/common.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/for_expression.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/identifier.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/read_integer.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/expression/string_expression.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/file.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/nom_recipes.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/number.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/rule.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-parser/src/string.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/docs/api.md +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/docs/griffe_customization.py +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/rule_match.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/rule_string.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/string_match_instance.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/src/string_matches.rs +0 -0
- {boreal_python-1.0.0 → boreal_python-1.1.0}/boreal-py/tests/conftest.py +0 -0
|
@@ -4,18 +4,18 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aho-corasick"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.4"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
15
|
name = "anstream"
|
|
16
|
-
version = "0.6.
|
|
16
|
+
version = "0.6.21"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
19
19
|
dependencies = [
|
|
20
20
|
"anstyle",
|
|
21
21
|
"anstyle-parse",
|
|
@@ -28,48 +28,47 @@ dependencies = [
|
|
|
28
28
|
|
|
29
29
|
[[package]]
|
|
30
30
|
name = "anstyle"
|
|
31
|
-
version = "1.0.
|
|
31
|
+
version = "1.0.13"
|
|
32
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "
|
|
33
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
34
34
|
|
|
35
35
|
[[package]]
|
|
36
36
|
name = "anstyle-parse"
|
|
37
|
-
version = "0.2.
|
|
37
|
+
version = "0.2.7"
|
|
38
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
39
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
40
40
|
dependencies = [
|
|
41
41
|
"utf8parse",
|
|
42
42
|
]
|
|
43
43
|
|
|
44
44
|
[[package]]
|
|
45
45
|
name = "anstyle-query"
|
|
46
|
-
version = "1.1.
|
|
46
|
+
version = "1.1.5"
|
|
47
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
-
checksum = "
|
|
48
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
49
49
|
dependencies = [
|
|
50
50
|
"windows-sys",
|
|
51
51
|
]
|
|
52
52
|
|
|
53
53
|
[[package]]
|
|
54
54
|
name = "anstyle-wincon"
|
|
55
|
-
version = "3.0.
|
|
55
|
+
version = "3.0.11"
|
|
56
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
-
checksum = "
|
|
57
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
58
58
|
dependencies = [
|
|
59
59
|
"anstyle",
|
|
60
|
-
"
|
|
60
|
+
"once_cell_polyfill",
|
|
61
61
|
"windows-sys",
|
|
62
62
|
]
|
|
63
63
|
|
|
64
64
|
[[package]]
|
|
65
65
|
name = "assert_cmd"
|
|
66
|
-
version = "2.
|
|
66
|
+
version = "2.1.1"
|
|
67
67
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
-
checksum = "
|
|
68
|
+
checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
|
|
69
69
|
dependencies = [
|
|
70
70
|
"anstyle",
|
|
71
71
|
"bstr",
|
|
72
|
-
"doc-comment",
|
|
73
72
|
"libc",
|
|
74
73
|
"predicates",
|
|
75
74
|
"predicates-core",
|
|
@@ -79,9 +78,9 @@ dependencies = [
|
|
|
79
78
|
|
|
80
79
|
[[package]]
|
|
81
80
|
name = "autocfg"
|
|
82
|
-
version = "1.
|
|
81
|
+
version = "1.5.0"
|
|
83
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
-
checksum = "
|
|
83
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
85
84
|
|
|
86
85
|
[[package]]
|
|
87
86
|
name = "base16ct"
|
|
@@ -123,9 +122,9 @@ dependencies = [
|
|
|
123
122
|
|
|
124
123
|
[[package]]
|
|
125
124
|
name = "bitflags"
|
|
126
|
-
version = "2.
|
|
125
|
+
version = "2.10.0"
|
|
127
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
-
checksum = "
|
|
127
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
129
128
|
|
|
130
129
|
[[package]]
|
|
131
130
|
name = "block-buffer"
|
|
@@ -138,7 +137,7 @@ dependencies = [
|
|
|
138
137
|
|
|
139
138
|
[[package]]
|
|
140
139
|
name = "boreal"
|
|
141
|
-
version = "1.
|
|
140
|
+
version = "1.1.0"
|
|
142
141
|
dependencies = [
|
|
143
142
|
"aho-corasick",
|
|
144
143
|
"base64",
|
|
@@ -174,7 +173,7 @@ dependencies = [
|
|
|
174
173
|
|
|
175
174
|
[[package]]
|
|
176
175
|
name = "boreal-cli"
|
|
177
|
-
version = "1.
|
|
176
|
+
version = "1.1.0"
|
|
178
177
|
dependencies = [
|
|
179
178
|
"assert_cmd",
|
|
180
179
|
"boreal",
|
|
@@ -189,7 +188,7 @@ dependencies = [
|
|
|
189
188
|
|
|
190
189
|
[[package]]
|
|
191
190
|
name = "boreal-parser"
|
|
192
|
-
version = "1.
|
|
191
|
+
version = "1.1.0"
|
|
193
192
|
dependencies = [
|
|
194
193
|
"codespan-reporting",
|
|
195
194
|
"nom 8.0.0",
|
|
@@ -197,9 +196,10 @@ dependencies = [
|
|
|
197
196
|
|
|
198
197
|
[[package]]
|
|
199
198
|
name = "boreal-py"
|
|
200
|
-
version = "1.
|
|
199
|
+
version = "1.1.0"
|
|
201
200
|
dependencies = [
|
|
202
201
|
"boreal",
|
|
202
|
+
"parking_lot",
|
|
203
203
|
"pyo3",
|
|
204
204
|
]
|
|
205
205
|
|
|
@@ -222,27 +222,22 @@ dependencies = [
|
|
|
222
222
|
|
|
223
223
|
[[package]]
|
|
224
224
|
name = "bstr"
|
|
225
|
-
version = "1.12.
|
|
225
|
+
version = "1.12.1"
|
|
226
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
227
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
228
228
|
dependencies = [
|
|
229
229
|
"memchr",
|
|
230
230
|
"regex-automata",
|
|
231
231
|
"serde",
|
|
232
232
|
]
|
|
233
233
|
|
|
234
|
-
[[package]]
|
|
235
|
-
name = "byteorder"
|
|
236
|
-
version = "1.5.0"
|
|
237
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
239
|
-
|
|
240
234
|
[[package]]
|
|
241
235
|
name = "cc"
|
|
242
|
-
version = "1.2.
|
|
236
|
+
version = "1.2.47"
|
|
243
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
-
checksum = "
|
|
238
|
+
checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07"
|
|
245
239
|
dependencies = [
|
|
240
|
+
"find-msvc-tools",
|
|
246
241
|
"shlex",
|
|
247
242
|
]
|
|
248
243
|
|
|
@@ -257,9 +252,9 @@ dependencies = [
|
|
|
257
252
|
|
|
258
253
|
[[package]]
|
|
259
254
|
name = "cfg-if"
|
|
260
|
-
version = "1.0.
|
|
255
|
+
version = "1.0.4"
|
|
261
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
-
checksum = "
|
|
257
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
263
258
|
|
|
264
259
|
[[package]]
|
|
265
260
|
name = "cfg_aliases"
|
|
@@ -280,18 +275,18 @@ dependencies = [
|
|
|
280
275
|
|
|
281
276
|
[[package]]
|
|
282
277
|
name = "clap"
|
|
283
|
-
version = "4.5.
|
|
278
|
+
version = "4.5.53"
|
|
284
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
280
|
+
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
|
|
286
281
|
dependencies = [
|
|
287
282
|
"clap_builder",
|
|
288
283
|
]
|
|
289
284
|
|
|
290
285
|
[[package]]
|
|
291
286
|
name = "clap_builder"
|
|
292
|
-
version = "4.5.
|
|
287
|
+
version = "4.5.53"
|
|
293
288
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
289
|
+
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
|
|
295
290
|
dependencies = [
|
|
296
291
|
"anstream",
|
|
297
292
|
"anstyle",
|
|
@@ -301,15 +296,15 @@ dependencies = [
|
|
|
301
296
|
|
|
302
297
|
[[package]]
|
|
303
298
|
name = "clap_lex"
|
|
304
|
-
version = "0.7.
|
|
299
|
+
version = "0.7.6"
|
|
305
300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
-
checksum = "
|
|
301
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
307
302
|
|
|
308
303
|
[[package]]
|
|
309
304
|
name = "codespan-reporting"
|
|
310
|
-
version = "0.
|
|
305
|
+
version = "0.13.1"
|
|
311
306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
-
checksum = "
|
|
307
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
313
308
|
dependencies = [
|
|
314
309
|
"serde",
|
|
315
310
|
"termcolor",
|
|
@@ -318,9 +313,9 @@ dependencies = [
|
|
|
318
313
|
|
|
319
314
|
[[package]]
|
|
320
315
|
name = "colorchoice"
|
|
321
|
-
version = "1.0.
|
|
316
|
+
version = "1.0.4"
|
|
322
317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
318
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
324
319
|
|
|
325
320
|
[[package]]
|
|
326
321
|
name = "const-oid"
|
|
@@ -339,9 +334,9 @@ dependencies = [
|
|
|
339
334
|
|
|
340
335
|
[[package]]
|
|
341
336
|
name = "crc32fast"
|
|
342
|
-
version = "1.
|
|
337
|
+
version = "1.5.0"
|
|
343
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
339
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
345
340
|
dependencies = [
|
|
346
341
|
"cfg-if",
|
|
347
342
|
]
|
|
@@ -424,12 +419,6 @@ dependencies = [
|
|
|
424
419
|
"subtle",
|
|
425
420
|
]
|
|
426
421
|
|
|
427
|
-
[[package]]
|
|
428
|
-
name = "doc-comment"
|
|
429
|
-
version = "0.3.3"
|
|
430
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
-
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
432
|
-
|
|
433
422
|
[[package]]
|
|
434
423
|
name = "dsa"
|
|
435
424
|
version = "0.6.3"
|
|
@@ -481,9 +470,9 @@ dependencies = [
|
|
|
481
470
|
|
|
482
471
|
[[package]]
|
|
483
472
|
name = "errno"
|
|
484
|
-
version = "0.3.
|
|
473
|
+
version = "0.3.14"
|
|
485
474
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
475
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
487
476
|
dependencies = [
|
|
488
477
|
"libc",
|
|
489
478
|
"windows-sys",
|
|
@@ -505,6 +494,12 @@ dependencies = [
|
|
|
505
494
|
"subtle",
|
|
506
495
|
]
|
|
507
496
|
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "find-msvc-tools"
|
|
499
|
+
version = "0.1.5"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
502
|
+
|
|
508
503
|
[[package]]
|
|
509
504
|
name = "fs_extra"
|
|
510
505
|
version = "1.3.0"
|
|
@@ -513,9 +508,9 @@ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
|
513
508
|
|
|
514
509
|
[[package]]
|
|
515
510
|
name = "generic-array"
|
|
516
|
-
version = "0.14.
|
|
511
|
+
version = "0.14.9"
|
|
517
512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
-
checksum = "
|
|
513
|
+
checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
|
|
519
514
|
dependencies = [
|
|
520
515
|
"typenum",
|
|
521
516
|
"version_check",
|
|
@@ -524,21 +519,21 @@ dependencies = [
|
|
|
524
519
|
|
|
525
520
|
[[package]]
|
|
526
521
|
name = "getrandom"
|
|
527
|
-
version = "0.3.
|
|
522
|
+
version = "0.3.4"
|
|
528
523
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
524
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
530
525
|
dependencies = [
|
|
531
526
|
"cfg-if",
|
|
532
527
|
"libc",
|
|
533
528
|
"r-efi",
|
|
534
|
-
"
|
|
529
|
+
"wasip2",
|
|
535
530
|
]
|
|
536
531
|
|
|
537
532
|
[[package]]
|
|
538
533
|
name = "glob"
|
|
539
|
-
version = "0.3.
|
|
534
|
+
version = "0.3.3"
|
|
540
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
-
checksum = "
|
|
536
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
542
537
|
|
|
543
538
|
[[package]]
|
|
544
539
|
name = "group"
|
|
@@ -574,15 +569,18 @@ dependencies = [
|
|
|
574
569
|
|
|
575
570
|
[[package]]
|
|
576
571
|
name = "indoc"
|
|
577
|
-
version = "2.0.
|
|
572
|
+
version = "2.0.7"
|
|
578
573
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
574
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"rustversion",
|
|
577
|
+
]
|
|
580
578
|
|
|
581
579
|
[[package]]
|
|
582
580
|
name = "is_terminal_polyfill"
|
|
583
|
-
version = "1.70.
|
|
581
|
+
version = "1.70.2"
|
|
584
582
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
-
checksum = "
|
|
583
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
586
584
|
|
|
587
585
|
[[package]]
|
|
588
586
|
name = "itoa"
|
|
@@ -607,18 +605,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
607
605
|
|
|
608
606
|
[[package]]
|
|
609
607
|
name = "libc"
|
|
610
|
-
version = "0.2.
|
|
608
|
+
version = "0.2.177"
|
|
611
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
610
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
613
611
|
|
|
614
612
|
[[package]]
|
|
615
613
|
name = "libloading"
|
|
616
|
-
version = "0.8.
|
|
614
|
+
version = "0.8.9"
|
|
617
615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
616
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
619
617
|
dependencies = [
|
|
620
618
|
"cfg-if",
|
|
621
|
-
"windows-
|
|
619
|
+
"windows-link",
|
|
622
620
|
]
|
|
623
621
|
|
|
624
622
|
[[package]]
|
|
@@ -629,29 +627,33 @@ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
|
629
627
|
|
|
630
628
|
[[package]]
|
|
631
629
|
name = "linux-raw-sys"
|
|
632
|
-
version = "0.
|
|
630
|
+
version = "0.11.0"
|
|
633
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
-
checksum = "
|
|
632
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
635
633
|
|
|
636
634
|
[[package]]
|
|
637
|
-
name = "
|
|
638
|
-
version = "0.4.
|
|
635
|
+
name = "lock_api"
|
|
636
|
+
version = "0.4.14"
|
|
639
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
-
checksum = "
|
|
638
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
641
639
|
dependencies = [
|
|
642
|
-
"
|
|
640
|
+
"scopeguard",
|
|
643
641
|
]
|
|
644
642
|
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "mach2"
|
|
645
|
+
version = "0.6.0"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "dae608c151f68243f2b000364e1f7b186d9c29845f7d2d85bd31b9ad77ad552b"
|
|
648
|
+
|
|
645
649
|
[[package]]
|
|
646
650
|
name = "magic"
|
|
647
|
-
version = "0.16.
|
|
651
|
+
version = "0.16.7"
|
|
648
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
-
checksum = "
|
|
653
|
+
checksum = "50ecbc2953846d9a3f8f6ed0700e66e49e5ad696eefb4e17fbaebbf457e1e752"
|
|
650
654
|
dependencies = [
|
|
651
655
|
"bitflags",
|
|
652
|
-
"libc",
|
|
653
656
|
"magic-sys",
|
|
654
|
-
"thiserror",
|
|
655
657
|
]
|
|
656
658
|
|
|
657
659
|
[[package]]
|
|
@@ -676,15 +678,15 @@ dependencies = [
|
|
|
676
678
|
|
|
677
679
|
[[package]]
|
|
678
680
|
name = "memchr"
|
|
679
|
-
version = "2.7.
|
|
681
|
+
version = "2.7.6"
|
|
680
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
-
checksum = "
|
|
683
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
682
684
|
|
|
683
685
|
[[package]]
|
|
684
686
|
name = "memmap2"
|
|
685
|
-
version = "0.9.
|
|
687
|
+
version = "0.9.9"
|
|
686
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
689
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
688
690
|
dependencies = [
|
|
689
691
|
"libc",
|
|
690
692
|
]
|
|
@@ -725,11 +727,10 @@ dependencies = [
|
|
|
725
727
|
|
|
726
728
|
[[package]]
|
|
727
729
|
name = "num-bigint-dig"
|
|
728
|
-
version = "0.8.
|
|
730
|
+
version = "0.8.6"
|
|
729
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
-
checksum = "
|
|
732
|
+
checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
|
|
731
733
|
dependencies = [
|
|
732
|
-
"byteorder",
|
|
733
734
|
"lazy_static",
|
|
734
735
|
"libm",
|
|
735
736
|
"num-integer",
|
|
@@ -772,9 +773,9 @@ dependencies = [
|
|
|
772
773
|
|
|
773
774
|
[[package]]
|
|
774
775
|
name = "object"
|
|
775
|
-
version = "0.
|
|
776
|
+
version = "0.37.3"
|
|
776
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "
|
|
778
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
778
779
|
dependencies = [
|
|
779
780
|
"memchr",
|
|
780
781
|
]
|
|
@@ -785,6 +786,12 @@ version = "1.21.3"
|
|
|
785
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
787
|
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
787
788
|
|
|
789
|
+
[[package]]
|
|
790
|
+
name = "once_cell_polyfill"
|
|
791
|
+
version = "1.70.2"
|
|
792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
793
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
794
|
+
|
|
788
795
|
[[package]]
|
|
789
796
|
name = "p256"
|
|
790
797
|
version = "0.13.2"
|
|
@@ -809,6 +816,29 @@ dependencies = [
|
|
|
809
816
|
"sha2",
|
|
810
817
|
]
|
|
811
818
|
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "parking_lot"
|
|
821
|
+
version = "0.12.5"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"lock_api",
|
|
826
|
+
"parking_lot_core",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "parking_lot_core"
|
|
831
|
+
version = "0.9.12"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"cfg-if",
|
|
836
|
+
"libc",
|
|
837
|
+
"redox_syscall",
|
|
838
|
+
"smallvec",
|
|
839
|
+
"windows-link",
|
|
840
|
+
]
|
|
841
|
+
|
|
812
842
|
[[package]]
|
|
813
843
|
name = "peeking_take_while"
|
|
814
844
|
version = "0.1.2"
|
|
@@ -847,9 +877,9 @@ dependencies = [
|
|
|
847
877
|
|
|
848
878
|
[[package]]
|
|
849
879
|
name = "portable-atomic"
|
|
850
|
-
version = "1.11.
|
|
880
|
+
version = "1.11.1"
|
|
851
881
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
852
|
-
checksum = "
|
|
882
|
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
853
883
|
|
|
854
884
|
[[package]]
|
|
855
885
|
name = "ppv-lite86"
|
|
@@ -899,18 +929,18 @@ dependencies = [
|
|
|
899
929
|
|
|
900
930
|
[[package]]
|
|
901
931
|
name = "proc-macro2"
|
|
902
|
-
version = "1.0.
|
|
932
|
+
version = "1.0.103"
|
|
903
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
-
checksum = "
|
|
934
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
905
935
|
dependencies = [
|
|
906
936
|
"unicode-ident",
|
|
907
937
|
]
|
|
908
938
|
|
|
909
939
|
[[package]]
|
|
910
940
|
name = "pyo3"
|
|
911
|
-
version = "0.
|
|
941
|
+
version = "0.27.1"
|
|
912
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
-
checksum = "
|
|
943
|
+
checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
|
|
914
944
|
dependencies = [
|
|
915
945
|
"indoc",
|
|
916
946
|
"libc",
|
|
@@ -925,19 +955,18 @@ dependencies = [
|
|
|
925
955
|
|
|
926
956
|
[[package]]
|
|
927
957
|
name = "pyo3-build-config"
|
|
928
|
-
version = "0.
|
|
958
|
+
version = "0.27.1"
|
|
929
959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
-
checksum = "
|
|
960
|
+
checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
|
|
931
961
|
dependencies = [
|
|
932
|
-
"once_cell",
|
|
933
962
|
"target-lexicon",
|
|
934
963
|
]
|
|
935
964
|
|
|
936
965
|
[[package]]
|
|
937
966
|
name = "pyo3-ffi"
|
|
938
|
-
version = "0.
|
|
967
|
+
version = "0.27.1"
|
|
939
968
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
-
checksum = "
|
|
969
|
+
checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
|
|
941
970
|
dependencies = [
|
|
942
971
|
"libc",
|
|
943
972
|
"pyo3-build-config",
|
|
@@ -945,9 +974,9 @@ dependencies = [
|
|
|
945
974
|
|
|
946
975
|
[[package]]
|
|
947
976
|
name = "pyo3-macros"
|
|
948
|
-
version = "0.
|
|
977
|
+
version = "0.27.1"
|
|
949
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
-
checksum = "
|
|
979
|
+
checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
|
|
951
980
|
dependencies = [
|
|
952
981
|
"proc-macro2",
|
|
953
982
|
"pyo3-macros-backend",
|
|
@@ -957,9 +986,9 @@ dependencies = [
|
|
|
957
986
|
|
|
958
987
|
[[package]]
|
|
959
988
|
name = "pyo3-macros-backend"
|
|
960
|
-
version = "0.
|
|
989
|
+
version = "0.27.1"
|
|
961
990
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
-
checksum = "
|
|
991
|
+
checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
|
|
963
992
|
dependencies = [
|
|
964
993
|
"heck",
|
|
965
994
|
"proc-macro2",
|
|
@@ -970,18 +999,18 @@ dependencies = [
|
|
|
970
999
|
|
|
971
1000
|
[[package]]
|
|
972
1001
|
name = "quote"
|
|
973
|
-
version = "1.0.
|
|
1002
|
+
version = "1.0.42"
|
|
974
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
-
checksum = "
|
|
1004
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
976
1005
|
dependencies = [
|
|
977
1006
|
"proc-macro2",
|
|
978
1007
|
]
|
|
979
1008
|
|
|
980
1009
|
[[package]]
|
|
981
1010
|
name = "r-efi"
|
|
982
|
-
version = "5.
|
|
1011
|
+
version = "5.3.0"
|
|
983
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
-
checksum = "
|
|
1013
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
985
1014
|
|
|
986
1015
|
[[package]]
|
|
987
1016
|
name = "rand"
|
|
@@ -1009,11 +1038,20 @@ version = "0.6.4"
|
|
|
1009
1038
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
1039
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
1011
1040
|
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "redox_syscall"
|
|
1043
|
+
version = "0.5.18"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"bitflags",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1012
1050
|
[[package]]
|
|
1013
1051
|
name = "regex"
|
|
1014
|
-
version = "1.
|
|
1052
|
+
version = "1.12.2"
|
|
1015
1053
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
-
checksum = "
|
|
1054
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1017
1055
|
dependencies = [
|
|
1018
1056
|
"aho-corasick",
|
|
1019
1057
|
"memchr",
|
|
@@ -1023,9 +1061,9 @@ dependencies = [
|
|
|
1023
1061
|
|
|
1024
1062
|
[[package]]
|
|
1025
1063
|
name = "regex-automata"
|
|
1026
|
-
version = "0.4.
|
|
1064
|
+
version = "0.4.13"
|
|
1027
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
-
checksum = "
|
|
1066
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1029
1067
|
dependencies = [
|
|
1030
1068
|
"aho-corasick",
|
|
1031
1069
|
"memchr",
|
|
@@ -1034,9 +1072,9 @@ dependencies = [
|
|
|
1034
1072
|
|
|
1035
1073
|
[[package]]
|
|
1036
1074
|
name = "regex-syntax"
|
|
1037
|
-
version = "0.8.
|
|
1075
|
+
version = "0.8.8"
|
|
1038
1076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
-
checksum = "
|
|
1077
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1040
1078
|
|
|
1041
1079
|
[[package]]
|
|
1042
1080
|
name = "rfc6979"
|
|
@@ -1050,9 +1088,9 @@ dependencies = [
|
|
|
1050
1088
|
|
|
1051
1089
|
[[package]]
|
|
1052
1090
|
name = "rsa"
|
|
1053
|
-
version = "0.9.
|
|
1091
|
+
version = "0.9.9"
|
|
1054
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
-
checksum = "
|
|
1093
|
+
checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88"
|
|
1056
1094
|
dependencies = [
|
|
1057
1095
|
"const-oid",
|
|
1058
1096
|
"digest",
|
|
@@ -1076,9 +1114,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
1076
1114
|
|
|
1077
1115
|
[[package]]
|
|
1078
1116
|
name = "rustix"
|
|
1079
|
-
version = "1.
|
|
1117
|
+
version = "1.1.2"
|
|
1080
1118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
-
checksum = "
|
|
1119
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
1082
1120
|
dependencies = [
|
|
1083
1121
|
"bitflags",
|
|
1084
1122
|
"errno",
|
|
@@ -1087,6 +1125,12 @@ dependencies = [
|
|
|
1087
1125
|
"windows-sys",
|
|
1088
1126
|
]
|
|
1089
1127
|
|
|
1128
|
+
[[package]]
|
|
1129
|
+
name = "rustversion"
|
|
1130
|
+
version = "1.0.22"
|
|
1131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1133
|
+
|
|
1090
1134
|
[[package]]
|
|
1091
1135
|
name = "ryu"
|
|
1092
1136
|
version = "1.0.20"
|
|
@@ -1102,6 +1146,12 @@ dependencies = [
|
|
|
1102
1146
|
"winapi-util",
|
|
1103
1147
|
]
|
|
1104
1148
|
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "scopeguard"
|
|
1151
|
+
version = "1.2.0"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1154
|
+
|
|
1105
1155
|
[[package]]
|
|
1106
1156
|
name = "sec1"
|
|
1107
1157
|
version = "0.7.3"
|
|
@@ -1118,18 +1168,28 @@ dependencies = [
|
|
|
1118
1168
|
|
|
1119
1169
|
[[package]]
|
|
1120
1170
|
name = "serde"
|
|
1121
|
-
version = "1.0.
|
|
1171
|
+
version = "1.0.228"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"serde_core",
|
|
1176
|
+
"serde_derive",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "serde_core"
|
|
1181
|
+
version = "1.0.228"
|
|
1122
1182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "
|
|
1183
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1124
1184
|
dependencies = [
|
|
1125
1185
|
"serde_derive",
|
|
1126
1186
|
]
|
|
1127
1187
|
|
|
1128
1188
|
[[package]]
|
|
1129
1189
|
name = "serde_derive"
|
|
1130
|
-
version = "1.0.
|
|
1190
|
+
version = "1.0.228"
|
|
1131
1191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "
|
|
1192
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1133
1193
|
dependencies = [
|
|
1134
1194
|
"proc-macro2",
|
|
1135
1195
|
"quote",
|
|
@@ -1138,14 +1198,15 @@ dependencies = [
|
|
|
1138
1198
|
|
|
1139
1199
|
[[package]]
|
|
1140
1200
|
name = "serde_json"
|
|
1141
|
-
version = "1.0.
|
|
1201
|
+
version = "1.0.145"
|
|
1142
1202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
-
checksum = "
|
|
1203
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
1144
1204
|
dependencies = [
|
|
1145
1205
|
"itoa",
|
|
1146
1206
|
"memchr",
|
|
1147
1207
|
"ryu",
|
|
1148
1208
|
"serde",
|
|
1209
|
+
"serde_core",
|
|
1149
1210
|
]
|
|
1150
1211
|
|
|
1151
1212
|
[[package]]
|
|
@@ -1188,9 +1249,9 @@ dependencies = [
|
|
|
1188
1249
|
|
|
1189
1250
|
[[package]]
|
|
1190
1251
|
name = "smallvec"
|
|
1191
|
-
version = "1.15.
|
|
1252
|
+
version = "1.15.1"
|
|
1192
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
-
checksum = "
|
|
1254
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1194
1255
|
|
|
1195
1256
|
[[package]]
|
|
1196
1257
|
name = "spin"
|
|
@@ -1222,9 +1283,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1222
1283
|
|
|
1223
1284
|
[[package]]
|
|
1224
1285
|
name = "syn"
|
|
1225
|
-
version = "2.0.
|
|
1286
|
+
version = "2.0.110"
|
|
1226
1287
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
-
checksum = "
|
|
1288
|
+
checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
|
|
1228
1289
|
dependencies = [
|
|
1229
1290
|
"proc-macro2",
|
|
1230
1291
|
"quote",
|
|
@@ -1233,15 +1294,15 @@ dependencies = [
|
|
|
1233
1294
|
|
|
1234
1295
|
[[package]]
|
|
1235
1296
|
name = "target-lexicon"
|
|
1236
|
-
version = "0.13.
|
|
1297
|
+
version = "0.13.3"
|
|
1237
1298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "
|
|
1299
|
+
checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
|
|
1239
1300
|
|
|
1240
1301
|
[[package]]
|
|
1241
1302
|
name = "tempfile"
|
|
1242
|
-
version = "3.
|
|
1303
|
+
version = "3.23.0"
|
|
1243
1304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "
|
|
1305
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
1245
1306
|
dependencies = [
|
|
1246
1307
|
"fastrand",
|
|
1247
1308
|
"getrandom",
|
|
@@ -1287,27 +1348,27 @@ dependencies = [
|
|
|
1287
1348
|
|
|
1288
1349
|
[[package]]
|
|
1289
1350
|
name = "tlsh2"
|
|
1290
|
-
version = "
|
|
1351
|
+
version = "1.1.0"
|
|
1291
1352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
-
checksum = "
|
|
1353
|
+
checksum = "7184dfffa0d05e10284df327c6cb52f0d62c5aa6c9a8b9236fa151d4361882f1"
|
|
1293
1354
|
|
|
1294
1355
|
[[package]]
|
|
1295
1356
|
name = "typenum"
|
|
1296
|
-
version = "1.
|
|
1357
|
+
version = "1.19.0"
|
|
1297
1358
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1298
|
-
checksum = "
|
|
1359
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
1299
1360
|
|
|
1300
1361
|
[[package]]
|
|
1301
1362
|
name = "unicode-ident"
|
|
1302
|
-
version = "1.0.
|
|
1363
|
+
version = "1.0.22"
|
|
1303
1364
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
-
checksum = "
|
|
1365
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1305
1366
|
|
|
1306
1367
|
[[package]]
|
|
1307
1368
|
name = "unicode-width"
|
|
1308
|
-
version = "0.2.
|
|
1369
|
+
version = "0.2.2"
|
|
1309
1370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
-
checksum = "
|
|
1371
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1311
1372
|
|
|
1312
1373
|
[[package]]
|
|
1313
1374
|
name = "unindent"
|
|
@@ -1353,110 +1414,49 @@ dependencies = [
|
|
|
1353
1414
|
]
|
|
1354
1415
|
|
|
1355
1416
|
[[package]]
|
|
1356
|
-
name = "
|
|
1357
|
-
version = "0.
|
|
1417
|
+
name = "wasip2"
|
|
1418
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1358
1419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1420
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1360
1421
|
dependencies = [
|
|
1361
|
-
"wit-bindgen
|
|
1422
|
+
"wit-bindgen",
|
|
1362
1423
|
]
|
|
1363
1424
|
|
|
1364
1425
|
[[package]]
|
|
1365
1426
|
name = "winapi-util"
|
|
1366
|
-
version = "0.1.
|
|
1427
|
+
version = "0.1.11"
|
|
1367
1428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "
|
|
1429
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1369
1430
|
dependencies = [
|
|
1370
1431
|
"windows-sys",
|
|
1371
1432
|
]
|
|
1372
1433
|
|
|
1373
1434
|
[[package]]
|
|
1374
|
-
name = "windows-
|
|
1375
|
-
version = "0.
|
|
1435
|
+
name = "windows-link"
|
|
1436
|
+
version = "0.2.1"
|
|
1376
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
-
checksum = "
|
|
1378
|
-
dependencies = [
|
|
1379
|
-
"windows-targets",
|
|
1380
|
-
]
|
|
1438
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1381
1439
|
|
|
1382
1440
|
[[package]]
|
|
1383
|
-
name = "windows-
|
|
1384
|
-
version = "0.
|
|
1441
|
+
name = "windows-sys"
|
|
1442
|
+
version = "0.61.2"
|
|
1385
1443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1386
|
-
checksum = "
|
|
1444
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1387
1445
|
dependencies = [
|
|
1388
|
-
"
|
|
1389
|
-
"windows_aarch64_msvc",
|
|
1390
|
-
"windows_i686_gnu",
|
|
1391
|
-
"windows_i686_gnullvm",
|
|
1392
|
-
"windows_i686_msvc",
|
|
1393
|
-
"windows_x86_64_gnu",
|
|
1394
|
-
"windows_x86_64_gnullvm",
|
|
1395
|
-
"windows_x86_64_msvc",
|
|
1446
|
+
"windows-link",
|
|
1396
1447
|
]
|
|
1397
1448
|
|
|
1398
1449
|
[[package]]
|
|
1399
|
-
name = "
|
|
1400
|
-
version = "0.
|
|
1450
|
+
name = "wit-bindgen"
|
|
1451
|
+
version = "0.46.0"
|
|
1401
1452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "
|
|
1403
|
-
|
|
1404
|
-
[[package]]
|
|
1405
|
-
name = "windows_aarch64_msvc"
|
|
1406
|
-
version = "0.52.6"
|
|
1407
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1409
|
-
|
|
1410
|
-
[[package]]
|
|
1411
|
-
name = "windows_i686_gnu"
|
|
1412
|
-
version = "0.52.6"
|
|
1413
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1415
|
-
|
|
1416
|
-
[[package]]
|
|
1417
|
-
name = "windows_i686_gnullvm"
|
|
1418
|
-
version = "0.52.6"
|
|
1419
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1421
|
-
|
|
1422
|
-
[[package]]
|
|
1423
|
-
name = "windows_i686_msvc"
|
|
1424
|
-
version = "0.52.6"
|
|
1425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1427
|
-
|
|
1428
|
-
[[package]]
|
|
1429
|
-
name = "windows_x86_64_gnu"
|
|
1430
|
-
version = "0.52.6"
|
|
1431
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1433
|
-
|
|
1434
|
-
[[package]]
|
|
1435
|
-
name = "windows_x86_64_gnullvm"
|
|
1436
|
-
version = "0.52.6"
|
|
1437
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
-
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1439
|
-
|
|
1440
|
-
[[package]]
|
|
1441
|
-
name = "windows_x86_64_msvc"
|
|
1442
|
-
version = "0.52.6"
|
|
1443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1445
|
-
|
|
1446
|
-
[[package]]
|
|
1447
|
-
name = "wit-bindgen-rt"
|
|
1448
|
-
version = "0.39.0"
|
|
1449
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1450
|
-
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
|
|
1451
|
-
dependencies = [
|
|
1452
|
-
"bitflags",
|
|
1453
|
-
]
|
|
1453
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1454
1454
|
|
|
1455
1455
|
[[package]]
|
|
1456
1456
|
name = "yara"
|
|
1457
|
-
version = "0.
|
|
1457
|
+
version = "0.31.0"
|
|
1458
1458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
-
checksum = "
|
|
1459
|
+
checksum = "3463ea22ddcfa07b44876dc48d1299469984d4083e8cace4e1eed8e1f41871b3"
|
|
1460
1460
|
dependencies = [
|
|
1461
1461
|
"bitflags",
|
|
1462
1462
|
"thiserror",
|
|
@@ -1465,9 +1465,9 @@ dependencies = [
|
|
|
1465
1465
|
|
|
1466
1466
|
[[package]]
|
|
1467
1467
|
name = "yara-sys"
|
|
1468
|
-
version = "0.
|
|
1468
|
+
version = "0.31.0"
|
|
1469
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
-
checksum = "
|
|
1470
|
+
checksum = "1b2168a47828c221f8ce1918a902fb8ee5f5a0aad57f417ab6d3bf7b9047ffa2"
|
|
1471
1471
|
dependencies = [
|
|
1472
1472
|
"bindgen",
|
|
1473
1473
|
"cc",
|
|
@@ -1477,18 +1477,18 @@ dependencies = [
|
|
|
1477
1477
|
|
|
1478
1478
|
[[package]]
|
|
1479
1479
|
name = "zerocopy"
|
|
1480
|
-
version = "0.8.
|
|
1480
|
+
version = "0.8.28"
|
|
1481
1481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
-
checksum = "
|
|
1482
|
+
checksum = "43fa6694ed34d6e57407afbccdeecfa268c470a7d2a5b0cf49ce9fcc345afb90"
|
|
1483
1483
|
dependencies = [
|
|
1484
1484
|
"zerocopy-derive",
|
|
1485
1485
|
]
|
|
1486
1486
|
|
|
1487
1487
|
[[package]]
|
|
1488
1488
|
name = "zerocopy-derive"
|
|
1489
|
-
version = "0.8.
|
|
1489
|
+
version = "0.8.28"
|
|
1490
1490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1491
|
+
checksum = "c640b22cd9817fae95be82f0d2f90b11f7605f6c319d16705c459b27ac2cbc26"
|
|
1492
1492
|
dependencies = [
|
|
1493
1493
|
"proc-macro2",
|
|
1494
1494
|
"quote",
|
|
@@ -1497,6 +1497,6 @@ dependencies = [
|
|
|
1497
1497
|
|
|
1498
1498
|
[[package]]
|
|
1499
1499
|
name = "zeroize"
|
|
1500
|
-
version = "1.8.
|
|
1500
|
+
version = "1.8.2"
|
|
1501
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
1502
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|