nano-rspow-python 0.2.5__tar.gz → 0.5.7__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.
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/Cargo.lock +283 -369
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/Cargo.toml +1 -1
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/PKG-INFO +2 -2
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/Cargo.toml +4 -1
- nano_rspow_python-0.5.7/nano-rspow/benches/pow_benchmark.rs +117 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/src/cpu.rs +56 -27
- nano_rspow_python-0.5.7/nano-rspow/src/lib.rs +283 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/src/opencl_backend/mod.rs +64 -32
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/src/types.rs +30 -1
- nano_rspow_python-0.5.7/nano-rspow/src/wgpu_backend/mod.rs +613 -0
- nano_rspow_python-0.5.7/nano-rspow/src/wgpu_backend/pow.wgsl +309 -0
- nano_rspow_python-0.5.7/nano-rspow/src/wgpu_shared.rs +24 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow-python/Cargo.toml +1 -1
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow-python/src/lib.rs +3 -3
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/pyproject.toml +1 -1
- nano_rspow_python-0.2.5/nano-rspow/benches/pow_benchmark.rs +0 -39
- nano_rspow_python-0.2.5/nano-rspow/src/lib.rs +0 -145
- nano_rspow_python-0.2.5/nano-rspow/src/wgpu_backend/mod.rs +0 -250
- nano_rspow_python-0.2.5/nano-rspow/src/wgpu_backend/pow.wgsl +0 -211
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/src/difficulty.rs +0 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/src/opencl_backend/pow.cl +0 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow/src/thresholds.rs +0 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow-python/build.rs +0 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow-python/nano_rspow.pyi +0 -0
- {nano_rspow_python-0.2.5 → nano_rspow_python-0.5.7}/nano-rspow-python/tests/test_pow.py +0 -0
|
@@ -11,6 +11,12 @@ dependencies = [
|
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "allocator-api2"
|
|
16
|
+
version = "0.2.21"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
19
|
+
|
|
14
20
|
[[package]]
|
|
15
21
|
name = "android_system_properties"
|
|
16
22
|
version = "0.1.5"
|
|
@@ -105,18 +111,18 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
105
111
|
|
|
106
112
|
[[package]]
|
|
107
113
|
name = "bit-set"
|
|
108
|
-
version = "0.
|
|
114
|
+
version = "0.9.1"
|
|
109
115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
116
|
+
checksum = "34ddef2995421ab6a5c779542c81ee77c115206f4ad9d5a8e05f4ff49716a3dd"
|
|
111
117
|
dependencies = [
|
|
112
118
|
"bit-vec",
|
|
113
119
|
]
|
|
114
120
|
|
|
115
121
|
[[package]]
|
|
116
122
|
name = "bit-vec"
|
|
117
|
-
version = "0.
|
|
123
|
+
version = "0.9.1"
|
|
118
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
-
checksum = "
|
|
125
|
+
checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
|
|
120
126
|
|
|
121
127
|
[[package]]
|
|
122
128
|
name = "bitflags"
|
|
@@ -129,9 +135,6 @@ name = "bitflags"
|
|
|
129
135
|
version = "2.11.1"
|
|
130
136
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
137
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
132
|
-
dependencies = [
|
|
133
|
-
"serde_core",
|
|
134
|
-
]
|
|
135
138
|
|
|
136
139
|
[[package]]
|
|
137
140
|
name = "blake2b_simd"
|
|
@@ -145,10 +148,13 @@ dependencies = [
|
|
|
145
148
|
]
|
|
146
149
|
|
|
147
150
|
[[package]]
|
|
148
|
-
name = "
|
|
149
|
-
version = "0.
|
|
151
|
+
name = "block2"
|
|
152
|
+
version = "0.6.2"
|
|
150
153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
-
checksum = "
|
|
154
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"objc2",
|
|
157
|
+
]
|
|
152
158
|
|
|
153
159
|
[[package]]
|
|
154
160
|
name = "bumpalo"
|
|
@@ -272,10 +278,11 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
|
272
278
|
|
|
273
279
|
[[package]]
|
|
274
280
|
name = "codespan-reporting"
|
|
275
|
-
version = "0.
|
|
281
|
+
version = "0.13.1"
|
|
276
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
-
checksum = "
|
|
283
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
278
284
|
dependencies = [
|
|
285
|
+
"serde",
|
|
279
286
|
"termcolor",
|
|
280
287
|
"unicode-width",
|
|
281
288
|
]
|
|
@@ -301,33 +308,6 @@ dependencies = [
|
|
|
301
308
|
"unicode-segmentation",
|
|
302
309
|
]
|
|
303
310
|
|
|
304
|
-
[[package]]
|
|
305
|
-
name = "core-foundation"
|
|
306
|
-
version = "0.9.4"
|
|
307
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
309
|
-
dependencies = [
|
|
310
|
-
"core-foundation-sys",
|
|
311
|
-
"libc",
|
|
312
|
-
]
|
|
313
|
-
|
|
314
|
-
[[package]]
|
|
315
|
-
name = "core-foundation-sys"
|
|
316
|
-
version = "0.8.7"
|
|
317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
-
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
319
|
-
|
|
320
|
-
[[package]]
|
|
321
|
-
name = "core-graphics-types"
|
|
322
|
-
version = "0.1.3"
|
|
323
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
-
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
325
|
-
dependencies = [
|
|
326
|
-
"bitflags 1.3.2",
|
|
327
|
-
"core-foundation",
|
|
328
|
-
"libc",
|
|
329
|
-
]
|
|
330
|
-
|
|
331
311
|
[[package]]
|
|
332
312
|
name = "criterion"
|
|
333
313
|
version = "0.5.1"
|
|
@@ -436,6 +416,16 @@ dependencies = [
|
|
|
436
416
|
"syn",
|
|
437
417
|
]
|
|
438
418
|
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "dispatch2"
|
|
421
|
+
version = "0.3.1"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"bitflags 2.11.1",
|
|
426
|
+
"objc2",
|
|
427
|
+
]
|
|
428
|
+
|
|
439
429
|
[[package]]
|
|
440
430
|
name = "document-features"
|
|
441
431
|
version = "0.2.12"
|
|
@@ -473,31 +463,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
473
463
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
474
464
|
|
|
475
465
|
[[package]]
|
|
476
|
-
name = "
|
|
477
|
-
version = "0.
|
|
478
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
480
|
-
dependencies = [
|
|
481
|
-
"foreign-types-macros",
|
|
482
|
-
"foreign-types-shared",
|
|
483
|
-
]
|
|
484
|
-
|
|
485
|
-
[[package]]
|
|
486
|
-
name = "foreign-types-macros"
|
|
487
|
-
version = "0.2.3"
|
|
488
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
-
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
490
|
-
dependencies = [
|
|
491
|
-
"proc-macro2",
|
|
492
|
-
"quote",
|
|
493
|
-
"syn",
|
|
494
|
-
]
|
|
495
|
-
|
|
496
|
-
[[package]]
|
|
497
|
-
name = "foreign-types-shared"
|
|
498
|
-
version = "0.3.1"
|
|
466
|
+
name = "foldhash"
|
|
467
|
+
version = "0.2.0"
|
|
499
468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
-
checksum = "
|
|
469
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
501
470
|
|
|
502
471
|
[[package]]
|
|
503
472
|
name = "futures"
|
|
@@ -536,71 +505,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
536
505
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
537
506
|
dependencies = [
|
|
538
507
|
"cfg-if",
|
|
508
|
+
"js-sys",
|
|
539
509
|
"libc",
|
|
540
510
|
"r-efi",
|
|
541
511
|
"wasip2",
|
|
542
|
-
]
|
|
543
|
-
|
|
544
|
-
[[package]]
|
|
545
|
-
name = "gl_generator"
|
|
546
|
-
version = "0.14.0"
|
|
547
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
549
|
-
dependencies = [
|
|
550
|
-
"khronos_api",
|
|
551
|
-
"log",
|
|
552
|
-
"xml-rs",
|
|
553
|
-
]
|
|
554
|
-
|
|
555
|
-
[[package]]
|
|
556
|
-
name = "glow"
|
|
557
|
-
version = "0.16.0"
|
|
558
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
-
checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
|
|
560
|
-
dependencies = [
|
|
561
|
-
"js-sys",
|
|
562
|
-
"slotmap",
|
|
563
512
|
"wasm-bindgen",
|
|
564
|
-
"web-sys",
|
|
565
|
-
]
|
|
566
|
-
|
|
567
|
-
[[package]]
|
|
568
|
-
name = "glutin_wgl_sys"
|
|
569
|
-
version = "0.6.1"
|
|
570
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
571
|
-
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
|
572
|
-
dependencies = [
|
|
573
|
-
"gl_generator",
|
|
574
|
-
]
|
|
575
|
-
|
|
576
|
-
[[package]]
|
|
577
|
-
name = "gpu-alloc"
|
|
578
|
-
version = "0.6.0"
|
|
579
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
-
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
|
|
581
|
-
dependencies = [
|
|
582
|
-
"bitflags 2.11.1",
|
|
583
|
-
"gpu-alloc-types",
|
|
584
|
-
]
|
|
585
|
-
|
|
586
|
-
[[package]]
|
|
587
|
-
name = "gpu-alloc-types"
|
|
588
|
-
version = "0.3.0"
|
|
589
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
-
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
|
591
|
-
dependencies = [
|
|
592
|
-
"bitflags 2.11.1",
|
|
593
513
|
]
|
|
594
514
|
|
|
595
515
|
[[package]]
|
|
596
516
|
name = "gpu-allocator"
|
|
597
|
-
version = "0.
|
|
517
|
+
version = "0.28.0"
|
|
598
518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
-
checksum = "
|
|
519
|
+
checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
|
|
600
520
|
dependencies = [
|
|
521
|
+
"ash",
|
|
522
|
+
"hashbrown 0.16.1",
|
|
601
523
|
"log",
|
|
602
524
|
"presser",
|
|
603
|
-
"thiserror
|
|
525
|
+
"thiserror 2.0.18",
|
|
604
526
|
"windows",
|
|
605
527
|
]
|
|
606
528
|
|
|
@@ -632,6 +554,7 @@ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
|
632
554
|
dependencies = [
|
|
633
555
|
"cfg-if",
|
|
634
556
|
"crunchy",
|
|
557
|
+
"num-traits 0.2.19",
|
|
635
558
|
"zerocopy",
|
|
636
559
|
]
|
|
637
560
|
|
|
@@ -641,7 +564,18 @@ version = "0.15.5"
|
|
|
641
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
565
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
643
566
|
dependencies = [
|
|
644
|
-
"foldhash",
|
|
567
|
+
"foldhash 0.1.5",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "hashbrown"
|
|
572
|
+
version = "0.16.1"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"allocator-api2",
|
|
577
|
+
"equivalent",
|
|
578
|
+
"foldhash 0.2.0",
|
|
645
579
|
]
|
|
646
580
|
|
|
647
581
|
[[package]]
|
|
@@ -716,34 +650,6 @@ version = "1.0.18"
|
|
|
716
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
651
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
718
652
|
|
|
719
|
-
[[package]]
|
|
720
|
-
name = "jni-sys"
|
|
721
|
-
version = "0.3.1"
|
|
722
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
-
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
724
|
-
dependencies = [
|
|
725
|
-
"jni-sys 0.4.1",
|
|
726
|
-
]
|
|
727
|
-
|
|
728
|
-
[[package]]
|
|
729
|
-
name = "jni-sys"
|
|
730
|
-
version = "0.4.1"
|
|
731
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
733
|
-
dependencies = [
|
|
734
|
-
"jni-sys-macros",
|
|
735
|
-
]
|
|
736
|
-
|
|
737
|
-
[[package]]
|
|
738
|
-
name = "jni-sys-macros"
|
|
739
|
-
version = "0.4.1"
|
|
740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
-
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
742
|
-
dependencies = [
|
|
743
|
-
"quote",
|
|
744
|
-
"syn",
|
|
745
|
-
]
|
|
746
|
-
|
|
747
653
|
[[package]]
|
|
748
654
|
name = "js-sys"
|
|
749
655
|
version = "0.3.98"
|
|
@@ -756,23 +662,6 @@ dependencies = [
|
|
|
756
662
|
"wasm-bindgen",
|
|
757
663
|
]
|
|
758
664
|
|
|
759
|
-
[[package]]
|
|
760
|
-
name = "khronos-egl"
|
|
761
|
-
version = "6.0.0"
|
|
762
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
-
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
764
|
-
dependencies = [
|
|
765
|
-
"libc",
|
|
766
|
-
"libloading",
|
|
767
|
-
"pkg-config",
|
|
768
|
-
]
|
|
769
|
-
|
|
770
|
-
[[package]]
|
|
771
|
-
name = "khronos_api"
|
|
772
|
-
version = "3.1.0"
|
|
773
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
-
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
775
|
-
|
|
776
665
|
[[package]]
|
|
777
666
|
name = "libc"
|
|
778
667
|
version = "0.2.186"
|
|
@@ -789,6 +678,12 @@ dependencies = [
|
|
|
789
678
|
"windows-link",
|
|
790
679
|
]
|
|
791
680
|
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "libm"
|
|
683
|
+
version = "0.2.16"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
686
|
+
|
|
792
687
|
[[package]]
|
|
793
688
|
name = "litrs"
|
|
794
689
|
version = "1.0.0"
|
|
@@ -810,61 +705,41 @@ version = "0.4.29"
|
|
|
810
705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
811
706
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
812
707
|
|
|
813
|
-
[[package]]
|
|
814
|
-
name = "malloc_buf"
|
|
815
|
-
version = "0.0.6"
|
|
816
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
817
|
-
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
818
|
-
dependencies = [
|
|
819
|
-
"libc",
|
|
820
|
-
]
|
|
821
|
-
|
|
822
708
|
[[package]]
|
|
823
709
|
name = "memchr"
|
|
824
710
|
version = "2.8.0"
|
|
825
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
712
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
827
713
|
|
|
828
|
-
[[package]]
|
|
829
|
-
name = "metal"
|
|
830
|
-
version = "0.31.0"
|
|
831
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
-
checksum = "f569fb946490b5743ad69813cb19629130ce9374034abe31614a36402d18f99e"
|
|
833
|
-
dependencies = [
|
|
834
|
-
"bitflags 2.11.1",
|
|
835
|
-
"block",
|
|
836
|
-
"core-graphics-types",
|
|
837
|
-
"foreign-types",
|
|
838
|
-
"log",
|
|
839
|
-
"objc",
|
|
840
|
-
"paste",
|
|
841
|
-
]
|
|
842
|
-
|
|
843
714
|
[[package]]
|
|
844
715
|
name = "naga"
|
|
845
|
-
version = "
|
|
716
|
+
version = "29.0.3"
|
|
846
717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "
|
|
718
|
+
checksum = "0dd91265cc2454558f659b3b4b9640f0ddb8cc6521277f166b8a8c181c898079"
|
|
848
719
|
dependencies = [
|
|
849
720
|
"arrayvec",
|
|
850
721
|
"bit-set",
|
|
851
722
|
"bitflags 2.11.1",
|
|
723
|
+
"cfg-if",
|
|
852
724
|
"cfg_aliases",
|
|
853
725
|
"codespan-reporting",
|
|
726
|
+
"half",
|
|
727
|
+
"hashbrown 0.16.1",
|
|
854
728
|
"hexf-parse",
|
|
855
729
|
"indexmap",
|
|
730
|
+
"libm",
|
|
856
731
|
"log",
|
|
732
|
+
"num-traits 0.2.19",
|
|
733
|
+
"once_cell",
|
|
857
734
|
"rustc-hash",
|
|
858
735
|
"spirv",
|
|
859
|
-
"strum",
|
|
860
|
-
"termcolor",
|
|
861
736
|
"thiserror 2.0.18",
|
|
862
|
-
"unicode-
|
|
737
|
+
"unicode-ident",
|
|
863
738
|
]
|
|
864
739
|
|
|
865
740
|
[[package]]
|
|
866
741
|
name = "nano-rspow"
|
|
867
|
-
version = "0.
|
|
742
|
+
version = "0.5.7"
|
|
868
743
|
dependencies = [
|
|
869
744
|
"blake2b_simd",
|
|
870
745
|
"bytemuck",
|
|
@@ -880,16 +755,18 @@ dependencies = [
|
|
|
880
755
|
|
|
881
756
|
[[package]]
|
|
882
757
|
name = "nano-rspow-cli"
|
|
883
|
-
version = "0.
|
|
758
|
+
version = "0.5.7"
|
|
884
759
|
dependencies = [
|
|
885
760
|
"clap",
|
|
886
761
|
"hex",
|
|
887
762
|
"nano-rspow",
|
|
763
|
+
"serde",
|
|
764
|
+
"serde_json",
|
|
888
765
|
]
|
|
889
766
|
|
|
890
767
|
[[package]]
|
|
891
768
|
name = "nano-rspow-node"
|
|
892
|
-
version = "0.
|
|
769
|
+
version = "0.5.7"
|
|
893
770
|
dependencies = [
|
|
894
771
|
"hex",
|
|
895
772
|
"nano-rspow",
|
|
@@ -901,13 +778,29 @@ dependencies = [
|
|
|
901
778
|
|
|
902
779
|
[[package]]
|
|
903
780
|
name = "nano-rspow-python"
|
|
904
|
-
version = "0.
|
|
781
|
+
version = "0.5.7"
|
|
905
782
|
dependencies = [
|
|
906
783
|
"hex",
|
|
907
784
|
"nano-rspow",
|
|
908
785
|
"pyo3",
|
|
909
786
|
]
|
|
910
787
|
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "nano-rspow-web"
|
|
790
|
+
version = "0.5.7"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"bytemuck",
|
|
793
|
+
"getrandom",
|
|
794
|
+
"hex",
|
|
795
|
+
"js-sys",
|
|
796
|
+
"nano-rspow",
|
|
797
|
+
"rand",
|
|
798
|
+
"wasm-bindgen",
|
|
799
|
+
"wasm-bindgen-futures",
|
|
800
|
+
"web-sys",
|
|
801
|
+
"wgpu",
|
|
802
|
+
]
|
|
803
|
+
|
|
911
804
|
[[package]]
|
|
912
805
|
name = "napi"
|
|
913
806
|
version = "2.16.17"
|
|
@@ -966,15 +859,6 @@ dependencies = [
|
|
|
966
859
|
"libloading",
|
|
967
860
|
]
|
|
968
861
|
|
|
969
|
-
[[package]]
|
|
970
|
-
name = "ndk-sys"
|
|
971
|
-
version = "0.5.0+25.2.9519653"
|
|
972
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
|
|
974
|
-
dependencies = [
|
|
975
|
-
"jni-sys 0.3.1",
|
|
976
|
-
]
|
|
977
|
-
|
|
978
862
|
[[package]]
|
|
979
863
|
name = "nodrop"
|
|
980
864
|
version = "0.1.14"
|
|
@@ -1006,15 +890,69 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1006
890
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1007
891
|
dependencies = [
|
|
1008
892
|
"autocfg",
|
|
893
|
+
"libm",
|
|
1009
894
|
]
|
|
1010
895
|
|
|
1011
896
|
[[package]]
|
|
1012
|
-
name = "
|
|
1013
|
-
version = "0.
|
|
897
|
+
name = "objc2"
|
|
898
|
+
version = "0.6.4"
|
|
1014
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
-
checksum = "
|
|
900
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
1016
901
|
dependencies = [
|
|
1017
|
-
"
|
|
902
|
+
"objc2-encode",
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
[[package]]
|
|
906
|
+
name = "objc2-core-foundation"
|
|
907
|
+
version = "0.3.2"
|
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
910
|
+
dependencies = [
|
|
911
|
+
"bitflags 2.11.1",
|
|
912
|
+
"dispatch2",
|
|
913
|
+
"objc2",
|
|
914
|
+
]
|
|
915
|
+
|
|
916
|
+
[[package]]
|
|
917
|
+
name = "objc2-encode"
|
|
918
|
+
version = "4.1.0"
|
|
919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "objc2-foundation"
|
|
924
|
+
version = "0.3.2"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"bitflags 2.11.1",
|
|
929
|
+
"objc2",
|
|
930
|
+
"objc2-core-foundation",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "objc2-metal"
|
|
935
|
+
version = "0.3.2"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"bitflags 2.11.1",
|
|
940
|
+
"block2",
|
|
941
|
+
"objc2",
|
|
942
|
+
"objc2-foundation",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "objc2-quartz-core"
|
|
947
|
+
version = "0.3.2"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"bitflags 2.11.1",
|
|
952
|
+
"objc2",
|
|
953
|
+
"objc2-core-foundation",
|
|
954
|
+
"objc2-foundation",
|
|
955
|
+
"objc2-metal",
|
|
1018
956
|
]
|
|
1019
957
|
|
|
1020
958
|
[[package]]
|
|
@@ -1106,24 +1044,12 @@ dependencies = [
|
|
|
1106
1044
|
"windows-link",
|
|
1107
1045
|
]
|
|
1108
1046
|
|
|
1109
|
-
[[package]]
|
|
1110
|
-
name = "paste"
|
|
1111
|
-
version = "1.0.15"
|
|
1112
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1114
|
-
|
|
1115
1047
|
[[package]]
|
|
1116
1048
|
name = "pin-project-lite"
|
|
1117
1049
|
version = "0.2.17"
|
|
1118
1050
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
1051
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1120
1052
|
|
|
1121
|
-
[[package]]
|
|
1122
|
-
name = "pkg-config"
|
|
1123
|
-
version = "0.3.33"
|
|
1124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
-
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1126
|
-
|
|
1127
1053
|
[[package]]
|
|
1128
1054
|
name = "plotters"
|
|
1129
1055
|
version = "0.3.7"
|
|
@@ -1164,6 +1090,15 @@ version = "1.13.1"
|
|
|
1164
1090
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
1091
|
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1166
1092
|
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "portable-atomic-util"
|
|
1095
|
+
version = "0.2.7"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"portable-atomic",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1167
1102
|
[[package]]
|
|
1168
1103
|
name = "ppv-lite86"
|
|
1169
1104
|
version = "0.2.21"
|
|
@@ -1318,6 +1253,18 @@ version = "0.6.2"
|
|
|
1318
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
1254
|
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
1320
1255
|
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "raw-window-metal"
|
|
1258
|
+
version = "1.1.0"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "40d213455a5f1dc59214213c7330e074ddf8114c9a42411eb890c767357ce135"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"objc2",
|
|
1263
|
+
"objc2-core-foundation",
|
|
1264
|
+
"objc2-foundation",
|
|
1265
|
+
"objc2-quartz-core",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1321
1268
|
[[package]]
|
|
1322
1269
|
name = "rayon"
|
|
1323
1270
|
version = "1.12.0"
|
|
@@ -1473,15 +1420,6 @@ version = "0.4.12"
|
|
|
1473
1420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
1421
|
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1475
1422
|
|
|
1476
|
-
[[package]]
|
|
1477
|
-
name = "slotmap"
|
|
1478
|
-
version = "1.1.1"
|
|
1479
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1480
|
-
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
1481
|
-
dependencies = [
|
|
1482
|
-
"version_check",
|
|
1483
|
-
]
|
|
1484
|
-
|
|
1485
1423
|
[[package]]
|
|
1486
1424
|
name = "smallvec"
|
|
1487
1425
|
version = "1.15.1"
|
|
@@ -1490,9 +1428,9 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
1490
1428
|
|
|
1491
1429
|
[[package]]
|
|
1492
1430
|
name = "spirv"
|
|
1493
|
-
version = "0.
|
|
1431
|
+
version = "0.4.0+sdk-1.4.341.0"
|
|
1494
1432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1495
|
-
checksum = "
|
|
1433
|
+
checksum = "d9571ea910ebd84c86af4b3ed27f9dbdc6ad06f17c5f96146b2b671e2976744f"
|
|
1496
1434
|
dependencies = [
|
|
1497
1435
|
"bitflags 2.11.1",
|
|
1498
1436
|
]
|
|
@@ -1509,28 +1447,6 @@ version = "0.11.1"
|
|
|
1509
1447
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
1448
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1511
1449
|
|
|
1512
|
-
[[package]]
|
|
1513
|
-
name = "strum"
|
|
1514
|
-
version = "0.26.3"
|
|
1515
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
-
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
1517
|
-
dependencies = [
|
|
1518
|
-
"strum_macros",
|
|
1519
|
-
]
|
|
1520
|
-
|
|
1521
|
-
[[package]]
|
|
1522
|
-
name = "strum_macros"
|
|
1523
|
-
version = "0.26.4"
|
|
1524
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1525
|
-
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
1526
|
-
dependencies = [
|
|
1527
|
-
"heck",
|
|
1528
|
-
"proc-macro2",
|
|
1529
|
-
"quote",
|
|
1530
|
-
"rustversion",
|
|
1531
|
-
"syn",
|
|
1532
|
-
]
|
|
1533
|
-
|
|
1534
1450
|
[[package]]
|
|
1535
1451
|
name = "syn"
|
|
1536
1452
|
version = "2.0.117"
|
|
@@ -1634,24 +1550,12 @@ version = "0.1.14"
|
|
|
1634
1550
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
1551
|
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
1636
1552
|
|
|
1637
|
-
[[package]]
|
|
1638
|
-
name = "unicode-xid"
|
|
1639
|
-
version = "0.2.6"
|
|
1640
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1642
|
-
|
|
1643
1553
|
[[package]]
|
|
1644
1554
|
name = "utf8parse"
|
|
1645
1555
|
version = "0.2.2"
|
|
1646
1556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
1557
|
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1648
1558
|
|
|
1649
|
-
[[package]]
|
|
1650
|
-
name = "version_check"
|
|
1651
|
-
version = "0.9.5"
|
|
1652
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
-
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1654
|
-
|
|
1655
1559
|
[[package]]
|
|
1656
1560
|
name = "walkdir"
|
|
1657
1561
|
version = "2.5.0"
|
|
@@ -1738,17 +1642,21 @@ dependencies = [
|
|
|
1738
1642
|
|
|
1739
1643
|
[[package]]
|
|
1740
1644
|
name = "wgpu"
|
|
1741
|
-
version = "
|
|
1645
|
+
version = "29.0.3"
|
|
1742
1646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
-
checksum = "
|
|
1647
|
+
checksum = "bb3feacc458f7bee8bc1737149b42b6c731aa461039a4264a67bb6681646b250"
|
|
1744
1648
|
dependencies = [
|
|
1745
1649
|
"arrayvec",
|
|
1746
1650
|
"bitflags 2.11.1",
|
|
1651
|
+
"bytemuck",
|
|
1652
|
+
"cfg-if",
|
|
1747
1653
|
"cfg_aliases",
|
|
1748
1654
|
"document-features",
|
|
1655
|
+
"hashbrown 0.16.1",
|
|
1749
1656
|
"js-sys",
|
|
1750
1657
|
"log",
|
|
1751
|
-
"
|
|
1658
|
+
"naga",
|
|
1659
|
+
"portable-atomic",
|
|
1752
1660
|
"profiling",
|
|
1753
1661
|
"raw-window-handle",
|
|
1754
1662
|
"smallvec",
|
|
@@ -1763,84 +1671,120 @@ dependencies = [
|
|
|
1763
1671
|
|
|
1764
1672
|
[[package]]
|
|
1765
1673
|
name = "wgpu-core"
|
|
1766
|
-
version = "
|
|
1674
|
+
version = "29.0.3"
|
|
1767
1675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
-
checksum = "
|
|
1676
|
+
checksum = "02da3ad1b568337f25513b317870960ef87073ea0945502e44b864b67a8c77b7"
|
|
1769
1677
|
dependencies = [
|
|
1770
1678
|
"arrayvec",
|
|
1679
|
+
"bit-set",
|
|
1771
1680
|
"bit-vec",
|
|
1772
1681
|
"bitflags 2.11.1",
|
|
1682
|
+
"bytemuck",
|
|
1773
1683
|
"cfg_aliases",
|
|
1774
1684
|
"document-features",
|
|
1685
|
+
"hashbrown 0.16.1",
|
|
1775
1686
|
"indexmap",
|
|
1776
1687
|
"log",
|
|
1777
1688
|
"naga",
|
|
1778
1689
|
"once_cell",
|
|
1779
1690
|
"parking_lot",
|
|
1691
|
+
"portable-atomic",
|
|
1780
1692
|
"profiling",
|
|
1781
1693
|
"raw-window-handle",
|
|
1782
1694
|
"rustc-hash",
|
|
1783
1695
|
"smallvec",
|
|
1784
1696
|
"thiserror 2.0.18",
|
|
1697
|
+
"wgpu-core-deps-apple",
|
|
1698
|
+
"wgpu-core-deps-windows-linux-android",
|
|
1785
1699
|
"wgpu-hal",
|
|
1700
|
+
"wgpu-naga-bridge",
|
|
1786
1701
|
"wgpu-types",
|
|
1787
1702
|
]
|
|
1788
1703
|
|
|
1704
|
+
[[package]]
|
|
1705
|
+
name = "wgpu-core-deps-apple"
|
|
1706
|
+
version = "29.0.3"
|
|
1707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1708
|
+
checksum = "62e51b5447e144b3dbba4feb01f80f4fa21696fa0cd99afb2c3df1affd6fdb28"
|
|
1709
|
+
dependencies = [
|
|
1710
|
+
"wgpu-hal",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
1715
|
+
version = "29.0.3"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "1bfb01076d0aa08b0ba9bd741e178b5cc440f5abe99d9581323a4c8b5d1a1916"
|
|
1718
|
+
dependencies = [
|
|
1719
|
+
"wgpu-hal",
|
|
1720
|
+
]
|
|
1721
|
+
|
|
1789
1722
|
[[package]]
|
|
1790
1723
|
name = "wgpu-hal"
|
|
1791
|
-
version = "
|
|
1724
|
+
version = "29.0.3"
|
|
1792
1725
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
-
checksum = "
|
|
1726
|
+
checksum = "31f8e1a9e7a8512f276f7c62e018c7fa8d60954303fed2e5750114332049193f"
|
|
1794
1727
|
dependencies = [
|
|
1795
1728
|
"android_system_properties",
|
|
1796
1729
|
"arrayvec",
|
|
1797
1730
|
"ash",
|
|
1798
1731
|
"bit-set",
|
|
1799
1732
|
"bitflags 2.11.1",
|
|
1800
|
-
"
|
|
1733
|
+
"block2",
|
|
1801
1734
|
"bytemuck",
|
|
1735
|
+
"cfg-if",
|
|
1802
1736
|
"cfg_aliases",
|
|
1803
|
-
"core-graphics-types",
|
|
1804
|
-
"glow",
|
|
1805
|
-
"glutin_wgl_sys",
|
|
1806
|
-
"gpu-alloc",
|
|
1807
1737
|
"gpu-allocator",
|
|
1808
1738
|
"gpu-descriptor",
|
|
1809
|
-
"
|
|
1810
|
-
"khronos-egl",
|
|
1739
|
+
"hashbrown 0.16.1",
|
|
1811
1740
|
"libc",
|
|
1812
1741
|
"libloading",
|
|
1813
1742
|
"log",
|
|
1814
|
-
"metal",
|
|
1815
1743
|
"naga",
|
|
1816
|
-
"
|
|
1817
|
-
"
|
|
1744
|
+
"objc2",
|
|
1745
|
+
"objc2-core-foundation",
|
|
1746
|
+
"objc2-foundation",
|
|
1747
|
+
"objc2-metal",
|
|
1748
|
+
"objc2-quartz-core",
|
|
1818
1749
|
"once_cell",
|
|
1819
1750
|
"ordered-float",
|
|
1820
1751
|
"parking_lot",
|
|
1752
|
+
"portable-atomic",
|
|
1753
|
+
"portable-atomic-util",
|
|
1821
1754
|
"profiling",
|
|
1822
1755
|
"range-alloc",
|
|
1823
1756
|
"raw-window-handle",
|
|
1757
|
+
"raw-window-metal",
|
|
1824
1758
|
"renderdoc-sys",
|
|
1825
|
-
"rustc-hash",
|
|
1826
1759
|
"smallvec",
|
|
1827
1760
|
"thiserror 2.0.18",
|
|
1828
|
-
"
|
|
1829
|
-
"web-sys",
|
|
1761
|
+
"wgpu-naga-bridge",
|
|
1830
1762
|
"wgpu-types",
|
|
1831
1763
|
"windows",
|
|
1832
1764
|
"windows-core",
|
|
1833
1765
|
]
|
|
1834
1766
|
|
|
1767
|
+
[[package]]
|
|
1768
|
+
name = "wgpu-naga-bridge"
|
|
1769
|
+
version = "29.0.3"
|
|
1770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1771
|
+
checksum = "59c654c483f058800972c3645e95388a7eca31bf9fe1933bc20e036588a0be02"
|
|
1772
|
+
dependencies = [
|
|
1773
|
+
"naga",
|
|
1774
|
+
"wgpu-types",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1835
1777
|
[[package]]
|
|
1836
1778
|
name = "wgpu-types"
|
|
1837
|
-
version = "
|
|
1779
|
+
version = "29.0.3"
|
|
1838
1780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
-
checksum = "
|
|
1781
|
+
checksum = "a9bcc31518a0e9735aefebedb5f7a9ef3ed1c42549c9f4c882fa9060ceaac639"
|
|
1840
1782
|
dependencies = [
|
|
1841
1783
|
"bitflags 2.11.1",
|
|
1784
|
+
"bytemuck",
|
|
1842
1785
|
"js-sys",
|
|
1843
1786
|
"log",
|
|
1787
|
+
"raw-window-handle",
|
|
1844
1788
|
"web-sys",
|
|
1845
1789
|
]
|
|
1846
1790
|
|
|
@@ -1855,32 +1799,54 @@ dependencies = [
|
|
|
1855
1799
|
|
|
1856
1800
|
[[package]]
|
|
1857
1801
|
name = "windows"
|
|
1858
|
-
version = "0.
|
|
1802
|
+
version = "0.62.2"
|
|
1859
1803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
-
checksum = "
|
|
1804
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"windows-collections",
|
|
1807
|
+
"windows-core",
|
|
1808
|
+
"windows-future",
|
|
1809
|
+
"windows-numerics",
|
|
1810
|
+
]
|
|
1811
|
+
|
|
1812
|
+
[[package]]
|
|
1813
|
+
name = "windows-collections"
|
|
1814
|
+
version = "0.3.2"
|
|
1815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
1861
1817
|
dependencies = [
|
|
1862
1818
|
"windows-core",
|
|
1863
|
-
"windows-targets",
|
|
1864
1819
|
]
|
|
1865
1820
|
|
|
1866
1821
|
[[package]]
|
|
1867
1822
|
name = "windows-core"
|
|
1868
|
-
version = "0.
|
|
1823
|
+
version = "0.62.2"
|
|
1869
1824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1870
|
-
checksum = "
|
|
1825
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1871
1826
|
dependencies = [
|
|
1872
1827
|
"windows-implement",
|
|
1873
1828
|
"windows-interface",
|
|
1829
|
+
"windows-link",
|
|
1874
1830
|
"windows-result",
|
|
1875
1831
|
"windows-strings",
|
|
1876
|
-
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "windows-future"
|
|
1836
|
+
version = "0.3.2"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"windows-core",
|
|
1841
|
+
"windows-link",
|
|
1842
|
+
"windows-threading",
|
|
1877
1843
|
]
|
|
1878
1844
|
|
|
1879
1845
|
[[package]]
|
|
1880
1846
|
name = "windows-implement"
|
|
1881
|
-
version = "0.
|
|
1847
|
+
version = "0.60.2"
|
|
1882
1848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1883
|
-
checksum = "
|
|
1849
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1884
1850
|
dependencies = [
|
|
1885
1851
|
"proc-macro2",
|
|
1886
1852
|
"quote",
|
|
@@ -1889,9 +1855,9 @@ dependencies = [
|
|
|
1889
1855
|
|
|
1890
1856
|
[[package]]
|
|
1891
1857
|
name = "windows-interface"
|
|
1892
|
-
version = "0.
|
|
1858
|
+
version = "0.59.3"
|
|
1893
1859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1894
|
-
checksum = "
|
|
1860
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1895
1861
|
dependencies = [
|
|
1896
1862
|
"proc-macro2",
|
|
1897
1863
|
"quote",
|
|
@@ -1904,23 +1870,32 @@ version = "0.2.1"
|
|
|
1904
1870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1905
1871
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1906
1872
|
|
|
1873
|
+
[[package]]
|
|
1874
|
+
name = "windows-numerics"
|
|
1875
|
+
version = "0.3.1"
|
|
1876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
1878
|
+
dependencies = [
|
|
1879
|
+
"windows-core",
|
|
1880
|
+
"windows-link",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1907
1883
|
[[package]]
|
|
1908
1884
|
name = "windows-result"
|
|
1909
|
-
version = "0.
|
|
1885
|
+
version = "0.4.1"
|
|
1910
1886
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1911
|
-
checksum = "
|
|
1887
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1912
1888
|
dependencies = [
|
|
1913
|
-
"windows-
|
|
1889
|
+
"windows-link",
|
|
1914
1890
|
]
|
|
1915
1891
|
|
|
1916
1892
|
[[package]]
|
|
1917
1893
|
name = "windows-strings"
|
|
1918
|
-
version = "0.1
|
|
1894
|
+
version = "0.5.1"
|
|
1919
1895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1920
|
-
checksum = "
|
|
1896
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1921
1897
|
dependencies = [
|
|
1922
|
-
"windows-
|
|
1923
|
-
"windows-targets",
|
|
1898
|
+
"windows-link",
|
|
1924
1899
|
]
|
|
1925
1900
|
|
|
1926
1901
|
[[package]]
|
|
@@ -1933,81 +1908,20 @@ dependencies = [
|
|
|
1933
1908
|
]
|
|
1934
1909
|
|
|
1935
1910
|
[[package]]
|
|
1936
|
-
name = "windows-
|
|
1937
|
-
version = "0.
|
|
1911
|
+
name = "windows-threading"
|
|
1912
|
+
version = "0.2.1"
|
|
1938
1913
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "
|
|
1914
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
1940
1915
|
dependencies = [
|
|
1941
|
-
"
|
|
1942
|
-
"windows_aarch64_msvc",
|
|
1943
|
-
"windows_i686_gnu",
|
|
1944
|
-
"windows_i686_gnullvm",
|
|
1945
|
-
"windows_i686_msvc",
|
|
1946
|
-
"windows_x86_64_gnu",
|
|
1947
|
-
"windows_x86_64_gnullvm",
|
|
1948
|
-
"windows_x86_64_msvc",
|
|
1916
|
+
"windows-link",
|
|
1949
1917
|
]
|
|
1950
1918
|
|
|
1951
|
-
[[package]]
|
|
1952
|
-
name = "windows_aarch64_gnullvm"
|
|
1953
|
-
version = "0.52.6"
|
|
1954
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1955
|
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1956
|
-
|
|
1957
|
-
[[package]]
|
|
1958
|
-
name = "windows_aarch64_msvc"
|
|
1959
|
-
version = "0.52.6"
|
|
1960
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
|
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1962
|
-
|
|
1963
|
-
[[package]]
|
|
1964
|
-
name = "windows_i686_gnu"
|
|
1965
|
-
version = "0.52.6"
|
|
1966
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1968
|
-
|
|
1969
|
-
[[package]]
|
|
1970
|
-
name = "windows_i686_gnullvm"
|
|
1971
|
-
version = "0.52.6"
|
|
1972
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1973
|
-
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1974
|
-
|
|
1975
|
-
[[package]]
|
|
1976
|
-
name = "windows_i686_msvc"
|
|
1977
|
-
version = "0.52.6"
|
|
1978
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1980
|
-
|
|
1981
|
-
[[package]]
|
|
1982
|
-
name = "windows_x86_64_gnu"
|
|
1983
|
-
version = "0.52.6"
|
|
1984
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1985
|
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1986
|
-
|
|
1987
|
-
[[package]]
|
|
1988
|
-
name = "windows_x86_64_gnullvm"
|
|
1989
|
-
version = "0.52.6"
|
|
1990
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1991
|
-
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1992
|
-
|
|
1993
|
-
[[package]]
|
|
1994
|
-
name = "windows_x86_64_msvc"
|
|
1995
|
-
version = "0.52.6"
|
|
1996
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1998
|
-
|
|
1999
1919
|
[[package]]
|
|
2000
1920
|
name = "wit-bindgen"
|
|
2001
1921
|
version = "0.57.1"
|
|
2002
1922
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
1923
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2004
1924
|
|
|
2005
|
-
[[package]]
|
|
2006
|
-
name = "xml-rs"
|
|
2007
|
-
version = "0.8.28"
|
|
2008
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
-
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
2010
|
-
|
|
2011
1925
|
[[package]]
|
|
2012
1926
|
name = "zerocopy"
|
|
2013
1927
|
version = "0.8.48"
|