boreal-python 1.1.0__tar.gz → 1.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {boreal_python-1.1.0 → boreal_python-1.3.0}/Cargo.lock +204 -248
- {boreal_python-1.1.0 → boreal_python-1.3.0}/Cargo.toml +5 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/PKG-INFO +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/Cargo.toml +13 -13
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/bytes_pool.rs +71 -50
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/error.rs +20 -5
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/expression.rs +253 -156
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/mod.rs +18 -12
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/module.rs +59 -50
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/params.rs +3 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/rule.rs +147 -42
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/tests.rs +19 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/variable.rs +11 -84
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/evaluator/entrypoint.rs +5 -5
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/evaluator/mod.rs +52 -31
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/analysis.rs +1 -23
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/literals.rs +10 -3
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/mod.rs +36 -32
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/only_literals.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/raw.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/validator/dfa.rs +2 -2
- boreal_python-1.3.0/boreal/src/matcher/validator/simple.rs +1125 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/validator.rs +79 -155
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/widener.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/memory.rs +1 -5
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/dotnet.rs +3 -3
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/elf.rs +118 -116
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/hash.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/macho.rs +164 -152
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/mod.rs +18 -14
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/debug.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures/asn1.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/utils.rs +3 -7
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/version_info.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe.rs +218 -182
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/string.rs +6 -10
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/regex/hir.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/regex/mod.rs +4 -4
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/ac_scan.rs +120 -61
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/mod.rs +165 -143
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/linux.rs +3 -6
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/macos.rs +3 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/windows.rs +27 -10
- boreal_python-1.3.0/boreal/src/scanner/process.rs +14 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/statistics.rs +6 -6
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/test_helpers.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/wire.rs +24 -18
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/Cargo.toml +4 -4
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/boolean_expression.rs +3 -3
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/common.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/primary_expression.rs +3 -3
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/read_integer.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/number.rs +4 -4
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/regex.rs +4 -4
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/rule.rs +21 -13
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/test_helpers.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/types.rs +16 -10
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/Cargo.toml +5 -5
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/lib.rs +11 -9
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/rule.rs +7 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/rule_match.rs +6 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/scanner.rs +63 -48
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/string_match_instance.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/string_matches.rs +3 -3
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/tests/test_scanner.py +72 -4
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/uv.lock +246 -212
- {boreal_python-1.1.0 → boreal_python-1.3.0}/pyproject.toml +10 -9
- boreal_python-1.1.0/boreal/src/matcher/validator/simple.rs +0 -540
- boreal_python-1.1.0/boreal/src/scanner/process.rs +0 -8
- {boreal_python-1.1.0 → boreal_python-1.3.0}/README.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/LICENSE-APACHE +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/LICENSE-MIT +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/README.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/atoms.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/bitmaps.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/builder.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/compiler/external_symbol.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/evaluator/error.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/evaluator/module.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/evaluator/read_integer.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/evaluator/variable.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/lib.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/matcher/base64.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/console.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/cuckoo.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/dex.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/magic.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/math.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/ord.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures/verify.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/module/time.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/regex/visitor.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/error.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/params.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/default.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal/src/timeout.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/LICENSE-APACHE +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/LICENSE-MIT +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/README.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/error.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/for_expression.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/identifier.rs +2 -2
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/mod.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/expression/string_expression.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/file.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/hex_string.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/lib.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/nom_recipes.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-parser/src/string.rs +1 -1
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/README.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/boreal.pyi +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/docs/README.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/docs/api.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/docs/griffe_customization.py +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/docs/yara_compatibility_mode.md +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/mkdocs.yml +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/scripts/test-parallel.sh +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/scripts/test.sh +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/module.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/src/rule_string.rs +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/tests/conftest.py +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/tests/test_api.py +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/tests/test_compile.py +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/tests/test_types.py +0 -0
- {boreal_python-1.1.0 → boreal_python-1.3.0}/boreal-py/tests/utils.py +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
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"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.5"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
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"
|
|
@@ -90,41 +90,39 @@ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
|
90
90
|
|
|
91
91
|
[[package]]
|
|
92
92
|
name = "base64"
|
|
93
|
-
version = "0.
|
|
93
|
+
version = "0.23.1"
|
|
94
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
-
checksum = "
|
|
95
|
+
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
|
|
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",
|
|
120
|
-
"syn",
|
|
117
|
+
"shlex 1.3.0",
|
|
118
|
+
"syn 2.0.119",
|
|
121
119
|
]
|
|
122
120
|
|
|
123
121
|
[[package]]
|
|
124
122
|
name = "bitflags"
|
|
125
|
-
version = "2.
|
|
123
|
+
version = "2.13.2"
|
|
126
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
-
checksum = "
|
|
125
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
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.3.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.3.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.3.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.8.1"
|
|
217
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
-
checksum = "
|
|
216
|
+
checksum = "553c5d846a6ba5150c65e3b1b8ec073bcf1abc20f9b7220de384a4443ea4e20a"
|
|
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.1"
|
|
226
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "
|
|
226
|
+
checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
|
|
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.
|
|
241
|
+
version = "1.4.5"
|
|
237
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
-
checksum = "
|
|
243
|
+
checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
|
|
239
244
|
dependencies = [
|
|
240
245
|
"find-msvc-tools",
|
|
241
|
-
"shlex",
|
|
246
|
+
"shlex 2.0.1",
|
|
242
247
|
]
|
|
243
248
|
|
|
244
249
|
[[package]]
|
|
@@ -258,15 +263,15 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
258
263
|
|
|
259
264
|
[[package]]
|
|
260
265
|
name = "cfg_aliases"
|
|
261
|
-
version = "0.2.
|
|
266
|
+
version = "0.2.2"
|
|
262
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
-
checksum = "
|
|
268
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
264
269
|
|
|
265
270
|
[[package]]
|
|
266
271
|
name = "clang-sys"
|
|
267
|
-
version = "1.
|
|
272
|
+
version = "1.9.1"
|
|
268
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
-
checksum = "
|
|
274
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
270
275
|
dependencies = [
|
|
271
276
|
"glob",
|
|
272
277
|
"libc",
|
|
@@ -275,18 +280,18 @@ dependencies = [
|
|
|
275
280
|
|
|
276
281
|
[[package]]
|
|
277
282
|
name = "clap"
|
|
278
|
-
version = "4.
|
|
283
|
+
version = "4.6.6"
|
|
279
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
-
checksum = "
|
|
285
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
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.6"
|
|
288
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
-
checksum = "
|
|
294
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
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"
|
|
@@ -334,27 +339,27 @@ dependencies = [
|
|
|
334
339
|
|
|
335
340
|
[[package]]
|
|
336
341
|
name = "crc32fast"
|
|
337
|
-
version = "1.5.
|
|
342
|
+
version = "1.5.2"
|
|
338
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
-
checksum = "
|
|
344
|
+
checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
|
|
340
345
|
dependencies = [
|
|
341
346
|
"cfg-if",
|
|
342
347
|
]
|
|
343
348
|
|
|
344
349
|
[[package]]
|
|
345
350
|
name = "crossbeam-channel"
|
|
346
|
-
version = "0.5.
|
|
351
|
+
version = "0.5.17"
|
|
347
352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
353
|
+
checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
|
|
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.23"
|
|
356
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
362
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
358
363
|
|
|
359
364
|
[[package]]
|
|
360
365
|
name = "crypto-bigint"
|
|
@@ -398,7 +403,7 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
|
|
|
398
403
|
dependencies = [
|
|
399
404
|
"proc-macro2",
|
|
400
405
|
"quote",
|
|
401
|
-
"syn",
|
|
406
|
+
"syn 2.0.119",
|
|
402
407
|
]
|
|
403
408
|
|
|
404
409
|
[[package]]
|
|
@@ -448,6 +453,12 @@ dependencies = [
|
|
|
448
453
|
"signature",
|
|
449
454
|
]
|
|
450
455
|
|
|
456
|
+
[[package]]
|
|
457
|
+
name = "either"
|
|
458
|
+
version = "1.18.0"
|
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
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.5.0"
|
|
484
495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
-
checksum = "
|
|
496
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
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.12"
|
|
500
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
512
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
502
513
|
|
|
503
514
|
[[package]]
|
|
504
515
|
name = "fs_extra"
|
|
@@ -517,23 +528,11 @@ 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
|
-
version = "0.3.
|
|
533
|
+
version = "0.3.4"
|
|
535
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
535
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
537
536
|
|
|
538
537
|
[[package]]
|
|
539
538
|
name = "group"
|
|
@@ -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.189"
|
|
609
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
603
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
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"
|
|
@@ -642,9 +635,9 @@ dependencies = [
|
|
|
642
635
|
|
|
643
636
|
[[package]]
|
|
644
637
|
name = "mach2"
|
|
645
|
-
version = "0.
|
|
638
|
+
version = "0.7.0"
|
|
646
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
-
checksum = "
|
|
640
|
+
checksum = "b0d28e293f2b8c9d2b2d1c0193bd3c1cbdc0d2cf396888dc01162f7cf9d6c3f3"
|
|
648
641
|
|
|
649
642
|
[[package]]
|
|
650
643
|
name = "magic"
|
|
@@ -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"
|
|
@@ -743,20 +727,19 @@ dependencies = [
|
|
|
743
727
|
|
|
744
728
|
[[package]]
|
|
745
729
|
name = "num-integer"
|
|
746
|
-
version = "0.1.
|
|
730
|
+
version = "0.1.47"
|
|
747
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
-
checksum = "
|
|
732
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
749
733
|
dependencies = [
|
|
750
734
|
"num-traits",
|
|
751
735
|
]
|
|
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.40.0"
|
|
777
760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
-
checksum = "
|
|
761
|
+
checksum = "dd229a0361b9d0d4396176e02d65897f487eebeab7caa6d443855ee152ca0b9c"
|
|
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.15.0"
|
|
881
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "
|
|
859
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
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.107"
|
|
933
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
-
checksum = "
|
|
911
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
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.2"
|
|
942
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
-
checksum = "
|
|
920
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
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.2"
|
|
959
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
-
checksum = "
|
|
934
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
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.2"
|
|
968
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
-
checksum = "
|
|
943
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
970
944
|
dependencies = [
|
|
971
945
|
"libc",
|
|
972
946
|
"pyo3-build-config",
|
|
@@ -974,49 +948,42 @@ dependencies = [
|
|
|
974
948
|
|
|
975
949
|
[[package]]
|
|
976
950
|
name = "pyo3-macros"
|
|
977
|
-
version = "0.
|
|
951
|
+
version = "0.29.2"
|
|
978
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
|
-
checksum = "
|
|
953
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
980
954
|
dependencies = [
|
|
981
955
|
"proc-macro2",
|
|
982
956
|
"pyo3-macros-backend",
|
|
983
957
|
"quote",
|
|
984
|
-
"syn",
|
|
958
|
+
"syn 2.0.119",
|
|
985
959
|
]
|
|
986
960
|
|
|
987
961
|
[[package]]
|
|
988
962
|
name = "pyo3-macros-backend"
|
|
989
|
-
version = "0.
|
|
963
|
+
version = "0.29.2"
|
|
990
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
-
checksum = "
|
|
965
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
992
966
|
dependencies = [
|
|
993
967
|
"heck",
|
|
994
968
|
"proc-macro2",
|
|
995
|
-
"pyo3-build-config",
|
|
996
969
|
"quote",
|
|
997
|
-
"syn",
|
|
970
|
+
"syn 2.0.119",
|
|
998
971
|
]
|
|
999
972
|
|
|
1000
973
|
[[package]]
|
|
1001
974
|
name = "quote"
|
|
1002
|
-
version = "1.0.
|
|
975
|
+
version = "1.0.47"
|
|
1003
976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
-
checksum = "
|
|
977
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
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.8"
|
|
1018
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
986
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
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.18"
|
|
1065
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
-
checksum = "
|
|
1033
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
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"
|
|
@@ -1168,9 +1123,9 @@ dependencies = [
|
|
|
1168
1123
|
|
|
1169
1124
|
[[package]]
|
|
1170
1125
|
name = "serde"
|
|
1171
|
-
version = "1.0.
|
|
1126
|
+
version = "1.0.229"
|
|
1172
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "
|
|
1128
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1174
1129
|
dependencies = [
|
|
1175
1130
|
"serde_core",
|
|
1176
1131
|
"serde_derive",
|
|
@@ -1178,42 +1133,42 @@ dependencies = [
|
|
|
1178
1133
|
|
|
1179
1134
|
[[package]]
|
|
1180
1135
|
name = "serde_core"
|
|
1181
|
-
version = "1.0.
|
|
1136
|
+
version = "1.0.229"
|
|
1182
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
-
checksum = "
|
|
1138
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1184
1139
|
dependencies = [
|
|
1185
1140
|
"serde_derive",
|
|
1186
1141
|
]
|
|
1187
1142
|
|
|
1188
1143
|
[[package]]
|
|
1189
1144
|
name = "serde_derive"
|
|
1190
|
-
version = "1.0.
|
|
1145
|
+
version = "1.0.229"
|
|
1191
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
-
checksum = "
|
|
1147
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1193
1148
|
dependencies = [
|
|
1194
1149
|
"proc-macro2",
|
|
1195
1150
|
"quote",
|
|
1196
|
-
"syn",
|
|
1151
|
+
"syn 3.0.5",
|
|
1197
1152
|
]
|
|
1198
1153
|
|
|
1199
1154
|
[[package]]
|
|
1200
1155
|
name = "serde_json"
|
|
1201
|
-
version = "1.0.
|
|
1156
|
+
version = "1.0.151"
|
|
1202
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
-
checksum = "
|
|
1158
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
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]]
|
|
1213
1168
|
name = "sha1"
|
|
1214
|
-
version = "0.10.
|
|
1169
|
+
version = "0.10.7"
|
|
1215
1170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
-
checksum = "
|
|
1171
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
1217
1172
|
dependencies = [
|
|
1218
1173
|
"cfg-if",
|
|
1219
1174
|
"cpufeatures",
|
|
@@ -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.
|
|
1213
|
+
version = "1.16.1"
|
|
1253
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
-
checksum = "
|
|
1215
|
+
checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
|
|
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,20 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
1283
1244
|
|
|
1284
1245
|
[[package]]
|
|
1285
1246
|
name = "syn"
|
|
1286
|
-
version = "2.0.
|
|
1247
|
+
version = "2.0.119"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"proc-macro2",
|
|
1252
|
+
"quote",
|
|
1253
|
+
"unicode-ident",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "syn"
|
|
1258
|
+
version = "3.0.5"
|
|
1287
1259
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
-
checksum = "
|
|
1260
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
1289
1261
|
dependencies = [
|
|
1290
1262
|
"proc-macro2",
|
|
1291
1263
|
"quote",
|
|
@@ -1294,18 +1266,17 @@ dependencies = [
|
|
|
1294
1266
|
|
|
1295
1267
|
[[package]]
|
|
1296
1268
|
name = "target-lexicon"
|
|
1297
|
-
version = "0.13.
|
|
1269
|
+
version = "0.13.5"
|
|
1298
1270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1299
|
-
checksum = "
|
|
1271
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1300
1272
|
|
|
1301
1273
|
[[package]]
|
|
1302
1274
|
name = "tempfile"
|
|
1303
|
-
version = "3.
|
|
1275
|
+
version = "3.27.0"
|
|
1304
1276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
-
checksum = "
|
|
1277
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1306
1278
|
dependencies = [
|
|
1307
1279
|
"fastrand",
|
|
1308
|
-
"getrandom",
|
|
1309
1280
|
"once_cell",
|
|
1310
1281
|
"rustix",
|
|
1311
1282
|
"windows-sys",
|
|
@@ -1343,7 +1314,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
1343
1314
|
dependencies = [
|
|
1344
1315
|
"proc-macro2",
|
|
1345
1316
|
"quote",
|
|
1346
|
-
"syn",
|
|
1317
|
+
"syn 2.0.119",
|
|
1347
1318
|
]
|
|
1348
1319
|
|
|
1349
1320
|
[[package]]
|
|
@@ -1354,15 +1325,15 @@ checksum = "7184dfffa0d05e10284df327c6cb52f0d62c5aa6c9a8b9236fa151d4361882f1"
|
|
|
1354
1325
|
|
|
1355
1326
|
[[package]]
|
|
1356
1327
|
name = "typenum"
|
|
1357
|
-
version = "1.
|
|
1328
|
+
version = "1.20.1"
|
|
1358
1329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1330
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
1360
1331
|
|
|
1361
1332
|
[[package]]
|
|
1362
1333
|
name = "unicode-ident"
|
|
1363
|
-
version = "1.0.
|
|
1334
|
+
version = "1.0.24"
|
|
1364
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1365
|
-
checksum = "
|
|
1336
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1366
1337
|
|
|
1367
1338
|
[[package]]
|
|
1368
1339
|
name = "unicode-width"
|
|
@@ -1370,12 +1341,6 @@ version = "0.2.2"
|
|
|
1370
1341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1371
1342
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1372
1343
|
|
|
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
1344
|
[[package]]
|
|
1380
1345
|
name = "utf8parse"
|
|
1381
1346
|
version = "0.2.2"
|
|
@@ -1413,15 +1378,6 @@ dependencies = [
|
|
|
1413
1378
|
"winapi-util",
|
|
1414
1379
|
]
|
|
1415
1380
|
|
|
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
1381
|
[[package]]
|
|
1426
1382
|
name = "winapi-util"
|
|
1427
1383
|
version = "0.1.11"
|
|
@@ -1446,17 +1402,11 @@ dependencies = [
|
|
|
1446
1402
|
"windows-link",
|
|
1447
1403
|
]
|
|
1448
1404
|
|
|
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
1405
|
[[package]]
|
|
1456
1406
|
name = "yara"
|
|
1457
|
-
version = "0.
|
|
1407
|
+
version = "0.32.0"
|
|
1458
1408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
-
checksum = "
|
|
1409
|
+
checksum = "b3caead5c2f89f36a59da301b0ad42e6c096b957db0b4adc60e05aae74c2c3ac"
|
|
1460
1410
|
dependencies = [
|
|
1461
1411
|
"bitflags",
|
|
1462
1412
|
"thiserror",
|
|
@@ -1465,9 +1415,9 @@ dependencies = [
|
|
|
1465
1415
|
|
|
1466
1416
|
[[package]]
|
|
1467
1417
|
name = "yara-sys"
|
|
1468
|
-
version = "0.
|
|
1418
|
+
version = "0.32.0"
|
|
1469
1419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
-
checksum = "
|
|
1420
|
+
checksum = "ba8598e7b8b80190eddb1e030e87e4051f2fec79df901748a9257a4a59fcc3e5"
|
|
1471
1421
|
dependencies = [
|
|
1472
1422
|
"bindgen",
|
|
1473
1423
|
"cc",
|
|
@@ -1477,26 +1427,32 @@ dependencies = [
|
|
|
1477
1427
|
|
|
1478
1428
|
[[package]]
|
|
1479
1429
|
name = "zerocopy"
|
|
1480
|
-
version = "0.8.
|
|
1430
|
+
version = "0.8.57"
|
|
1481
1431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
-
checksum = "
|
|
1432
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
1483
1433
|
dependencies = [
|
|
1484
1434
|
"zerocopy-derive",
|
|
1485
1435
|
]
|
|
1486
1436
|
|
|
1487
1437
|
[[package]]
|
|
1488
1438
|
name = "zerocopy-derive"
|
|
1489
|
-
version = "0.8.
|
|
1439
|
+
version = "0.8.57"
|
|
1490
1440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1441
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
1492
1442
|
dependencies = [
|
|
1493
1443
|
"proc-macro2",
|
|
1494
1444
|
"quote",
|
|
1495
|
-
"syn",
|
|
1445
|
+
"syn 2.0.119",
|
|
1496
1446
|
]
|
|
1497
1447
|
|
|
1498
1448
|
[[package]]
|
|
1499
1449
|
name = "zeroize"
|
|
1500
|
-
version = "1.
|
|
1450
|
+
version = "1.9.0"
|
|
1451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "zmij"
|
|
1456
|
+
version = "1.0.23"
|
|
1501
1457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
-
checksum = "
|
|
1458
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|