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