ruzip 0.1.0 → 0.2.1
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.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/.gitlab-ci.yml +3 -2
- data/.rdoc_options +9 -0
- data/CHANGELOG.md +10 -1
- data/README.md +21 -15
- data/Rakefile +4 -5
- data/ext/Cargo.lock +271 -357
- data/ext/Cargo.toml +4 -3
- data/ext/src/lib.rs +104 -102
- data/ruzip.gemspec +10 -5
- data/sig/ruzip.rbs +24 -2
- data/test/fixtures/.gitkeep +0 -0
- data/test/test_file.rb +8 -0
- data/test/test_package.rb +28 -0
- data/test/test_writer.rb +44 -0
- metadata +84 -20
- data/CODE_OF_CONDUCT.md +0 -84
- data/test/test_ruzip.rb +0 -7
data/ext/Cargo.lock
CHANGED
|
@@ -2,117 +2,85 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "adler2"
|
|
7
|
-
version = "2.0.1"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
-
|
|
11
5
|
[[package]]
|
|
12
6
|
name = "aes"
|
|
13
|
-
version = "0.
|
|
7
|
+
version = "0.9.3"
|
|
14
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
9
|
+
checksum = "35f0f96ce78e38c3dc6d8948aa8163d06385be74000f3c7a95bf1eef35d3ea32"
|
|
16
10
|
dependencies = [
|
|
17
|
-
"cfg-if",
|
|
18
11
|
"cipher",
|
|
12
|
+
"cpubits",
|
|
19
13
|
"cpufeatures",
|
|
20
14
|
]
|
|
21
15
|
|
|
22
16
|
[[package]]
|
|
23
17
|
name = "aho-corasick"
|
|
24
|
-
version = "1.1.
|
|
18
|
+
version = "1.1.5"
|
|
25
19
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
20
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
27
21
|
dependencies = [
|
|
28
22
|
"memchr",
|
|
29
23
|
]
|
|
30
24
|
|
|
31
|
-
[[package]]
|
|
32
|
-
name = "arbitrary"
|
|
33
|
-
version = "1.4.2"
|
|
34
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
-
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
36
|
-
dependencies = [
|
|
37
|
-
"derive_arbitrary",
|
|
38
|
-
]
|
|
39
|
-
|
|
40
25
|
[[package]]
|
|
41
26
|
name = "bindgen"
|
|
42
|
-
version = "0.
|
|
27
|
+
version = "0.72.1"
|
|
43
28
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
-
checksum = "
|
|
29
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
45
30
|
dependencies = [
|
|
46
31
|
"bitflags",
|
|
47
32
|
"cexpr",
|
|
48
33
|
"clang-sys",
|
|
49
34
|
"itertools",
|
|
50
|
-
"lazy_static",
|
|
51
|
-
"lazycell",
|
|
52
35
|
"proc-macro2",
|
|
53
36
|
"quote",
|
|
54
37
|
"regex",
|
|
55
38
|
"rustc-hash",
|
|
56
|
-
"shlex",
|
|
57
|
-
"syn",
|
|
39
|
+
"shlex 1.3.0",
|
|
40
|
+
"syn 2.0.119",
|
|
58
41
|
]
|
|
59
42
|
|
|
60
43
|
[[package]]
|
|
61
44
|
name = "bitflags"
|
|
62
|
-
version = "2.
|
|
45
|
+
version = "2.13.2"
|
|
63
46
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
-
checksum = "
|
|
47
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
65
48
|
|
|
66
49
|
[[package]]
|
|
67
50
|
name = "block-buffer"
|
|
68
|
-
version = "0.
|
|
51
|
+
version = "0.12.1"
|
|
69
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "
|
|
53
|
+
checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa"
|
|
71
54
|
dependencies = [
|
|
72
|
-
"
|
|
55
|
+
"hybrid-array",
|
|
56
|
+
"zeroize",
|
|
73
57
|
]
|
|
74
58
|
|
|
75
59
|
[[package]]
|
|
76
60
|
name = "bumpalo"
|
|
77
|
-
version = "3.
|
|
78
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
-
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
80
|
-
|
|
81
|
-
[[package]]
|
|
82
|
-
name = "byteorder"
|
|
83
|
-
version = "1.5.0"
|
|
61
|
+
version = "3.20.3"
|
|
84
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
-
checksum = "
|
|
63
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
86
64
|
|
|
87
65
|
[[package]]
|
|
88
66
|
name = "bzip2"
|
|
89
|
-
version = "0.
|
|
67
|
+
version = "0.6.1"
|
|
90
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
69
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
92
70
|
dependencies = [
|
|
93
|
-
"
|
|
94
|
-
]
|
|
95
|
-
|
|
96
|
-
[[package]]
|
|
97
|
-
name = "bzip2-sys"
|
|
98
|
-
version = "0.1.13+1.0.8"
|
|
99
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14"
|
|
101
|
-
dependencies = [
|
|
102
|
-
"cc",
|
|
103
|
-
"pkg-config",
|
|
71
|
+
"libbz2-rs-sys",
|
|
104
72
|
]
|
|
105
73
|
|
|
106
74
|
[[package]]
|
|
107
75
|
name = "cc"
|
|
108
|
-
version = "1.
|
|
76
|
+
version = "1.4.6"
|
|
109
77
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
78
|
+
checksum = "a3eb0f42d6c360dc3f8a821f6bf2fdea7f72bfd36b3076eb0e6d1e9e0752fff4"
|
|
111
79
|
dependencies = [
|
|
112
80
|
"find-msvc-tools",
|
|
113
81
|
"jobserver",
|
|
114
82
|
"libc",
|
|
115
|
-
"shlex",
|
|
83
|
+
"shlex 2.0.1",
|
|
116
84
|
]
|
|
117
85
|
|
|
118
86
|
[[package]]
|
|
@@ -126,15 +94,15 @@ dependencies = [
|
|
|
126
94
|
|
|
127
95
|
[[package]]
|
|
128
96
|
name = "cfg-if"
|
|
129
|
-
version = "1.0.
|
|
97
|
+
version = "1.0.5"
|
|
130
98
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
-
checksum = "
|
|
99
|
+
checksum = "4e7648175b45a9a48536d676f68d918270699102aa8dab5496df06904c914600"
|
|
132
100
|
|
|
133
101
|
[[package]]
|
|
134
102
|
name = "cipher"
|
|
135
|
-
version = "0.
|
|
103
|
+
version = "0.5.2"
|
|
136
104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
-
checksum = "
|
|
105
|
+
checksum = "e8cf2a2c93cd704877c0858356ed03480ff301ee950b43f1cbe4573b088bfa6c"
|
|
138
106
|
dependencies = [
|
|
139
107
|
"crypto-common",
|
|
140
108
|
"inout",
|
|
@@ -142,9 +110,9 @@ dependencies = [
|
|
|
142
110
|
|
|
143
111
|
[[package]]
|
|
144
112
|
name = "clang-sys"
|
|
145
|
-
version = "1.
|
|
113
|
+
version = "1.9.1"
|
|
146
114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
-
checksum = "
|
|
115
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
148
116
|
dependencies = [
|
|
149
117
|
"glob",
|
|
150
118
|
"libc",
|
|
@@ -152,113 +120,95 @@ dependencies = [
|
|
|
152
120
|
]
|
|
153
121
|
|
|
154
122
|
[[package]]
|
|
155
|
-
name = "
|
|
156
|
-
version = "0.
|
|
123
|
+
name = "cmov"
|
|
124
|
+
version = "0.5.4"
|
|
157
125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
-
checksum = "
|
|
126
|
+
checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a"
|
|
159
127
|
|
|
160
128
|
[[package]]
|
|
161
|
-
name = "
|
|
162
|
-
version = "0.2
|
|
129
|
+
name = "const-oid"
|
|
130
|
+
version = "0.10.2"
|
|
163
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
-
checksum = "
|
|
165
|
-
dependencies = [
|
|
166
|
-
"libc",
|
|
167
|
-
]
|
|
132
|
+
checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
|
|
168
133
|
|
|
169
134
|
[[package]]
|
|
170
|
-
name = "
|
|
171
|
-
version = "
|
|
135
|
+
name = "constant_time_eq"
|
|
136
|
+
version = "0.4.2"
|
|
172
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
-
checksum = "
|
|
174
|
-
dependencies = [
|
|
175
|
-
"crc-catalog",
|
|
176
|
-
]
|
|
138
|
+
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
177
139
|
|
|
178
140
|
[[package]]
|
|
179
|
-
name = "
|
|
180
|
-
version = "
|
|
141
|
+
name = "cpubits"
|
|
142
|
+
version = "0.1.1"
|
|
181
143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
-
checksum = "
|
|
144
|
+
checksum = "15b85f9c39137c3a891689859392b1bd49812121d0d61c9caf00d46ed5ce06ae"
|
|
183
145
|
|
|
184
146
|
[[package]]
|
|
185
|
-
name = "
|
|
186
|
-
version = "
|
|
147
|
+
name = "cpufeatures"
|
|
148
|
+
version = "0.3.1"
|
|
187
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
-
checksum = "
|
|
150
|
+
checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566"
|
|
189
151
|
dependencies = [
|
|
190
|
-
"
|
|
152
|
+
"libc",
|
|
191
153
|
]
|
|
192
154
|
|
|
193
155
|
[[package]]
|
|
194
|
-
name = "
|
|
195
|
-
version = "
|
|
156
|
+
name = "crc32fast"
|
|
157
|
+
version = "1.5.2"
|
|
196
158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
159
|
+
checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"cfg-if",
|
|
162
|
+
]
|
|
198
163
|
|
|
199
164
|
[[package]]
|
|
200
165
|
name = "crypto-common"
|
|
201
|
-
version = "0.
|
|
166
|
+
version = "0.2.2"
|
|
202
167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
-
checksum = "
|
|
168
|
+
checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453"
|
|
204
169
|
dependencies = [
|
|
205
|
-
"
|
|
206
|
-
"typenum",
|
|
170
|
+
"hybrid-array",
|
|
207
171
|
]
|
|
208
172
|
|
|
209
173
|
[[package]]
|
|
210
|
-
name = "
|
|
211
|
-
version = "0.
|
|
174
|
+
name = "ctutils"
|
|
175
|
+
version = "0.4.2"
|
|
212
176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
213
|
-
checksum = "
|
|
177
|
+
checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"cmov",
|
|
180
|
+
]
|
|
214
181
|
|
|
215
182
|
[[package]]
|
|
216
|
-
name = "
|
|
217
|
-
version = "0.
|
|
183
|
+
name = "deflate64"
|
|
184
|
+
version = "0.1.12"
|
|
218
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
220
|
-
dependencies = [
|
|
221
|
-
"powerfmt",
|
|
222
|
-
]
|
|
186
|
+
checksum = "ac6b926516df9c60bfa16e107b21086399f8285a44ca9711344b9e553c5146e2"
|
|
223
187
|
|
|
224
188
|
[[package]]
|
|
225
|
-
name = "
|
|
226
|
-
version = "
|
|
189
|
+
name = "deranged"
|
|
190
|
+
version = "0.5.8"
|
|
227
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
-
checksum = "
|
|
229
|
-
dependencies = [
|
|
230
|
-
"proc-macro2",
|
|
231
|
-
"quote",
|
|
232
|
-
"syn",
|
|
233
|
-
]
|
|
192
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
234
193
|
|
|
235
194
|
[[package]]
|
|
236
195
|
name = "digest"
|
|
237
|
-
version = "0.
|
|
196
|
+
version = "0.11.3"
|
|
238
197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
-
checksum = "
|
|
198
|
+
checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
|
|
240
199
|
dependencies = [
|
|
241
200
|
"block-buffer",
|
|
201
|
+
"const-oid",
|
|
242
202
|
"crypto-common",
|
|
243
|
-
"
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
[[package]]
|
|
247
|
-
name = "displaydoc"
|
|
248
|
-
version = "0.2.5"
|
|
249
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
-
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
251
|
-
dependencies = [
|
|
252
|
-
"proc-macro2",
|
|
253
|
-
"quote",
|
|
254
|
-
"syn",
|
|
203
|
+
"ctutils",
|
|
204
|
+
"zeroize",
|
|
255
205
|
]
|
|
256
206
|
|
|
257
207
|
[[package]]
|
|
258
208
|
name = "either"
|
|
259
|
-
version = "1.
|
|
209
|
+
version = "1.18.0"
|
|
260
210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
261
|
-
checksum = "
|
|
211
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
262
212
|
|
|
263
213
|
[[package]]
|
|
264
214
|
name = "equivalent"
|
|
@@ -268,70 +218,91 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
268
218
|
|
|
269
219
|
[[package]]
|
|
270
220
|
name = "find-msvc-tools"
|
|
271
|
-
version = "0.1.
|
|
221
|
+
version = "0.1.12"
|
|
272
222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
223
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
274
224
|
|
|
275
225
|
[[package]]
|
|
276
226
|
name = "flate2"
|
|
277
|
-
version = "1.1.
|
|
227
|
+
version = "1.1.10"
|
|
278
228
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
229
|
+
checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb"
|
|
280
230
|
dependencies = [
|
|
281
|
-
"
|
|
282
|
-
"miniz_oxide",
|
|
231
|
+
"zlib-rs",
|
|
283
232
|
]
|
|
284
233
|
|
|
285
234
|
[[package]]
|
|
286
|
-
name = "
|
|
287
|
-
version = "0.
|
|
235
|
+
name = "futures-core"
|
|
236
|
+
version = "0.3.34"
|
|
288
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
-
checksum = "
|
|
238
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "futures-task"
|
|
242
|
+
version = "0.3.34"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "futures-util"
|
|
248
|
+
version = "0.3.34"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
290
251
|
dependencies = [
|
|
291
|
-
"
|
|
292
|
-
"
|
|
252
|
+
"futures-core",
|
|
253
|
+
"futures-task",
|
|
254
|
+
"pin-project-lite",
|
|
255
|
+
"slab",
|
|
293
256
|
]
|
|
294
257
|
|
|
295
258
|
[[package]]
|
|
296
259
|
name = "getrandom"
|
|
297
|
-
version = "0.3
|
|
260
|
+
version = "0.4.3"
|
|
298
261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
-
checksum = "
|
|
262
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
300
263
|
dependencies = [
|
|
301
264
|
"cfg-if",
|
|
302
265
|
"js-sys",
|
|
303
266
|
"libc",
|
|
304
267
|
"r-efi",
|
|
305
|
-
"wasip2",
|
|
306
268
|
"wasm-bindgen",
|
|
307
269
|
]
|
|
308
270
|
|
|
309
271
|
[[package]]
|
|
310
272
|
name = "glob"
|
|
311
|
-
version = "0.3.
|
|
273
|
+
version = "0.3.4"
|
|
312
274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
-
checksum = "
|
|
275
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
314
276
|
|
|
315
277
|
[[package]]
|
|
316
278
|
name = "hashbrown"
|
|
317
|
-
version = "0.
|
|
279
|
+
version = "0.17.1"
|
|
318
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
281
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
320
282
|
|
|
321
283
|
[[package]]
|
|
322
284
|
name = "hmac"
|
|
323
|
-
version = "0.
|
|
285
|
+
version = "0.13.0"
|
|
324
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
287
|
+
checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f"
|
|
326
288
|
dependencies = [
|
|
327
289
|
"digest",
|
|
328
290
|
]
|
|
329
291
|
|
|
292
|
+
[[package]]
|
|
293
|
+
name = "hybrid-array"
|
|
294
|
+
version = "0.4.15"
|
|
295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
296
|
+
checksum = "27f864f10dfb56725ce5ce5472bc52252c8f93a4ab86327122cebf62c5f59a17"
|
|
297
|
+
dependencies = [
|
|
298
|
+
"typenum",
|
|
299
|
+
]
|
|
300
|
+
|
|
330
301
|
[[package]]
|
|
331
302
|
name = "indexmap"
|
|
332
|
-
version = "2.
|
|
303
|
+
version = "2.14.2"
|
|
333
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
305
|
+
checksum = "cc4e190f5d26ca7051642629da2c52fc03bde85a03197c99408dcd291734c855"
|
|
335
306
|
dependencies = [
|
|
336
307
|
"equivalent",
|
|
337
308
|
"hashbrown",
|
|
@@ -339,27 +310,27 @@ dependencies = [
|
|
|
339
310
|
|
|
340
311
|
[[package]]
|
|
341
312
|
name = "inout"
|
|
342
|
-
version = "0.
|
|
313
|
+
version = "0.2.2"
|
|
343
314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
315
|
+
checksum = "4250ce6452e92010fdf7268ccc5d14faa80bb12fc741938534c58f16804e03c7"
|
|
345
316
|
dependencies = [
|
|
346
|
-
"
|
|
317
|
+
"hybrid-array",
|
|
347
318
|
]
|
|
348
319
|
|
|
349
320
|
[[package]]
|
|
350
321
|
name = "itertools"
|
|
351
|
-
version = "0.
|
|
322
|
+
version = "0.13.0"
|
|
352
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
-
checksum = "
|
|
324
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
354
325
|
dependencies = [
|
|
355
326
|
"either",
|
|
356
327
|
]
|
|
357
328
|
|
|
358
329
|
[[package]]
|
|
359
330
|
name = "jobserver"
|
|
360
|
-
version = "0.1.
|
|
331
|
+
version = "0.1.35"
|
|
361
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
-
checksum = "
|
|
333
|
+
checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
|
|
363
334
|
dependencies = [
|
|
364
335
|
"getrandom",
|
|
365
336
|
"libc",
|
|
@@ -367,11 +338,12 @@ dependencies = [
|
|
|
367
338
|
|
|
368
339
|
[[package]]
|
|
369
340
|
name = "js-sys"
|
|
370
|
-
version = "0.3.
|
|
341
|
+
version = "0.3.105"
|
|
371
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
343
|
+
checksum = "ce57d20d1ea864ce2ac172ab472d409214f4fd359f0b2a2775abdf522e2af99e"
|
|
373
344
|
dependencies = [
|
|
374
|
-
"
|
|
345
|
+
"cfg-if",
|
|
346
|
+
"futures-util",
|
|
375
347
|
"wasm-bindgen",
|
|
376
348
|
]
|
|
377
349
|
|
|
@@ -382,16 +354,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
382
354
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
383
355
|
|
|
384
356
|
[[package]]
|
|
385
|
-
name = "
|
|
386
|
-
version = "
|
|
357
|
+
name = "libbz2-rs-sys"
|
|
358
|
+
version = "0.2.5"
|
|
387
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
-
checksum = "
|
|
360
|
+
checksum = "34b357333733e8260735ba5894eb928c02ecc69c78715f01a8019e7fa7f2db4c"
|
|
389
361
|
|
|
390
362
|
[[package]]
|
|
391
363
|
name = "libc"
|
|
392
|
-
version = "0.2.
|
|
364
|
+
version = "0.2.189"
|
|
393
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
-
checksum = "
|
|
366
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
395
367
|
|
|
396
368
|
[[package]]
|
|
397
369
|
name = "libloading"
|
|
@@ -405,36 +377,24 @@ dependencies = [
|
|
|
405
377
|
|
|
406
378
|
[[package]]
|
|
407
379
|
name = "log"
|
|
408
|
-
version = "0.4.
|
|
380
|
+
version = "0.4.34"
|
|
409
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
382
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
411
383
|
|
|
412
384
|
[[package]]
|
|
413
|
-
name = "lzma-
|
|
414
|
-
version = "0.
|
|
385
|
+
name = "lzma-rust2"
|
|
386
|
+
version = "0.16.5"
|
|
415
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
388
|
+
checksum = "ca93e534d1142d1d0dcca6d25fe302508a5dfb40b302802904577725ea0b695b"
|
|
417
389
|
dependencies = [
|
|
418
|
-
"
|
|
419
|
-
"crc",
|
|
420
|
-
]
|
|
421
|
-
|
|
422
|
-
[[package]]
|
|
423
|
-
name = "lzma-sys"
|
|
424
|
-
version = "0.1.20"
|
|
425
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
-
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
|
427
|
-
dependencies = [
|
|
428
|
-
"cc",
|
|
429
|
-
"libc",
|
|
430
|
-
"pkg-config",
|
|
390
|
+
"sha2",
|
|
431
391
|
]
|
|
432
392
|
|
|
433
393
|
[[package]]
|
|
434
394
|
name = "magnus"
|
|
435
|
-
version = "0.
|
|
395
|
+
version = "0.8.2"
|
|
436
396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
437
|
-
checksum = "
|
|
397
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
438
398
|
dependencies = [
|
|
439
399
|
"magnus-macros",
|
|
440
400
|
"rb-sys",
|
|
@@ -444,20 +404,20 @@ dependencies = [
|
|
|
444
404
|
|
|
445
405
|
[[package]]
|
|
446
406
|
name = "magnus-macros"
|
|
447
|
-
version = "0.
|
|
407
|
+
version = "0.8.0"
|
|
448
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
-
checksum = "
|
|
409
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
450
410
|
dependencies = [
|
|
451
411
|
"proc-macro2",
|
|
452
412
|
"quote",
|
|
453
|
-
"syn",
|
|
413
|
+
"syn 2.0.119",
|
|
454
414
|
]
|
|
455
415
|
|
|
456
416
|
[[package]]
|
|
457
417
|
name = "memchr"
|
|
458
|
-
version = "2.
|
|
418
|
+
version = "2.8.3"
|
|
459
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "
|
|
420
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
461
421
|
|
|
462
422
|
[[package]]
|
|
463
423
|
name = "minimal-lexical"
|
|
@@ -465,16 +425,6 @@ version = "0.2.1"
|
|
|
465
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
426
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
467
427
|
|
|
468
|
-
[[package]]
|
|
469
|
-
name = "miniz_oxide"
|
|
470
|
-
version = "0.8.9"
|
|
471
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
472
|
-
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
473
|
-
dependencies = [
|
|
474
|
-
"adler2",
|
|
475
|
-
"simd-adler32",
|
|
476
|
-
]
|
|
477
|
-
|
|
478
428
|
[[package]]
|
|
479
429
|
name = "nom"
|
|
480
430
|
version = "7.1.3"
|
|
@@ -487,31 +437,37 @@ dependencies = [
|
|
|
487
437
|
|
|
488
438
|
[[package]]
|
|
489
439
|
name = "num-conv"
|
|
490
|
-
version = "0.
|
|
440
|
+
version = "0.2.2"
|
|
491
441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
442
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
493
443
|
|
|
494
444
|
[[package]]
|
|
495
445
|
name = "once_cell"
|
|
496
|
-
version = "1.21.
|
|
446
|
+
version = "1.21.4"
|
|
497
447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "
|
|
448
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
499
449
|
|
|
500
450
|
[[package]]
|
|
501
451
|
name = "pbkdf2"
|
|
502
|
-
version = "0.
|
|
452
|
+
version = "0.13.0"
|
|
503
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
-
checksum = "
|
|
454
|
+
checksum = "112d82ceb8c5bf524d9af484d4e4970c9fd5a0cc15ba14ad93dccd28873b0629"
|
|
505
455
|
dependencies = [
|
|
506
456
|
"digest",
|
|
507
457
|
"hmac",
|
|
508
458
|
]
|
|
509
459
|
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "pin-project-lite"
|
|
462
|
+
version = "0.2.17"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
465
|
+
|
|
510
466
|
[[package]]
|
|
511
467
|
name = "pkg-config"
|
|
512
|
-
version = "0.3.
|
|
468
|
+
version = "0.3.34"
|
|
513
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
-
checksum = "
|
|
470
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
515
471
|
|
|
516
472
|
[[package]]
|
|
517
473
|
name = "powerfmt"
|
|
@@ -519,44 +475,50 @@ version = "0.2.0"
|
|
|
519
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
476
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
521
477
|
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "ppmd-rust"
|
|
480
|
+
version = "1.5.0"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "196a7c80b9a7652aba7cc070827516c2abe4ccdf53d128e1944003cf5726cff1"
|
|
483
|
+
|
|
522
484
|
[[package]]
|
|
523
485
|
name = "proc-macro2"
|
|
524
|
-
version = "1.0.
|
|
486
|
+
version = "1.0.107"
|
|
525
487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
-
checksum = "
|
|
488
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
527
489
|
dependencies = [
|
|
528
490
|
"unicode-ident",
|
|
529
491
|
]
|
|
530
492
|
|
|
531
493
|
[[package]]
|
|
532
494
|
name = "quote"
|
|
533
|
-
version = "1.0.
|
|
495
|
+
version = "1.0.47"
|
|
534
496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
497
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
536
498
|
dependencies = [
|
|
537
499
|
"proc-macro2",
|
|
538
500
|
]
|
|
539
501
|
|
|
540
502
|
[[package]]
|
|
541
503
|
name = "r-efi"
|
|
542
|
-
version = "
|
|
504
|
+
version = "6.0.0"
|
|
543
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
506
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
545
507
|
|
|
546
508
|
[[package]]
|
|
547
509
|
name = "rb-sys"
|
|
548
|
-
version = "0.9.
|
|
510
|
+
version = "0.9.130"
|
|
549
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
-
checksum = "
|
|
512
|
+
checksum = "02faf625bb10ba893e3ae620f19c9fb1b5f8fcae0fe4eb86bb3f2230fad75edb"
|
|
551
513
|
dependencies = [
|
|
552
514
|
"rb-sys-build",
|
|
553
515
|
]
|
|
554
516
|
|
|
555
517
|
[[package]]
|
|
556
518
|
name = "rb-sys-build"
|
|
557
|
-
version = "0.9.
|
|
519
|
+
version = "0.9.130"
|
|
558
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "
|
|
521
|
+
checksum = "05be6f9c86fe5482808162826f6c047d093b3670582296c770de1d94f8066694"
|
|
560
522
|
dependencies = [
|
|
561
523
|
"bindgen",
|
|
562
524
|
"lazy_static",
|
|
@@ -564,20 +526,20 @@ dependencies = [
|
|
|
564
526
|
"quote",
|
|
565
527
|
"regex",
|
|
566
528
|
"shell-words",
|
|
567
|
-
"syn",
|
|
529
|
+
"syn 2.0.119",
|
|
568
530
|
]
|
|
569
531
|
|
|
570
532
|
[[package]]
|
|
571
533
|
name = "rb-sys-env"
|
|
572
|
-
version = "0.
|
|
534
|
+
version = "0.2.3"
|
|
573
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
-
checksum = "
|
|
536
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
575
537
|
|
|
576
538
|
[[package]]
|
|
577
539
|
name = "regex"
|
|
578
|
-
version = "1.
|
|
540
|
+
version = "1.13.1"
|
|
579
541
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
-
checksum = "
|
|
542
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
581
543
|
dependencies = [
|
|
582
544
|
"aho-corasick",
|
|
583
545
|
"memchr",
|
|
@@ -587,9 +549,9 @@ dependencies = [
|
|
|
587
549
|
|
|
588
550
|
[[package]]
|
|
589
551
|
name = "regex-automata"
|
|
590
|
-
version = "0.4.
|
|
552
|
+
version = "0.4.18"
|
|
591
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
-
checksum = "
|
|
554
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
593
555
|
dependencies = [
|
|
594
556
|
"aho-corasick",
|
|
595
557
|
"memchr",
|
|
@@ -598,27 +560,28 @@ dependencies = [
|
|
|
598
560
|
|
|
599
561
|
[[package]]
|
|
600
562
|
name = "regex-syntax"
|
|
601
|
-
version = "0.8.
|
|
563
|
+
version = "0.8.11"
|
|
602
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
565
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
604
566
|
|
|
605
567
|
[[package]]
|
|
606
568
|
name = "rustc-hash"
|
|
607
|
-
version = "
|
|
569
|
+
version = "2.1.3"
|
|
608
570
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "
|
|
571
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
610
572
|
|
|
611
573
|
[[package]]
|
|
612
574
|
name = "rustversion"
|
|
613
|
-
version = "1.0.
|
|
575
|
+
version = "1.0.23"
|
|
614
576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "
|
|
577
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
616
578
|
|
|
617
579
|
[[package]]
|
|
618
580
|
name = "ruzip"
|
|
619
|
-
version = "0.1
|
|
581
|
+
version = "0.2.1"
|
|
620
582
|
dependencies = [
|
|
621
583
|
"magnus",
|
|
584
|
+
"rb-sys",
|
|
622
585
|
"zip",
|
|
623
586
|
]
|
|
624
587
|
|
|
@@ -628,40 +591,42 @@ version = "0.3.6"
|
|
|
628
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
592
|
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
630
593
|
|
|
631
|
-
[[package]]
|
|
632
|
-
name = "serde"
|
|
633
|
-
version = "1.0.228"
|
|
634
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
-
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
636
|
-
dependencies = [
|
|
637
|
-
"serde_core",
|
|
638
|
-
]
|
|
639
|
-
|
|
640
594
|
[[package]]
|
|
641
595
|
name = "serde_core"
|
|
642
|
-
version = "1.0.
|
|
596
|
+
version = "1.0.229"
|
|
643
597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
-
checksum = "
|
|
598
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
645
599
|
dependencies = [
|
|
646
600
|
"serde_derive",
|
|
647
601
|
]
|
|
648
602
|
|
|
649
603
|
[[package]]
|
|
650
604
|
name = "serde_derive"
|
|
651
|
-
version = "1.0.
|
|
605
|
+
version = "1.0.229"
|
|
652
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
-
checksum = "
|
|
607
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
654
608
|
dependencies = [
|
|
655
609
|
"proc-macro2",
|
|
656
610
|
"quote",
|
|
657
|
-
"syn",
|
|
611
|
+
"syn 3.0.6",
|
|
658
612
|
]
|
|
659
613
|
|
|
660
614
|
[[package]]
|
|
661
615
|
name = "sha1"
|
|
662
|
-
version = "0.
|
|
616
|
+
version = "0.11.0"
|
|
663
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
664
|
-
checksum = "
|
|
618
|
+
checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"cfg-if",
|
|
621
|
+
"cpufeatures",
|
|
622
|
+
"digest",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "sha2"
|
|
627
|
+
version = "0.11.0"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
|
|
665
630
|
dependencies = [
|
|
666
631
|
"cfg-if",
|
|
667
632
|
"cpufeatures",
|
|
@@ -670,9 +635,9 @@ dependencies = [
|
|
|
670
635
|
|
|
671
636
|
[[package]]
|
|
672
637
|
name = "shell-words"
|
|
673
|
-
version = "1.1.
|
|
638
|
+
version = "1.1.1"
|
|
674
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
640
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
676
641
|
|
|
677
642
|
[[package]]
|
|
678
643
|
name = "shlex"
|
|
@@ -680,23 +645,29 @@ version = "1.3.0"
|
|
|
680
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
646
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
682
647
|
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "shlex"
|
|
650
|
+
version = "2.0.1"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
653
|
+
|
|
683
654
|
[[package]]
|
|
684
655
|
name = "simd-adler32"
|
|
685
|
-
version = "0.3.
|
|
656
|
+
version = "0.3.10"
|
|
686
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
658
|
+
checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
|
|
688
659
|
|
|
689
660
|
[[package]]
|
|
690
|
-
name = "
|
|
691
|
-
version = "
|
|
661
|
+
name = "slab"
|
|
662
|
+
version = "0.4.12"
|
|
692
663
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
-
checksum = "
|
|
664
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
694
665
|
|
|
695
666
|
[[package]]
|
|
696
667
|
name = "syn"
|
|
697
|
-
version = "2.0.
|
|
668
|
+
version = "2.0.119"
|
|
698
669
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
670
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
700
671
|
dependencies = [
|
|
701
672
|
"proc-macro2",
|
|
702
673
|
"quote",
|
|
@@ -704,76 +675,59 @@ dependencies = [
|
|
|
704
675
|
]
|
|
705
676
|
|
|
706
677
|
[[package]]
|
|
707
|
-
name = "
|
|
708
|
-
version = "
|
|
709
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
711
|
-
dependencies = [
|
|
712
|
-
"thiserror-impl",
|
|
713
|
-
]
|
|
714
|
-
|
|
715
|
-
[[package]]
|
|
716
|
-
name = "thiserror-impl"
|
|
717
|
-
version = "2.0.17"
|
|
678
|
+
name = "syn"
|
|
679
|
+
version = "3.0.6"
|
|
718
680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
-
checksum = "
|
|
681
|
+
checksum = "8593e8e72159ed2257d083c7a454a85cbf854f37a0966d8d483aff8c8a3ebcee"
|
|
720
682
|
dependencies = [
|
|
721
683
|
"proc-macro2",
|
|
722
684
|
"quote",
|
|
723
|
-
"
|
|
685
|
+
"unicode-ident",
|
|
724
686
|
]
|
|
725
687
|
|
|
726
688
|
[[package]]
|
|
727
689
|
name = "time"
|
|
728
|
-
version = "0.3.
|
|
690
|
+
version = "0.3.55"
|
|
729
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
-
checksum = "
|
|
692
|
+
checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134"
|
|
731
693
|
dependencies = [
|
|
732
694
|
"deranged",
|
|
695
|
+
"js-sys",
|
|
733
696
|
"num-conv",
|
|
734
697
|
"powerfmt",
|
|
735
|
-
"
|
|
698
|
+
"serde_core",
|
|
736
699
|
"time-core",
|
|
737
700
|
]
|
|
738
701
|
|
|
739
702
|
[[package]]
|
|
740
703
|
name = "time-core"
|
|
741
|
-
version = "0.1.
|
|
704
|
+
version = "0.1.9"
|
|
742
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
-
checksum = "
|
|
706
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
744
707
|
|
|
745
708
|
[[package]]
|
|
746
|
-
name = "
|
|
747
|
-
version = "
|
|
748
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
750
|
-
|
|
751
|
-
[[package]]
|
|
752
|
-
name = "unicode-ident"
|
|
753
|
-
version = "1.0.20"
|
|
709
|
+
name = "typed-path"
|
|
710
|
+
version = "0.12.3"
|
|
754
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
-
checksum = "
|
|
712
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
756
713
|
|
|
757
714
|
[[package]]
|
|
758
|
-
name = "
|
|
759
|
-
version = "
|
|
715
|
+
name = "typenum"
|
|
716
|
+
version = "1.20.1"
|
|
760
717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
718
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
762
719
|
|
|
763
720
|
[[package]]
|
|
764
|
-
name = "
|
|
765
|
-
version = "1.0.
|
|
721
|
+
name = "unicode-ident"
|
|
722
|
+
version = "1.0.26"
|
|
766
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
|
-
checksum = "
|
|
768
|
-
dependencies = [
|
|
769
|
-
"wit-bindgen",
|
|
770
|
-
]
|
|
724
|
+
checksum = "d245f478577f809a851594d02313b640fb437e0bb33866753cff937863096954"
|
|
771
725
|
|
|
772
726
|
[[package]]
|
|
773
727
|
name = "wasm-bindgen"
|
|
774
|
-
version = "0.2.
|
|
728
|
+
version = "0.2.128"
|
|
775
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "
|
|
730
|
+
checksum = "aecb87a33d3b0c5e3b7aa46336eaf486cffafbd281b195e4c8b80d50df2351bf"
|
|
777
731
|
dependencies = [
|
|
778
732
|
"cfg-if",
|
|
779
733
|
"once_cell",
|
|
@@ -782,25 +736,11 @@ dependencies = [
|
|
|
782
736
|
"wasm-bindgen-shared",
|
|
783
737
|
]
|
|
784
738
|
|
|
785
|
-
[[package]]
|
|
786
|
-
name = "wasm-bindgen-backend"
|
|
787
|
-
version = "0.2.104"
|
|
788
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
|
|
790
|
-
dependencies = [
|
|
791
|
-
"bumpalo",
|
|
792
|
-
"log",
|
|
793
|
-
"proc-macro2",
|
|
794
|
-
"quote",
|
|
795
|
-
"syn",
|
|
796
|
-
"wasm-bindgen-shared",
|
|
797
|
-
]
|
|
798
|
-
|
|
799
739
|
[[package]]
|
|
800
740
|
name = "wasm-bindgen-macro"
|
|
801
|
-
version = "0.2.
|
|
741
|
+
version = "0.2.128"
|
|
802
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
743
|
+
checksum = "a690d511e3c1a8b3a55e33511e3c2c00c78415cd23650f32b808627f5696b9ed"
|
|
804
744
|
dependencies = [
|
|
805
745
|
"quote",
|
|
806
746
|
"wasm-bindgen-macro-support",
|
|
@@ -808,22 +748,22 @@ dependencies = [
|
|
|
808
748
|
|
|
809
749
|
[[package]]
|
|
810
750
|
name = "wasm-bindgen-macro-support"
|
|
811
|
-
version = "0.2.
|
|
751
|
+
version = "0.2.128"
|
|
812
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
753
|
+
checksum = "411e4887f0071ef2d2164a9d5fdf2d20efbef78fccd3a78b0c10a1dc5295e48a"
|
|
814
754
|
dependencies = [
|
|
755
|
+
"bumpalo",
|
|
815
756
|
"proc-macro2",
|
|
816
757
|
"quote",
|
|
817
|
-
"syn",
|
|
818
|
-
"wasm-bindgen-backend",
|
|
758
|
+
"syn 3.0.6",
|
|
819
759
|
"wasm-bindgen-shared",
|
|
820
760
|
]
|
|
821
761
|
|
|
822
762
|
[[package]]
|
|
823
763
|
name = "wasm-bindgen-shared"
|
|
824
|
-
version = "0.2.
|
|
764
|
+
version = "0.2.128"
|
|
825
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
-
checksum = "
|
|
766
|
+
checksum = "81941cd78d0c92026c33e5e01312845a4cb1e9af3407f9134b100dd03144103e"
|
|
827
767
|
dependencies = [
|
|
828
768
|
"unicode-ident",
|
|
829
769
|
]
|
|
@@ -834,76 +774,50 @@ version = "0.2.1"
|
|
|
834
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
835
775
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
836
776
|
|
|
837
|
-
[[package]]
|
|
838
|
-
name = "wit-bindgen"
|
|
839
|
-
version = "0.46.0"
|
|
840
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
-
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
842
|
-
|
|
843
|
-
[[package]]
|
|
844
|
-
name = "xz2"
|
|
845
|
-
version = "0.1.7"
|
|
846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
|
848
|
-
dependencies = [
|
|
849
|
-
"lzma-sys",
|
|
850
|
-
]
|
|
851
|
-
|
|
852
777
|
[[package]]
|
|
853
778
|
name = "zeroize"
|
|
854
|
-
version = "1.
|
|
779
|
+
version = "1.9.0"
|
|
855
780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
-
checksum = "
|
|
857
|
-
dependencies = [
|
|
858
|
-
"zeroize_derive",
|
|
859
|
-
]
|
|
860
|
-
|
|
861
|
-
[[package]]
|
|
862
|
-
name = "zeroize_derive"
|
|
863
|
-
version = "1.4.2"
|
|
864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
|
866
|
-
dependencies = [
|
|
867
|
-
"proc-macro2",
|
|
868
|
-
"quote",
|
|
869
|
-
"syn",
|
|
870
|
-
]
|
|
781
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
871
782
|
|
|
872
783
|
[[package]]
|
|
873
784
|
name = "zip"
|
|
874
|
-
version = "
|
|
785
|
+
version = "8.6.0"
|
|
875
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
-
checksum = "
|
|
787
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
877
788
|
dependencies = [
|
|
878
789
|
"aes",
|
|
879
|
-
"arbitrary",
|
|
880
790
|
"bzip2",
|
|
881
791
|
"constant_time_eq",
|
|
882
792
|
"crc32fast",
|
|
883
|
-
"crossbeam-utils",
|
|
884
793
|
"deflate64",
|
|
885
|
-
"displaydoc",
|
|
886
794
|
"flate2",
|
|
887
795
|
"getrandom",
|
|
888
796
|
"hmac",
|
|
889
797
|
"indexmap",
|
|
890
|
-
"lzma-
|
|
798
|
+
"lzma-rust2",
|
|
891
799
|
"memchr",
|
|
892
800
|
"pbkdf2",
|
|
801
|
+
"ppmd-rust",
|
|
893
802
|
"sha1",
|
|
894
|
-
"thiserror",
|
|
895
803
|
"time",
|
|
896
|
-
"
|
|
804
|
+
"typed-path",
|
|
897
805
|
"zeroize",
|
|
898
806
|
"zopfli",
|
|
899
807
|
"zstd",
|
|
900
808
|
]
|
|
901
809
|
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "zlib-rs"
|
|
812
|
+
version = "0.6.8"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "b268e58e7c693d7c271f93ffc4ba3b380412554231c85bf61ca7af91042a4112"
|
|
815
|
+
|
|
902
816
|
[[package]]
|
|
903
817
|
name = "zopfli"
|
|
904
|
-
version = "0.8.
|
|
818
|
+
version = "0.8.3"
|
|
905
819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
-
checksum = "
|
|
820
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
907
821
|
dependencies = [
|
|
908
822
|
"bumpalo",
|
|
909
823
|
"crc32fast",
|
|
@@ -922,18 +836,18 @@ dependencies = [
|
|
|
922
836
|
|
|
923
837
|
[[package]]
|
|
924
838
|
name = "zstd-safe"
|
|
925
|
-
version = "7.
|
|
839
|
+
version = "7.3.0"
|
|
926
840
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
-
checksum = "
|
|
841
|
+
checksum = "64d80649ab6db9d9f6f9c80a40becd948eda4714a0a5ac8c4d157a32231c7882"
|
|
928
842
|
dependencies = [
|
|
929
843
|
"zstd-sys",
|
|
930
844
|
]
|
|
931
845
|
|
|
932
846
|
[[package]]
|
|
933
847
|
name = "zstd-sys"
|
|
934
|
-
version = "2.0
|
|
848
|
+
version = "2.1.0+zstd.1.5.7"
|
|
935
849
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
-
checksum = "
|
|
850
|
+
checksum = "0ef0a8027ec3ee71300ab3bcbcd0393f434aa72b91ca6d635a39941deae8eea0"
|
|
937
851
|
dependencies = [
|
|
938
852
|
"cc",
|
|
939
853
|
"pkg-config",
|