ruzip 0.1.0 → 0.2.0
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 +1 -0
- data/.gitlab-ci.yml +1 -2
- data/.rdoc_options +9 -0
- data/CHANGELOG.md +6 -0
- data/README.md +21 -15
- data/Rakefile +4 -5
- data/ext/Cargo.lock +102 -220
- data/ext/Cargo.toml +4 -3
- data/ext/src/lib.rs +114 -100
- data/ruzip.gemspec +8 -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 +33 -0
- data/test/test_writer.rb +44 -0
- metadata +56 -20
- data/CODE_OF_CONDUCT.md +0 -84
- data/test/test_ruzip.rb +0 -7
data/ext/Cargo.lock
CHANGED
|
@@ -21,9 +21,9 @@ dependencies = [
|
|
|
21
21
|
|
|
22
22
|
[[package]]
|
|
23
23
|
name = "aho-corasick"
|
|
24
|
-
version = "1.1.
|
|
24
|
+
version = "1.1.4"
|
|
25
25
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
-
checksum = "
|
|
26
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
27
27
|
dependencies = [
|
|
28
28
|
"memchr",
|
|
29
29
|
]
|
|
@@ -74,40 +74,24 @@ dependencies = [
|
|
|
74
74
|
|
|
75
75
|
[[package]]
|
|
76
76
|
name = "bumpalo"
|
|
77
|
-
version = "3.19.
|
|
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"
|
|
77
|
+
version = "3.19.1"
|
|
84
78
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
-
checksum = "
|
|
79
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
86
80
|
|
|
87
81
|
[[package]]
|
|
88
82
|
name = "bzip2"
|
|
89
|
-
version = "0.
|
|
83
|
+
version = "0.6.1"
|
|
90
84
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
-
checksum = "
|
|
85
|
+
checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
|
|
92
86
|
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",
|
|
87
|
+
"libbz2-rs-sys",
|
|
104
88
|
]
|
|
105
89
|
|
|
106
90
|
[[package]]
|
|
107
91
|
name = "cc"
|
|
108
|
-
version = "1.2.
|
|
92
|
+
version = "1.2.51"
|
|
109
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
94
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
111
95
|
dependencies = [
|
|
112
96
|
"find-msvc-tools",
|
|
113
97
|
"jobserver",
|
|
@@ -190,17 +174,11 @@ dependencies = [
|
|
|
190
174
|
"cfg-if",
|
|
191
175
|
]
|
|
192
176
|
|
|
193
|
-
[[package]]
|
|
194
|
-
name = "crossbeam-utils"
|
|
195
|
-
version = "0.8.21"
|
|
196
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
198
|
-
|
|
199
177
|
[[package]]
|
|
200
178
|
name = "crypto-common"
|
|
201
|
-
version = "0.1.
|
|
179
|
+
version = "0.1.7"
|
|
202
180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
-
checksum = "
|
|
181
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
204
182
|
dependencies = [
|
|
205
183
|
"generic-array",
|
|
206
184
|
"typenum",
|
|
@@ -214,9 +192,9 @@ checksum = "26bf8fc351c5ed29b5c2f0cbbac1b209b74f60ecd62e675a998df72c49af5204"
|
|
|
214
192
|
|
|
215
193
|
[[package]]
|
|
216
194
|
name = "deranged"
|
|
217
|
-
version = "0.5.
|
|
195
|
+
version = "0.5.5"
|
|
218
196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
-
checksum = "
|
|
197
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
220
198
|
dependencies = [
|
|
221
199
|
"powerfmt",
|
|
222
200
|
]
|
|
@@ -243,17 +221,6 @@ dependencies = [
|
|
|
243
221
|
"subtle",
|
|
244
222
|
]
|
|
245
223
|
|
|
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",
|
|
255
|
-
]
|
|
256
|
-
|
|
257
224
|
[[package]]
|
|
258
225
|
name = "either"
|
|
259
226
|
version = "1.15.0"
|
|
@@ -268,25 +235,26 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
268
235
|
|
|
269
236
|
[[package]]
|
|
270
237
|
name = "find-msvc-tools"
|
|
271
|
-
version = "0.1.
|
|
238
|
+
version = "0.1.6"
|
|
272
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "
|
|
240
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
274
241
|
|
|
275
242
|
[[package]]
|
|
276
243
|
name = "flate2"
|
|
277
|
-
version = "1.1.
|
|
244
|
+
version = "1.1.5"
|
|
278
245
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
246
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
280
247
|
dependencies = [
|
|
281
248
|
"crc32fast",
|
|
249
|
+
"libz-rs-sys",
|
|
282
250
|
"miniz_oxide",
|
|
283
251
|
]
|
|
284
252
|
|
|
285
253
|
[[package]]
|
|
286
254
|
name = "generic-array"
|
|
287
|
-
version = "0.14.
|
|
255
|
+
version = "0.14.7"
|
|
288
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
-
checksum = "
|
|
257
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
290
258
|
dependencies = [
|
|
291
259
|
"typenum",
|
|
292
260
|
"version_check",
|
|
@@ -299,11 +267,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
299
267
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
300
268
|
dependencies = [
|
|
301
269
|
"cfg-if",
|
|
302
|
-
"js-sys",
|
|
303
270
|
"libc",
|
|
304
271
|
"r-efi",
|
|
305
272
|
"wasip2",
|
|
306
|
-
"wasm-bindgen",
|
|
307
273
|
]
|
|
308
274
|
|
|
309
275
|
[[package]]
|
|
@@ -314,9 +280,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
314
280
|
|
|
315
281
|
[[package]]
|
|
316
282
|
name = "hashbrown"
|
|
317
|
-
version = "0.16.
|
|
283
|
+
version = "0.16.1"
|
|
318
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
285
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
320
286
|
|
|
321
287
|
[[package]]
|
|
322
288
|
name = "hmac"
|
|
@@ -329,9 +295,9 @@ dependencies = [
|
|
|
329
295
|
|
|
330
296
|
[[package]]
|
|
331
297
|
name = "indexmap"
|
|
332
|
-
version = "2.12.
|
|
298
|
+
version = "2.12.1"
|
|
333
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
300
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
335
301
|
dependencies = [
|
|
336
302
|
"equivalent",
|
|
337
303
|
"hashbrown",
|
|
@@ -365,16 +331,6 @@ dependencies = [
|
|
|
365
331
|
"libc",
|
|
366
332
|
]
|
|
367
333
|
|
|
368
|
-
[[package]]
|
|
369
|
-
name = "js-sys"
|
|
370
|
-
version = "0.3.81"
|
|
371
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
|
|
373
|
-
dependencies = [
|
|
374
|
-
"once_cell",
|
|
375
|
-
"wasm-bindgen",
|
|
376
|
-
]
|
|
377
|
-
|
|
378
334
|
[[package]]
|
|
379
335
|
name = "lazy_static"
|
|
380
336
|
version = "1.5.0"
|
|
@@ -387,11 +343,17 @@ version = "1.3.0"
|
|
|
387
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
344
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
389
345
|
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "libbz2-rs-sys"
|
|
348
|
+
version = "0.2.2"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
|
351
|
+
|
|
390
352
|
[[package]]
|
|
391
353
|
name = "libc"
|
|
392
|
-
version = "0.2.
|
|
354
|
+
version = "0.2.179"
|
|
393
355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
-
checksum = "
|
|
356
|
+
checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
|
|
395
357
|
|
|
396
358
|
[[package]]
|
|
397
359
|
name = "libloading"
|
|
@@ -404,37 +366,35 @@ dependencies = [
|
|
|
404
366
|
]
|
|
405
367
|
|
|
406
368
|
[[package]]
|
|
407
|
-
name = "
|
|
408
|
-
version = "0.
|
|
369
|
+
name = "libz-rs-sys"
|
|
370
|
+
version = "0.5.5"
|
|
409
371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
-
checksum = "
|
|
372
|
+
checksum = "c10501e7805cee23da17c7790e59df2870c0d4043ec6d03f67d31e2b53e77415"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"zlib-rs",
|
|
375
|
+
]
|
|
411
376
|
|
|
412
377
|
[[package]]
|
|
413
|
-
name = "
|
|
414
|
-
version = "0.
|
|
378
|
+
name = "log"
|
|
379
|
+
version = "0.4.29"
|
|
415
380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
-
checksum = "
|
|
417
|
-
dependencies = [
|
|
418
|
-
"byteorder",
|
|
419
|
-
"crc",
|
|
420
|
-
]
|
|
381
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
421
382
|
|
|
422
383
|
[[package]]
|
|
423
|
-
name = "lzma-
|
|
424
|
-
version = "0.
|
|
384
|
+
name = "lzma-rust2"
|
|
385
|
+
version = "0.15.4"
|
|
425
386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
-
checksum = "
|
|
387
|
+
checksum = "48172246aa7c3ea28e423295dd1ca2589a24617cc4e588bb8cfe177cb2c54d95"
|
|
427
388
|
dependencies = [
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
"pkg-config",
|
|
389
|
+
"crc",
|
|
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,9 +404,9 @@ 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",
|
|
@@ -491,12 +451,6 @@ version = "0.1.0"
|
|
|
491
451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
452
|
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
493
453
|
|
|
494
|
-
[[package]]
|
|
495
|
-
name = "once_cell"
|
|
496
|
-
version = "1.21.3"
|
|
497
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
-
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
499
|
-
|
|
500
454
|
[[package]]
|
|
501
455
|
name = "pbkdf2"
|
|
502
456
|
version = "0.12.2"
|
|
@@ -519,20 +473,26 @@ version = "0.2.0"
|
|
|
519
473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
474
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
521
475
|
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "ppmd-rust"
|
|
478
|
+
version = "1.3.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "d558c559f0450f16f2a27a1f017ef38468c1090c9ce63c8e51366232d53717b4"
|
|
481
|
+
|
|
522
482
|
[[package]]
|
|
523
483
|
name = "proc-macro2"
|
|
524
|
-
version = "1.0.
|
|
484
|
+
version = "1.0.104"
|
|
525
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
526
|
-
checksum = "
|
|
486
|
+
checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
|
|
527
487
|
dependencies = [
|
|
528
488
|
"unicode-ident",
|
|
529
489
|
]
|
|
530
490
|
|
|
531
491
|
[[package]]
|
|
532
492
|
name = "quote"
|
|
533
|
-
version = "1.0.
|
|
493
|
+
version = "1.0.42"
|
|
534
494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
495
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
536
496
|
dependencies = [
|
|
537
497
|
"proc-macro2",
|
|
538
498
|
]
|
|
@@ -545,18 +505,18 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
|
545
505
|
|
|
546
506
|
[[package]]
|
|
547
507
|
name = "rb-sys"
|
|
548
|
-
version = "0.9.
|
|
508
|
+
version = "0.9.123"
|
|
549
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
-
checksum = "
|
|
510
|
+
checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
|
|
551
511
|
dependencies = [
|
|
552
512
|
"rb-sys-build",
|
|
553
513
|
]
|
|
554
514
|
|
|
555
515
|
[[package]]
|
|
556
516
|
name = "rb-sys-build"
|
|
557
|
-
version = "0.9.
|
|
517
|
+
version = "0.9.123"
|
|
558
518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "
|
|
519
|
+
checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
|
|
560
520
|
dependencies = [
|
|
561
521
|
"bindgen",
|
|
562
522
|
"lazy_static",
|
|
@@ -569,9 +529,9 @@ dependencies = [
|
|
|
569
529
|
|
|
570
530
|
[[package]]
|
|
571
531
|
name = "rb-sys-env"
|
|
572
|
-
version = "0.
|
|
532
|
+
version = "0.2.2"
|
|
573
533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
-
checksum = "
|
|
534
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
575
535
|
|
|
576
536
|
[[package]]
|
|
577
537
|
name = "regex"
|
|
@@ -608,17 +568,12 @@ version = "1.1.0"
|
|
|
608
568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
569
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
610
570
|
|
|
611
|
-
[[package]]
|
|
612
|
-
name = "rustversion"
|
|
613
|
-
version = "1.0.22"
|
|
614
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
616
|
-
|
|
617
571
|
[[package]]
|
|
618
572
|
name = "ruzip"
|
|
619
|
-
version = "0.
|
|
573
|
+
version = "0.2.0"
|
|
620
574
|
dependencies = [
|
|
621
575
|
"magnus",
|
|
576
|
+
"rb-sys",
|
|
622
577
|
"zip",
|
|
623
578
|
]
|
|
624
579
|
|
|
@@ -668,11 +623,22 @@ dependencies = [
|
|
|
668
623
|
"digest",
|
|
669
624
|
]
|
|
670
625
|
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "sha2"
|
|
628
|
+
version = "0.10.9"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"cfg-if",
|
|
633
|
+
"cpufeatures",
|
|
634
|
+
"digest",
|
|
635
|
+
]
|
|
636
|
+
|
|
671
637
|
[[package]]
|
|
672
638
|
name = "shell-words"
|
|
673
|
-
version = "1.1.
|
|
639
|
+
version = "1.1.1"
|
|
674
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
-
checksum = "
|
|
641
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
676
642
|
|
|
677
643
|
[[package]]
|
|
678
644
|
name = "shlex"
|
|
@@ -682,9 +648,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
682
648
|
|
|
683
649
|
[[package]]
|
|
684
650
|
name = "simd-adler32"
|
|
685
|
-
version = "0.3.
|
|
651
|
+
version = "0.3.8"
|
|
686
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
687
|
-
checksum = "
|
|
653
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
688
654
|
|
|
689
655
|
[[package]]
|
|
690
656
|
name = "subtle"
|
|
@@ -694,35 +660,15 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
694
660
|
|
|
695
661
|
[[package]]
|
|
696
662
|
name = "syn"
|
|
697
|
-
version = "2.0.
|
|
663
|
+
version = "2.0.113"
|
|
698
664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
665
|
+
checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4"
|
|
700
666
|
dependencies = [
|
|
701
667
|
"proc-macro2",
|
|
702
668
|
"quote",
|
|
703
669
|
"unicode-ident",
|
|
704
670
|
]
|
|
705
671
|
|
|
706
|
-
[[package]]
|
|
707
|
-
name = "thiserror"
|
|
708
|
-
version = "2.0.17"
|
|
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"
|
|
718
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
-
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
720
|
-
dependencies = [
|
|
721
|
-
"proc-macro2",
|
|
722
|
-
"quote",
|
|
723
|
-
"syn",
|
|
724
|
-
]
|
|
725
|
-
|
|
726
672
|
[[package]]
|
|
727
673
|
name = "time"
|
|
728
674
|
version = "0.3.44"
|
|
@@ -750,9 +696,9 @@ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
|
750
696
|
|
|
751
697
|
[[package]]
|
|
752
698
|
name = "unicode-ident"
|
|
753
|
-
version = "1.0.
|
|
699
|
+
version = "1.0.22"
|
|
754
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
-
checksum = "
|
|
701
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
756
702
|
|
|
757
703
|
[[package]]
|
|
758
704
|
name = "version_check"
|
|
@@ -769,65 +715,6 @@ dependencies = [
|
|
|
769
715
|
"wit-bindgen",
|
|
770
716
|
]
|
|
771
717
|
|
|
772
|
-
[[package]]
|
|
773
|
-
name = "wasm-bindgen"
|
|
774
|
-
version = "0.2.104"
|
|
775
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
-
checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
|
|
777
|
-
dependencies = [
|
|
778
|
-
"cfg-if",
|
|
779
|
-
"once_cell",
|
|
780
|
-
"rustversion",
|
|
781
|
-
"wasm-bindgen-macro",
|
|
782
|
-
"wasm-bindgen-shared",
|
|
783
|
-
]
|
|
784
|
-
|
|
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
|
-
[[package]]
|
|
800
|
-
name = "wasm-bindgen-macro"
|
|
801
|
-
version = "0.2.104"
|
|
802
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
|
|
804
|
-
dependencies = [
|
|
805
|
-
"quote",
|
|
806
|
-
"wasm-bindgen-macro-support",
|
|
807
|
-
]
|
|
808
|
-
|
|
809
|
-
[[package]]
|
|
810
|
-
name = "wasm-bindgen-macro-support"
|
|
811
|
-
version = "0.2.104"
|
|
812
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
|
|
814
|
-
dependencies = [
|
|
815
|
-
"proc-macro2",
|
|
816
|
-
"quote",
|
|
817
|
-
"syn",
|
|
818
|
-
"wasm-bindgen-backend",
|
|
819
|
-
"wasm-bindgen-shared",
|
|
820
|
-
]
|
|
821
|
-
|
|
822
|
-
[[package]]
|
|
823
|
-
name = "wasm-bindgen-shared"
|
|
824
|
-
version = "0.2.104"
|
|
825
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
-
checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
|
|
827
|
-
dependencies = [
|
|
828
|
-
"unicode-ident",
|
|
829
|
-
]
|
|
830
|
-
|
|
831
718
|
[[package]]
|
|
832
719
|
name = "windows-link"
|
|
833
720
|
version = "0.2.1"
|
|
@@ -840,15 +727,6 @@ version = "0.46.0"
|
|
|
840
727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
728
|
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
842
729
|
|
|
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
730
|
[[package]]
|
|
853
731
|
name = "zeroize"
|
|
854
732
|
version = "1.8.2"
|
|
@@ -860,9 +738,9 @@ dependencies = [
|
|
|
860
738
|
|
|
861
739
|
[[package]]
|
|
862
740
|
name = "zeroize_derive"
|
|
863
|
-
version = "1.4.
|
|
741
|
+
version = "1.4.3"
|
|
864
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "
|
|
743
|
+
checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
|
|
866
744
|
dependencies = [
|
|
867
745
|
"proc-macro2",
|
|
868
746
|
"quote",
|
|
@@ -871,39 +749,43 @@ dependencies = [
|
|
|
871
749
|
|
|
872
750
|
[[package]]
|
|
873
751
|
name = "zip"
|
|
874
|
-
version = "
|
|
752
|
+
version = "7.0.0"
|
|
875
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
-
checksum = "
|
|
754
|
+
checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037"
|
|
877
755
|
dependencies = [
|
|
878
756
|
"aes",
|
|
879
757
|
"arbitrary",
|
|
880
758
|
"bzip2",
|
|
881
759
|
"constant_time_eq",
|
|
882
760
|
"crc32fast",
|
|
883
|
-
"crossbeam-utils",
|
|
884
761
|
"deflate64",
|
|
885
|
-
"displaydoc",
|
|
886
762
|
"flate2",
|
|
763
|
+
"generic-array",
|
|
887
764
|
"getrandom",
|
|
888
765
|
"hmac",
|
|
889
766
|
"indexmap",
|
|
890
|
-
"lzma-
|
|
767
|
+
"lzma-rust2",
|
|
891
768
|
"memchr",
|
|
892
769
|
"pbkdf2",
|
|
770
|
+
"ppmd-rust",
|
|
893
771
|
"sha1",
|
|
894
|
-
"thiserror",
|
|
895
772
|
"time",
|
|
896
|
-
"xz2",
|
|
897
773
|
"zeroize",
|
|
898
774
|
"zopfli",
|
|
899
775
|
"zstd",
|
|
900
776
|
]
|
|
901
777
|
|
|
778
|
+
[[package]]
|
|
779
|
+
name = "zlib-rs"
|
|
780
|
+
version = "0.5.5"
|
|
781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
782
|
+
checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
|
|
783
|
+
|
|
902
784
|
[[package]]
|
|
903
785
|
name = "zopfli"
|
|
904
|
-
version = "0.8.
|
|
786
|
+
version = "0.8.3"
|
|
905
787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
-
checksum = "
|
|
788
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
907
789
|
dependencies = [
|
|
908
790
|
"bumpalo",
|
|
909
791
|
"crc32fast",
|
data/ext/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "ruzip"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.2.0"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
authors = ["Kitaiti Makoto <KitaitiMakoto@gmail.com>"]
|
|
6
6
|
publish = false
|
|
@@ -9,5 +9,6 @@ publish = false
|
|
|
9
9
|
crate-type = ["cdylib"]
|
|
10
10
|
|
|
11
11
|
[dependencies]
|
|
12
|
-
magnus = { version = "0.
|
|
13
|
-
zip = "
|
|
12
|
+
magnus = { version = "0.8.0" }
|
|
13
|
+
zip = "7.0.0"
|
|
14
|
+
rb-sys = { version = "*", features = ["stable-api-compiled-fallback"] }
|