datago 2025.6.4__tar.gz → 2025.6.5__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.
- {datago-2025.6.4 → datago-2025.6.5}/Cargo.lock +559 -2
- {datago-2025.6.4 → datago-2025.6.5}/Cargo.toml +2 -2
- {datago-2025.6.4 → datago-2025.6.5}/PKG-INFO +1 -1
- {datago-2025.6.4 → datago-2025.6.5}/src/generator_files.rs +2 -4
- {datago-2025.6.4 → datago-2025.6.5}/src/worker_files.rs +63 -0
- {datago-2025.6.4 → datago-2025.6.5}/.github/workflows/ci-cd.yml +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/.github/workflows/rust.yml +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/.gitignore +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/.pre-commit-config.yaml +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/LICENSE +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/README.md +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/assets/447175851-2277afcb-8abf-4d17-b2db-dae27c6056d0.png +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/pyproject.toml +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/benchmark_db.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/benchmark_filesystem.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/benchmark_webdataset.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/dataset.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/raw_types.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/test_datago_client.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/test_datago_db.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/test_datago_edge_cases.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/python/test_datago_filesystem.py +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/requirements-tests.txt +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/requirements.txt +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/client.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/generator_http.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/generator_wds.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/image_processing.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/lib.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/main.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/structs.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/worker_http.rs +0 -0
- {datago-2025.6.4 → datago-2025.6.5}/src/worker_wds.rs +0 -0
|
@@ -26,6 +26,12 @@ dependencies = [
|
|
|
26
26
|
"memchr",
|
|
27
27
|
]
|
|
28
28
|
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "aligned-vec"
|
|
31
|
+
version = "0.5.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
|
|
34
|
+
|
|
29
35
|
[[package]]
|
|
30
36
|
name = "anstream"
|
|
31
37
|
version = "0.6.18"
|
|
@@ -82,6 +88,29 @@ version = "1.0.97"
|
|
|
82
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
89
|
checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
|
|
84
90
|
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "arbitrary"
|
|
93
|
+
version = "1.4.1"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "arg_enum_proc_macro"
|
|
99
|
+
version = "0.3.4"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"proc-macro2",
|
|
104
|
+
"quote",
|
|
105
|
+
"syn",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "arrayvec"
|
|
110
|
+
version = "0.7.6"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
113
|
+
|
|
85
114
|
[[package]]
|
|
86
115
|
name = "async-channel"
|
|
87
116
|
version = "1.9.0"
|
|
@@ -283,6 +312,29 @@ version = "1.4.0"
|
|
|
283
312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
313
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
285
314
|
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "av1-grain"
|
|
317
|
+
version = "0.2.4"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"anyhow",
|
|
322
|
+
"arrayvec",
|
|
323
|
+
"log",
|
|
324
|
+
"nom",
|
|
325
|
+
"num-rational",
|
|
326
|
+
"v_frame",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "avif-serialize"
|
|
331
|
+
version = "0.8.3"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "98922d6a4cfbcb08820c69d8eeccc05bb1f29bfa06b4f5b1dbfe9a868bd7608e"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"arrayvec",
|
|
336
|
+
]
|
|
337
|
+
|
|
286
338
|
[[package]]
|
|
287
339
|
name = "backtrace"
|
|
288
340
|
version = "0.3.74"
|
|
@@ -304,6 +356,12 @@ version = "0.22.1"
|
|
|
304
356
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
357
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
306
358
|
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "bit_field"
|
|
361
|
+
version = "0.10.2"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
|
|
364
|
+
|
|
307
365
|
[[package]]
|
|
308
366
|
name = "bitflags"
|
|
309
367
|
version = "1.3.2"
|
|
@@ -316,6 +374,12 @@ version = "2.9.0"
|
|
|
316
374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
375
|
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
318
376
|
|
|
377
|
+
[[package]]
|
|
378
|
+
name = "bitstream-io"
|
|
379
|
+
version = "2.6.0"
|
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
+
checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
|
|
382
|
+
|
|
319
383
|
[[package]]
|
|
320
384
|
name = "blocking"
|
|
321
385
|
version = "1.6.1"
|
|
@@ -335,6 +399,12 @@ version = "0.1.6"
|
|
|
335
399
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
400
|
checksum = "3572b24445a122332bb25a2637248d62ca8b567351d98b1194ca4132c61810bd"
|
|
337
401
|
|
|
402
|
+
[[package]]
|
|
403
|
+
name = "built"
|
|
404
|
+
version = "0.7.7"
|
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
406
|
+
checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
|
|
407
|
+
|
|
338
408
|
[[package]]
|
|
339
409
|
name = "bumpalo"
|
|
340
410
|
version = "3.17.0"
|
|
@@ -371,6 +441,8 @@ version = "1.2.16"
|
|
|
371
441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
442
|
checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
|
|
373
443
|
dependencies = [
|
|
444
|
+
"jobserver",
|
|
445
|
+
"libc",
|
|
374
446
|
"shlex",
|
|
375
447
|
]
|
|
376
448
|
|
|
@@ -385,6 +457,16 @@ dependencies = [
|
|
|
385
457
|
"uuid",
|
|
386
458
|
]
|
|
387
459
|
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "cfg-expr"
|
|
462
|
+
version = "0.15.8"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
|
|
465
|
+
dependencies = [
|
|
466
|
+
"smallvec",
|
|
467
|
+
"target-lexicon 0.12.16",
|
|
468
|
+
]
|
|
469
|
+
|
|
388
470
|
[[package]]
|
|
389
471
|
name = "cfg-if"
|
|
390
472
|
version = "1.0.0"
|
|
@@ -431,6 +513,12 @@ version = "0.7.4"
|
|
|
431
513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
514
|
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
|
433
515
|
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "color_quant"
|
|
518
|
+
version = "1.1.0"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
521
|
+
|
|
434
522
|
[[package]]
|
|
435
523
|
name = "colorchoice"
|
|
436
524
|
version = "1.0.3"
|
|
@@ -471,12 +559,37 @@ dependencies = [
|
|
|
471
559
|
"cfg-if",
|
|
472
560
|
]
|
|
473
561
|
|
|
562
|
+
[[package]]
|
|
563
|
+
name = "crossbeam-deque"
|
|
564
|
+
version = "0.8.6"
|
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
567
|
+
dependencies = [
|
|
568
|
+
"crossbeam-epoch",
|
|
569
|
+
"crossbeam-utils",
|
|
570
|
+
]
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "crossbeam-epoch"
|
|
574
|
+
version = "0.9.18"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"crossbeam-utils",
|
|
579
|
+
]
|
|
580
|
+
|
|
474
581
|
[[package]]
|
|
475
582
|
name = "crossbeam-utils"
|
|
476
583
|
version = "0.8.21"
|
|
477
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
585
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
479
586
|
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "crunchy"
|
|
589
|
+
version = "0.2.3"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
|
|
592
|
+
|
|
480
593
|
[[package]]
|
|
481
594
|
name = "csv"
|
|
482
595
|
version = "1.3.1"
|
|
@@ -500,7 +613,7 @@ dependencies = [
|
|
|
500
613
|
|
|
501
614
|
[[package]]
|
|
502
615
|
name = "datago"
|
|
503
|
-
version = "2025.6.
|
|
616
|
+
version = "2025.6.5"
|
|
504
617
|
dependencies = [
|
|
505
618
|
"async-compression",
|
|
506
619
|
"async-tar",
|
|
@@ -574,6 +687,12 @@ dependencies = [
|
|
|
574
687
|
"litrs",
|
|
575
688
|
]
|
|
576
689
|
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "either"
|
|
692
|
+
version = "1.15.0"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
695
|
+
|
|
577
696
|
[[package]]
|
|
578
697
|
name = "encode_unicode"
|
|
579
698
|
version = "1.0.0"
|
|
@@ -655,6 +774,21 @@ dependencies = [
|
|
|
655
774
|
"pin-project-lite",
|
|
656
775
|
]
|
|
657
776
|
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "exr"
|
|
779
|
+
version = "1.73.0"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"bit_field",
|
|
784
|
+
"half",
|
|
785
|
+
"lebe",
|
|
786
|
+
"miniz_oxide",
|
|
787
|
+
"rayon-core",
|
|
788
|
+
"smallvec",
|
|
789
|
+
"zune-inflate",
|
|
790
|
+
]
|
|
791
|
+
|
|
658
792
|
[[package]]
|
|
659
793
|
name = "fast_image_resize"
|
|
660
794
|
version = "5.1.3"
|
|
@@ -863,6 +997,16 @@ dependencies = [
|
|
|
863
997
|
"windows-targets 0.52.6",
|
|
864
998
|
]
|
|
865
999
|
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "gif"
|
|
1002
|
+
version = "0.13.1"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"color_quant",
|
|
1007
|
+
"weezl",
|
|
1008
|
+
]
|
|
1009
|
+
|
|
866
1010
|
[[package]]
|
|
867
1011
|
name = "gimli"
|
|
868
1012
|
version = "0.31.1"
|
|
@@ -900,6 +1044,16 @@ dependencies = [
|
|
|
900
1044
|
"tracing",
|
|
901
1045
|
]
|
|
902
1046
|
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "half"
|
|
1049
|
+
version = "2.6.0"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"cfg-if",
|
|
1054
|
+
"crunchy",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
903
1057
|
[[package]]
|
|
904
1058
|
name = "hashbrown"
|
|
905
1059
|
version = "0.15.2"
|
|
@@ -1182,12 +1336,37 @@ checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
|
|
|
1182
1336
|
dependencies = [
|
|
1183
1337
|
"bytemuck",
|
|
1184
1338
|
"byteorder-lite",
|
|
1339
|
+
"color_quant",
|
|
1340
|
+
"exr",
|
|
1341
|
+
"gif",
|
|
1342
|
+
"image-webp",
|
|
1185
1343
|
"num-traits",
|
|
1186
1344
|
"png",
|
|
1345
|
+
"qoi",
|
|
1346
|
+
"ravif",
|
|
1347
|
+
"rayon",
|
|
1348
|
+
"rgb",
|
|
1349
|
+
"tiff",
|
|
1187
1350
|
"zune-core",
|
|
1188
1351
|
"zune-jpeg",
|
|
1189
1352
|
]
|
|
1190
1353
|
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "image-webp"
|
|
1356
|
+
version = "0.2.1"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "b77d01e822461baa8409e156015a1d91735549f0f2c17691bd2d996bef238f7f"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"byteorder-lite",
|
|
1361
|
+
"quick-error",
|
|
1362
|
+
]
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "imgref"
|
|
1366
|
+
version = "1.11.0"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
|
|
1369
|
+
|
|
1191
1370
|
[[package]]
|
|
1192
1371
|
name = "indexmap"
|
|
1193
1372
|
version = "2.7.1"
|
|
@@ -1225,6 +1404,17 @@ dependencies = [
|
|
|
1225
1404
|
"web-sys",
|
|
1226
1405
|
]
|
|
1227
1406
|
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "interpolate_name"
|
|
1409
|
+
version = "0.2.4"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1412
|
+
dependencies = [
|
|
1413
|
+
"proc-macro2",
|
|
1414
|
+
"quote",
|
|
1415
|
+
"syn",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1228
1418
|
[[package]]
|
|
1229
1419
|
name = "ipnet"
|
|
1230
1420
|
version = "2.11.0"
|
|
@@ -1248,6 +1438,15 @@ version = "1.70.1"
|
|
|
1248
1438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
1439
|
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1250
1440
|
|
|
1441
|
+
[[package]]
|
|
1442
|
+
name = "itertools"
|
|
1443
|
+
version = "0.12.1"
|
|
1444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1445
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1446
|
+
dependencies = [
|
|
1447
|
+
"either",
|
|
1448
|
+
]
|
|
1449
|
+
|
|
1251
1450
|
[[package]]
|
|
1252
1451
|
name = "itoa"
|
|
1253
1452
|
version = "1.0.15"
|
|
@@ -1278,6 +1477,21 @@ dependencies = [
|
|
|
1278
1477
|
"syn",
|
|
1279
1478
|
]
|
|
1280
1479
|
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "jobserver"
|
|
1482
|
+
version = "0.1.32"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"libc",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "jpeg-decoder"
|
|
1491
|
+
version = "0.3.1"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
|
|
1494
|
+
|
|
1281
1495
|
[[package]]
|
|
1282
1496
|
name = "js-sys"
|
|
1283
1497
|
version = "0.3.77"
|
|
@@ -1313,12 +1527,28 @@ version = "1.5.0"
|
|
|
1313
1527
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1314
1528
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
1315
1529
|
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "lebe"
|
|
1532
|
+
version = "0.5.2"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
|
|
1535
|
+
|
|
1316
1536
|
[[package]]
|
|
1317
1537
|
name = "libc"
|
|
1318
1538
|
version = "0.2.170"
|
|
1319
1539
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1320
1540
|
checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
|
|
1321
1541
|
|
|
1542
|
+
[[package]]
|
|
1543
|
+
name = "libfuzzer-sys"
|
|
1544
|
+
version = "0.4.9"
|
|
1545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1546
|
+
checksum = "cf78f52d400cf2d84a3a973a78a592b4adc535739e0a5597a0da6f0c357adc75"
|
|
1547
|
+
dependencies = [
|
|
1548
|
+
"arbitrary",
|
|
1549
|
+
"cc",
|
|
1550
|
+
]
|
|
1551
|
+
|
|
1322
1552
|
[[package]]
|
|
1323
1553
|
name = "libredox"
|
|
1324
1554
|
version = "0.1.3"
|
|
@@ -1373,6 +1603,25 @@ dependencies = [
|
|
|
1373
1603
|
"value-bag",
|
|
1374
1604
|
]
|
|
1375
1605
|
|
|
1606
|
+
[[package]]
|
|
1607
|
+
name = "loop9"
|
|
1608
|
+
version = "0.1.5"
|
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1610
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1611
|
+
dependencies = [
|
|
1612
|
+
"imgref",
|
|
1613
|
+
]
|
|
1614
|
+
|
|
1615
|
+
[[package]]
|
|
1616
|
+
name = "maybe-rayon"
|
|
1617
|
+
version = "0.1.1"
|
|
1618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1619
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
1620
|
+
dependencies = [
|
|
1621
|
+
"cfg-if",
|
|
1622
|
+
"rayon",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1376
1625
|
[[package]]
|
|
1377
1626
|
name = "memchr"
|
|
1378
1627
|
version = "2.7.4"
|
|
@@ -1394,6 +1643,12 @@ version = "0.3.17"
|
|
|
1394
1643
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
1644
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
1396
1645
|
|
|
1646
|
+
[[package]]
|
|
1647
|
+
name = "minimal-lexical"
|
|
1648
|
+
version = "0.2.1"
|
|
1649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1651
|
+
|
|
1397
1652
|
[[package]]
|
|
1398
1653
|
name = "miniz_oxide"
|
|
1399
1654
|
version = "0.8.5"
|
|
@@ -1432,6 +1687,69 @@ dependencies = [
|
|
|
1432
1687
|
"tempfile",
|
|
1433
1688
|
]
|
|
1434
1689
|
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "new_debug_unreachable"
|
|
1692
|
+
version = "1.0.6"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "nom"
|
|
1698
|
+
version = "7.1.3"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"memchr",
|
|
1703
|
+
"minimal-lexical",
|
|
1704
|
+
]
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "noop_proc_macro"
|
|
1708
|
+
version = "0.3.0"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "num-bigint"
|
|
1714
|
+
version = "0.4.6"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1717
|
+
dependencies = [
|
|
1718
|
+
"num-integer",
|
|
1719
|
+
"num-traits",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1722
|
+
[[package]]
|
|
1723
|
+
name = "num-derive"
|
|
1724
|
+
version = "0.4.2"
|
|
1725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1726
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
1727
|
+
dependencies = [
|
|
1728
|
+
"proc-macro2",
|
|
1729
|
+
"quote",
|
|
1730
|
+
"syn",
|
|
1731
|
+
]
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "num-integer"
|
|
1735
|
+
version = "0.1.46"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"num-traits",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "num-rational"
|
|
1744
|
+
version = "0.4.2"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"num-bigint",
|
|
1749
|
+
"num-integer",
|
|
1750
|
+
"num-traits",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1435
1753
|
[[package]]
|
|
1436
1754
|
name = "num-traits"
|
|
1437
1755
|
version = "0.2.19"
|
|
@@ -1551,6 +1869,12 @@ dependencies = [
|
|
|
1551
1869
|
"winapi",
|
|
1552
1870
|
]
|
|
1553
1871
|
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "paste"
|
|
1874
|
+
version = "1.0.15"
|
|
1875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1877
|
+
|
|
1554
1878
|
[[package]]
|
|
1555
1879
|
name = "percent-encoding"
|
|
1556
1880
|
version = "2.3.1"
|
|
@@ -1681,6 +2005,25 @@ dependencies = [
|
|
|
1681
2005
|
"unicode-ident",
|
|
1682
2006
|
]
|
|
1683
2007
|
|
|
2008
|
+
[[package]]
|
|
2009
|
+
name = "profiling"
|
|
2010
|
+
version = "1.0.16"
|
|
2011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
+
checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d"
|
|
2013
|
+
dependencies = [
|
|
2014
|
+
"profiling-procmacros",
|
|
2015
|
+
]
|
|
2016
|
+
|
|
2017
|
+
[[package]]
|
|
2018
|
+
name = "profiling-procmacros"
|
|
2019
|
+
version = "1.0.16"
|
|
2020
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2021
|
+
checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30"
|
|
2022
|
+
dependencies = [
|
|
2023
|
+
"quote",
|
|
2024
|
+
"syn",
|
|
2025
|
+
]
|
|
2026
|
+
|
|
1684
2027
|
[[package]]
|
|
1685
2028
|
name = "pyo3"
|
|
1686
2029
|
version = "0.24.1"
|
|
@@ -1706,7 +2049,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1706
2049
|
checksum = "e27165889bd793000a098bb966adc4300c312497ea25cf7a690a9f0ac5aa5fc1"
|
|
1707
2050
|
dependencies = [
|
|
1708
2051
|
"once_cell",
|
|
1709
|
-
"target-lexicon",
|
|
2052
|
+
"target-lexicon 0.13.2",
|
|
1710
2053
|
]
|
|
1711
2054
|
|
|
1712
2055
|
[[package]]
|
|
@@ -1744,6 +2087,21 @@ dependencies = [
|
|
|
1744
2087
|
"syn",
|
|
1745
2088
|
]
|
|
1746
2089
|
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "qoi"
|
|
2092
|
+
version = "0.4.1"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"bytemuck",
|
|
2097
|
+
]
|
|
2098
|
+
|
|
2099
|
+
[[package]]
|
|
2100
|
+
name = "quick-error"
|
|
2101
|
+
version = "2.0.1"
|
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
2104
|
+
|
|
1747
2105
|
[[package]]
|
|
1748
2106
|
name = "quote"
|
|
1749
2107
|
version = "1.0.39"
|
|
@@ -1813,6 +2171,76 @@ dependencies = [
|
|
|
1813
2171
|
"getrandom 0.3.1",
|
|
1814
2172
|
]
|
|
1815
2173
|
|
|
2174
|
+
[[package]]
|
|
2175
|
+
name = "rav1e"
|
|
2176
|
+
version = "0.7.1"
|
|
2177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2178
|
+
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
|
|
2179
|
+
dependencies = [
|
|
2180
|
+
"arbitrary",
|
|
2181
|
+
"arg_enum_proc_macro",
|
|
2182
|
+
"arrayvec",
|
|
2183
|
+
"av1-grain",
|
|
2184
|
+
"bitstream-io",
|
|
2185
|
+
"built",
|
|
2186
|
+
"cfg-if",
|
|
2187
|
+
"interpolate_name",
|
|
2188
|
+
"itertools",
|
|
2189
|
+
"libc",
|
|
2190
|
+
"libfuzzer-sys",
|
|
2191
|
+
"log",
|
|
2192
|
+
"maybe-rayon",
|
|
2193
|
+
"new_debug_unreachable",
|
|
2194
|
+
"noop_proc_macro",
|
|
2195
|
+
"num-derive",
|
|
2196
|
+
"num-traits",
|
|
2197
|
+
"once_cell",
|
|
2198
|
+
"paste",
|
|
2199
|
+
"profiling",
|
|
2200
|
+
"rand 0.8.5",
|
|
2201
|
+
"rand_chacha 0.3.1",
|
|
2202
|
+
"simd_helpers",
|
|
2203
|
+
"system-deps",
|
|
2204
|
+
"thiserror",
|
|
2205
|
+
"v_frame",
|
|
2206
|
+
"wasm-bindgen",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "ravif"
|
|
2211
|
+
version = "0.11.12"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "d6a5f31fcf7500f9401fea858ea4ab5525c99f2322cfcee732c0e6c74208c0c6"
|
|
2214
|
+
dependencies = [
|
|
2215
|
+
"avif-serialize",
|
|
2216
|
+
"imgref",
|
|
2217
|
+
"loop9",
|
|
2218
|
+
"quick-error",
|
|
2219
|
+
"rav1e",
|
|
2220
|
+
"rayon",
|
|
2221
|
+
"rgb",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "rayon"
|
|
2226
|
+
version = "1.10.0"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"either",
|
|
2231
|
+
"rayon-core",
|
|
2232
|
+
]
|
|
2233
|
+
|
|
2234
|
+
[[package]]
|
|
2235
|
+
name = "rayon-core"
|
|
2236
|
+
version = "1.12.1"
|
|
2237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2238
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2239
|
+
dependencies = [
|
|
2240
|
+
"crossbeam-deque",
|
|
2241
|
+
"crossbeam-utils",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
1816
2244
|
[[package]]
|
|
1817
2245
|
name = "redox_syscall"
|
|
1818
2246
|
version = "0.2.16"
|
|
@@ -1964,6 +2392,12 @@ dependencies = [
|
|
|
1964
2392
|
"rand 0.8.5",
|
|
1965
2393
|
]
|
|
1966
2394
|
|
|
2395
|
+
[[package]]
|
|
2396
|
+
name = "rgb"
|
|
2397
|
+
version = "0.8.50"
|
|
2398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2399
|
+
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
|
|
2400
|
+
|
|
1967
2401
|
[[package]]
|
|
1968
2402
|
name = "ring"
|
|
1969
2403
|
version = "0.17.14"
|
|
@@ -2143,6 +2577,15 @@ dependencies = [
|
|
|
2143
2577
|
"serde",
|
|
2144
2578
|
]
|
|
2145
2579
|
|
|
2580
|
+
[[package]]
|
|
2581
|
+
name = "serde_spanned"
|
|
2582
|
+
version = "0.6.8"
|
|
2583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2584
|
+
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
|
2585
|
+
dependencies = [
|
|
2586
|
+
"serde",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2146
2589
|
[[package]]
|
|
2147
2590
|
name = "serde_urlencoded"
|
|
2148
2591
|
version = "0.7.1"
|
|
@@ -2176,6 +2619,15 @@ version = "0.3.7"
|
|
|
2176
2619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2177
2620
|
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2178
2621
|
|
|
2622
|
+
[[package]]
|
|
2623
|
+
name = "simd_helpers"
|
|
2624
|
+
version = "0.1.0"
|
|
2625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
2627
|
+
dependencies = [
|
|
2628
|
+
"quote",
|
|
2629
|
+
]
|
|
2630
|
+
|
|
2179
2631
|
[[package]]
|
|
2180
2632
|
name = "slab"
|
|
2181
2633
|
version = "0.4.9"
|
|
@@ -2271,6 +2723,19 @@ dependencies = [
|
|
|
2271
2723
|
"libc",
|
|
2272
2724
|
]
|
|
2273
2725
|
|
|
2726
|
+
[[package]]
|
|
2727
|
+
name = "system-deps"
|
|
2728
|
+
version = "6.2.2"
|
|
2729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2730
|
+
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
|
|
2731
|
+
dependencies = [
|
|
2732
|
+
"cfg-expr",
|
|
2733
|
+
"heck",
|
|
2734
|
+
"pkg-config",
|
|
2735
|
+
"toml",
|
|
2736
|
+
"version-compare",
|
|
2737
|
+
]
|
|
2738
|
+
|
|
2274
2739
|
[[package]]
|
|
2275
2740
|
name = "tar"
|
|
2276
2741
|
version = "0.4.44"
|
|
@@ -2282,6 +2747,12 @@ dependencies = [
|
|
|
2282
2747
|
"xattr 1.5.0",
|
|
2283
2748
|
]
|
|
2284
2749
|
|
|
2750
|
+
[[package]]
|
|
2751
|
+
name = "target-lexicon"
|
|
2752
|
+
version = "0.12.16"
|
|
2753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2754
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2755
|
+
|
|
2285
2756
|
[[package]]
|
|
2286
2757
|
name = "target-lexicon"
|
|
2287
2758
|
version = "0.13.2"
|
|
@@ -2341,6 +2812,17 @@ dependencies = [
|
|
|
2341
2812
|
"num_cpus",
|
|
2342
2813
|
]
|
|
2343
2814
|
|
|
2815
|
+
[[package]]
|
|
2816
|
+
name = "tiff"
|
|
2817
|
+
version = "0.9.1"
|
|
2818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2819
|
+
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
|
|
2820
|
+
dependencies = [
|
|
2821
|
+
"flate2",
|
|
2822
|
+
"jpeg-decoder",
|
|
2823
|
+
"weezl",
|
|
2824
|
+
]
|
|
2825
|
+
|
|
2344
2826
|
[[package]]
|
|
2345
2827
|
name = "tinystr"
|
|
2346
2828
|
version = "0.7.6"
|
|
@@ -2412,6 +2894,40 @@ dependencies = [
|
|
|
2412
2894
|
"tokio",
|
|
2413
2895
|
]
|
|
2414
2896
|
|
|
2897
|
+
[[package]]
|
|
2898
|
+
name = "toml"
|
|
2899
|
+
version = "0.8.22"
|
|
2900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2901
|
+
checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae"
|
|
2902
|
+
dependencies = [
|
|
2903
|
+
"serde",
|
|
2904
|
+
"serde_spanned",
|
|
2905
|
+
"toml_datetime",
|
|
2906
|
+
"toml_edit",
|
|
2907
|
+
]
|
|
2908
|
+
|
|
2909
|
+
[[package]]
|
|
2910
|
+
name = "toml_datetime"
|
|
2911
|
+
version = "0.6.9"
|
|
2912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2913
|
+
checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3"
|
|
2914
|
+
dependencies = [
|
|
2915
|
+
"serde",
|
|
2916
|
+
]
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "toml_edit"
|
|
2920
|
+
version = "0.22.26"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"indexmap",
|
|
2925
|
+
"serde",
|
|
2926
|
+
"serde_spanned",
|
|
2927
|
+
"toml_datetime",
|
|
2928
|
+
"winnow",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2415
2931
|
[[package]]
|
|
2416
2932
|
name = "tower"
|
|
2417
2933
|
version = "0.5.2"
|
|
@@ -2539,6 +3055,17 @@ dependencies = [
|
|
|
2539
3055
|
"wasm-bindgen",
|
|
2540
3056
|
]
|
|
2541
3057
|
|
|
3058
|
+
[[package]]
|
|
3059
|
+
name = "v_frame"
|
|
3060
|
+
version = "0.3.8"
|
|
3061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3062
|
+
checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b"
|
|
3063
|
+
dependencies = [
|
|
3064
|
+
"aligned-vec",
|
|
3065
|
+
"num-traits",
|
|
3066
|
+
"wasm-bindgen",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
2542
3069
|
[[package]]
|
|
2543
3070
|
name = "value-bag"
|
|
2544
3071
|
version = "1.11.1"
|
|
@@ -2551,6 +3078,12 @@ version = "0.2.15"
|
|
|
2551
3078
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
3079
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
2553
3080
|
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "version-compare"
|
|
3083
|
+
version = "0.2.0"
|
|
3084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
+
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
|
|
3086
|
+
|
|
2554
3087
|
[[package]]
|
|
2555
3088
|
name = "walkdir"
|
|
2556
3089
|
version = "2.5.0"
|
|
@@ -2694,6 +3227,12 @@ dependencies = [
|
|
|
2694
3227
|
"wasm-bindgen",
|
|
2695
3228
|
]
|
|
2696
3229
|
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "weezl"
|
|
3232
|
+
version = "0.1.10"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
|
|
3235
|
+
|
|
2697
3236
|
[[package]]
|
|
2698
3237
|
name = "winapi"
|
|
2699
3238
|
version = "0.3.9"
|
|
@@ -2906,6 +3445,15 @@ version = "0.53.0"
|
|
|
2906
3445
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2907
3446
|
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
2908
3447
|
|
|
3448
|
+
[[package]]
|
|
3449
|
+
name = "winnow"
|
|
3450
|
+
version = "0.7.10"
|
|
3451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3452
|
+
checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
|
|
3453
|
+
dependencies = [
|
|
3454
|
+
"memchr",
|
|
3455
|
+
]
|
|
3456
|
+
|
|
2909
3457
|
[[package]]
|
|
2910
3458
|
name = "wit-bindgen-rt"
|
|
2911
3459
|
version = "0.33.0"
|
|
@@ -3066,6 +3614,15 @@ version = "0.4.12"
|
|
|
3066
3614
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
3615
|
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
3068
3616
|
|
|
3617
|
+
[[package]]
|
|
3618
|
+
name = "zune-inflate"
|
|
3619
|
+
version = "0.2.54"
|
|
3620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3621
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
3622
|
+
dependencies = [
|
|
3623
|
+
"simd-adler32",
|
|
3624
|
+
]
|
|
3625
|
+
|
|
3069
3626
|
[[package]]
|
|
3070
3627
|
name = "zune-jpeg"
|
|
3071
3628
|
version = "0.4.14"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "datago"
|
|
3
3
|
edition = "2021"
|
|
4
|
-
version = "2025.6.
|
|
4
|
+
version = "2025.6.5"
|
|
5
5
|
|
|
6
6
|
[lib]
|
|
7
7
|
# exposed by pyo3
|
|
@@ -14,7 +14,7 @@ name = "datago"
|
|
|
14
14
|
path = "src/main.rs"
|
|
15
15
|
|
|
16
16
|
[dependencies]
|
|
17
|
-
image = { version = "0.25.6", features = ["png", "jpeg"
|
|
17
|
+
image = { version = "0.25.6", features = ["png", "jpeg", "webp", "default-formats"] }
|
|
18
18
|
reqwest = { version = "0.12.15", features = ["blocking", "stream"] }
|
|
19
19
|
serde = { version = "1.0", features = ["derive"] }
|
|
20
20
|
serde_json = "1.0"
|
|
@@ -42,9 +42,7 @@ fn enumerate_files(
|
|
|
42
42
|
limit: usize,
|
|
43
43
|
) {
|
|
44
44
|
// Get an iterator over the files in the root path
|
|
45
|
-
let supported_extensions = [
|
|
46
|
-
"jpg", "jpeg", "png", "bmp", "gif", "JPG", "JPEG", "PNG", "BMP", "GIF",
|
|
47
|
-
];
|
|
45
|
+
let supported_extensions = ["jpg", "jpeg", "png", "bmp", "gif", "webp"];
|
|
48
46
|
|
|
49
47
|
let files = walkdir::WalkDir::new(&source_config.root_path)
|
|
50
48
|
.follow_links(false)
|
|
@@ -57,7 +55,7 @@ fn enumerate_files(
|
|
|
57
55
|
let file_name = path.to_string_lossy().into_owned();
|
|
58
56
|
if supported_extensions
|
|
59
57
|
.iter()
|
|
60
|
-
.any(|&ext| file_name.ends_with(ext))
|
|
58
|
+
.any(|&ext| file_name.to_lowercase().ends_with(ext))
|
|
61
59
|
{
|
|
62
60
|
Some(entry)
|
|
63
61
|
} else {
|
|
@@ -426,6 +426,69 @@ mod tests {
|
|
|
426
426
|
assert!(count <= limit + 2); // Allow some buffer for async processing
|
|
427
427
|
}
|
|
428
428
|
|
|
429
|
+
fn create_test_webp_image(path: &std::path::Path) {
|
|
430
|
+
// Create a simple 2x2 WebP image
|
|
431
|
+
let img = image::DynamicImage::new_rgb8(2, 2);
|
|
432
|
+
img.save_with_format(path, image::ImageFormat::WebP)
|
|
433
|
+
.unwrap();
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
#[tokio::test]
|
|
437
|
+
async fn test_image_from_path_webp() {
|
|
438
|
+
let temp_dir = TempDir::new().unwrap();
|
|
439
|
+
let image_path = temp_dir.path().join("test.webp");
|
|
440
|
+
create_test_webp_image(&image_path);
|
|
441
|
+
|
|
442
|
+
let result = image_from_path(image_path.to_str().unwrap()).await;
|
|
443
|
+
assert!(result.is_ok());
|
|
444
|
+
|
|
445
|
+
let img = result.unwrap();
|
|
446
|
+
assert_eq!(img.width(), 2);
|
|
447
|
+
assert_eq!(img.height(), 2);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
#[tokio::test]
|
|
451
|
+
async fn test_image_payload_from_path_webp() {
|
|
452
|
+
let temp_dir = TempDir::new().unwrap();
|
|
453
|
+
let image_path = temp_dir.path().join("test.webp");
|
|
454
|
+
create_test_webp_image(&image_path);
|
|
455
|
+
|
|
456
|
+
let result =
|
|
457
|
+
image_payload_from_path(image_path.to_str().unwrap(), &None, false, false).await;
|
|
458
|
+
|
|
459
|
+
assert!(result.is_ok());
|
|
460
|
+
let payload = result.unwrap();
|
|
461
|
+
assert_eq!(payload.width, 2);
|
|
462
|
+
assert_eq!(payload.height, 2);
|
|
463
|
+
assert_eq!(payload.original_width, 2);
|
|
464
|
+
assert_eq!(payload.original_height, 2);
|
|
465
|
+
assert!(!payload.data.is_empty());
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
#[tokio::test]
|
|
469
|
+
async fn test_pull_sample_webp() {
|
|
470
|
+
let temp_dir = TempDir::new().unwrap();
|
|
471
|
+
let image_path = temp_dir.path().join("test.webp");
|
|
472
|
+
create_test_webp_image(&image_path);
|
|
473
|
+
|
|
474
|
+
let (tx, rx) = kanal::bounded(10);
|
|
475
|
+
let sample_json = serde_json::Value::String(image_path.to_str().unwrap().to_string());
|
|
476
|
+
|
|
477
|
+
let result = pull_sample(sample_json, Arc::new(None), false, false, tx).await;
|
|
478
|
+
|
|
479
|
+
assert!(result.is_ok());
|
|
480
|
+
|
|
481
|
+
// Check that a sample was sent
|
|
482
|
+
let received = rx.recv().unwrap();
|
|
483
|
+
assert!(received.is_some());
|
|
484
|
+
|
|
485
|
+
let sample = received.unwrap();
|
|
486
|
+
assert_eq!(sample.source, "filesystem");
|
|
487
|
+
assert!(!sample.id.is_empty());
|
|
488
|
+
assert_eq!(sample.image.width, 2);
|
|
489
|
+
assert_eq!(sample.image.height, 2);
|
|
490
|
+
}
|
|
491
|
+
|
|
429
492
|
#[test]
|
|
430
493
|
fn test_pull_samples_sync_wrapper() {
|
|
431
494
|
let temp_dir = TempDir::new().unwrap();
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datago-2025.6.4 → datago-2025.6.5}/assets/447175851-2277afcb-8abf-4d17-b2db-dae27c6056d0.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|