temporalio 0.6.0 → 1.0.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/Cargo.lock +148 -464
- data/README.md +2 -11
- data/ext/Cargo.toml +3 -1
- data/lib/temporalio/activity/info.rb +5 -0
- data/lib/temporalio/cancellation.rb +2 -2
- data/lib/temporalio/client/async_activity_handle.rb +1 -0
- data/lib/temporalio/env_config.rb +343 -0
- data/lib/temporalio/error.rb +5 -1
- data/lib/temporalio/internal/bridge/worker.rb +50 -0
- data/lib/temporalio/internal/client/implementation.rb +7 -2
- data/lib/temporalio/internal/worker/activity_worker.rb +1 -0
- data/lib/temporalio/internal/worker/workflow_instance/context.rb +2 -0
- data/lib/temporalio/internal/worker/workflow_instance/illegal_call_tracer.rb +17 -10
- data/lib/temporalio/internal/worker/workflow_instance/outbound_implementation.rb +6 -5
- data/lib/temporalio/internal/worker/workflow_instance.rb +77 -80
- data/lib/temporalio/testing/activity_environment.rb +1 -0
- data/lib/temporalio/version.rb +1 -1
- data/lib/temporalio/worker/interceptor.rb +1 -0
- data/lib/temporalio/worker/tuner.rb +185 -16
- data/lib/temporalio/workflow/info.rb +3 -0
- data/lib/temporalio/workflow.rb +6 -3
- metadata +2 -1
data/Cargo.lock
CHANGED
@@ -17,17 +17,6 @@ version = "2.0.1"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
18
|
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
19
19
|
|
20
|
-
[[package]]
|
21
|
-
name = "aes"
|
22
|
-
version = "0.8.4"
|
23
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
|
25
|
-
dependencies = [
|
26
|
-
"cfg-if",
|
27
|
-
"cipher",
|
28
|
-
"cpufeatures",
|
29
|
-
]
|
30
|
-
|
31
20
|
[[package]]
|
32
21
|
name = "aho-corasick"
|
33
22
|
version = "1.1.3"
|
@@ -327,15 +316,6 @@ version = "2.9.2"
|
|
327
316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
328
317
|
checksum = "6a65b545ab31d687cff52899d4890855fec459eb6afe0da6417b8a18da87aa29"
|
329
318
|
|
330
|
-
[[package]]
|
331
|
-
name = "block-buffer"
|
332
|
-
version = "0.10.4"
|
333
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
334
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
335
|
-
dependencies = [
|
336
|
-
"generic-array",
|
337
|
-
]
|
338
|
-
|
339
319
|
[[package]]
|
340
320
|
name = "bumpalo"
|
341
321
|
version = "3.19.0"
|
@@ -356,21 +336,11 @@ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
356
336
|
|
357
337
|
[[package]]
|
358
338
|
name = "bzip2"
|
359
|
-
version = "0.
|
360
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
-
checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47"
|
362
|
-
dependencies = [
|
363
|
-
"bzip2-sys",
|
364
|
-
]
|
365
|
-
|
366
|
-
[[package]]
|
367
|
-
name = "bzip2-sys"
|
368
|
-
version = "0.1.13+1.0.8"
|
339
|
+
version = "0.6.0"
|
369
340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
370
|
-
checksum = "
|
341
|
+
checksum = "bea8dcd42434048e4f7a304411d9273a411f647446c1234a65ce0554923f4cff"
|
371
342
|
dependencies = [
|
372
|
-
"
|
373
|
-
"pkg-config",
|
343
|
+
"libbz2-rs-sys",
|
374
344
|
]
|
375
345
|
|
376
346
|
[[package]]
|
@@ -448,16 +418,6 @@ dependencies = [
|
|
448
418
|
"half",
|
449
419
|
]
|
450
420
|
|
451
|
-
[[package]]
|
452
|
-
name = "cipher"
|
453
|
-
version = "0.4.4"
|
454
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
-
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
456
|
-
dependencies = [
|
457
|
-
"crypto-common",
|
458
|
-
"inout",
|
459
|
-
]
|
460
|
-
|
461
421
|
[[package]]
|
462
422
|
name = "clang-sys"
|
463
423
|
version = "1.8.1"
|
@@ -554,12 +514,6 @@ dependencies = [
|
|
554
514
|
"tracing-subscriber",
|
555
515
|
]
|
556
516
|
|
557
|
-
[[package]]
|
558
|
-
name = "constant_time_eq"
|
559
|
-
version = "0.3.1"
|
560
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
561
|
-
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
562
|
-
|
563
517
|
[[package]]
|
564
518
|
name = "core-foundation"
|
565
519
|
version = "0.10.1"
|
@@ -576,30 +530,6 @@ version = "0.8.7"
|
|
576
530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
531
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
578
532
|
|
579
|
-
[[package]]
|
580
|
-
name = "cpufeatures"
|
581
|
-
version = "0.2.17"
|
582
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
583
|
-
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
584
|
-
dependencies = [
|
585
|
-
"libc",
|
586
|
-
]
|
587
|
-
|
588
|
-
[[package]]
|
589
|
-
name = "crc"
|
590
|
-
version = "3.3.0"
|
591
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
592
|
-
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
593
|
-
dependencies = [
|
594
|
-
"crc-catalog",
|
595
|
-
]
|
596
|
-
|
597
|
-
[[package]]
|
598
|
-
name = "crc-catalog"
|
599
|
-
version = "2.4.0"
|
600
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
601
|
-
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
602
|
-
|
603
533
|
[[package]]
|
604
534
|
name = "crc32fast"
|
605
535
|
version = "1.5.0"
|
@@ -611,9 +541,9 @@ dependencies = [
|
|
611
541
|
|
612
542
|
[[package]]
|
613
543
|
name = "criterion"
|
614
|
-
version = "0.
|
544
|
+
version = "0.7.0"
|
615
545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
|
-
checksum = "
|
546
|
+
checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
|
617
547
|
dependencies = [
|
618
548
|
"anes",
|
619
549
|
"cast",
|
@@ -635,12 +565,12 @@ dependencies = [
|
|
635
565
|
|
636
566
|
[[package]]
|
637
567
|
name = "criterion-plot"
|
638
|
-
version = "0.
|
568
|
+
version = "0.6.0"
|
639
569
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
640
|
-
checksum = "
|
570
|
+
checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
|
641
571
|
dependencies = [
|
642
572
|
"cast",
|
643
|
-
"itertools 0.
|
573
|
+
"itertools 0.13.0",
|
644
574
|
]
|
645
575
|
|
646
576
|
[[package]]
|
@@ -692,16 +622,6 @@ version = "0.2.4"
|
|
692
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
693
623
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
694
624
|
|
695
|
-
[[package]]
|
696
|
-
name = "crypto-common"
|
697
|
-
version = "0.1.6"
|
698
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
699
|
-
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
700
|
-
dependencies = [
|
701
|
-
"generic-array",
|
702
|
-
"typenum",
|
703
|
-
]
|
704
|
-
|
705
625
|
[[package]]
|
706
626
|
name = "darling"
|
707
627
|
version = "0.20.11"
|
@@ -751,21 +671,6 @@ dependencies = [
|
|
751
671
|
"parking_lot_core",
|
752
672
|
]
|
753
673
|
|
754
|
-
[[package]]
|
755
|
-
name = "deflate64"
|
756
|
-
version = "0.1.9"
|
757
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
-
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
|
759
|
-
|
760
|
-
[[package]]
|
761
|
-
name = "deranged"
|
762
|
-
version = "0.4.0"
|
763
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
764
|
-
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
765
|
-
dependencies = [
|
766
|
-
"powerfmt",
|
767
|
-
]
|
768
|
-
|
769
674
|
[[package]]
|
770
675
|
name = "derive_arbitrary"
|
771
676
|
version = "1.4.2"
|
@@ -829,36 +734,25 @@ dependencies = [
|
|
829
734
|
"unicode-xid",
|
830
735
|
]
|
831
736
|
|
832
|
-
[[package]]
|
833
|
-
name = "digest"
|
834
|
-
version = "0.10.7"
|
835
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
837
|
-
dependencies = [
|
838
|
-
"block-buffer",
|
839
|
-
"crypto-common",
|
840
|
-
"subtle",
|
841
|
-
]
|
842
|
-
|
843
737
|
[[package]]
|
844
738
|
name = "dirs"
|
845
|
-
version = "
|
739
|
+
version = "6.0.0"
|
846
740
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
847
|
-
checksum = "
|
741
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
848
742
|
dependencies = [
|
849
743
|
"dirs-sys",
|
850
744
|
]
|
851
745
|
|
852
746
|
[[package]]
|
853
747
|
name = "dirs-sys"
|
854
|
-
version = "0.
|
748
|
+
version = "0.5.0"
|
855
749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
-
checksum = "
|
750
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
857
751
|
dependencies = [
|
858
752
|
"libc",
|
859
753
|
"option-ext",
|
860
754
|
"redox_users",
|
861
|
-
"windows-sys 0.
|
755
|
+
"windows-sys 0.60.2",
|
862
756
|
]
|
863
757
|
|
864
758
|
[[package]]
|
@@ -979,6 +873,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
979
873
|
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
980
874
|
dependencies = [
|
981
875
|
"crc32fast",
|
876
|
+
"libz-rs-sys",
|
982
877
|
"miniz_oxide",
|
983
878
|
]
|
984
879
|
|
@@ -1115,16 +1010,6 @@ dependencies = [
|
|
1115
1010
|
"slab",
|
1116
1011
|
]
|
1117
1012
|
|
1118
|
-
[[package]]
|
1119
|
-
name = "generic-array"
|
1120
|
-
version = "0.14.7"
|
1121
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1122
|
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1123
|
-
dependencies = [
|
1124
|
-
"typenum",
|
1125
|
-
"version_check",
|
1126
|
-
]
|
1127
|
-
|
1128
1013
|
[[package]]
|
1129
1014
|
name = "gethostname"
|
1130
1015
|
version = "1.0.2"
|
@@ -1176,9 +1061,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1176
1061
|
|
1177
1062
|
[[package]]
|
1178
1063
|
name = "governor"
|
1179
|
-
version = "0.
|
1064
|
+
version = "0.10.1"
|
1180
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1181
|
-
checksum = "
|
1066
|
+
checksum = "444405bbb1a762387aa22dd569429533b54a1d8759d35d3b64cb39b0293eaa19"
|
1182
1067
|
dependencies = [
|
1183
1068
|
"cfg-if",
|
1184
1069
|
"dashmap",
|
@@ -1186,7 +1071,7 @@ dependencies = [
|
|
1186
1071
|
"futures-timer",
|
1187
1072
|
"futures-util",
|
1188
1073
|
"getrandom 0.3.3",
|
1189
|
-
"
|
1074
|
+
"hashbrown 0.15.5",
|
1190
1075
|
"nonzero_ext",
|
1191
1076
|
"parking_lot",
|
1192
1077
|
"portable-atomic",
|
@@ -1268,15 +1153,6 @@ version = "0.5.0"
|
|
1268
1153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1269
1154
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
1270
1155
|
|
1271
|
-
[[package]]
|
1272
|
-
name = "hmac"
|
1273
|
-
version = "0.12.1"
|
1274
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1275
|
-
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
1276
|
-
dependencies = [
|
1277
|
-
"digest",
|
1278
|
-
]
|
1279
|
-
|
1280
1156
|
[[package]]
|
1281
1157
|
name = "http"
|
1282
1158
|
version = "1.3.1"
|
@@ -1539,15 +1415,6 @@ dependencies = [
|
|
1539
1415
|
"hashbrown 0.15.5",
|
1540
1416
|
]
|
1541
1417
|
|
1542
|
-
[[package]]
|
1543
|
-
name = "inout"
|
1544
|
-
version = "0.1.4"
|
1545
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1546
|
-
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
1547
|
-
dependencies = [
|
1548
|
-
"generic-array",
|
1549
|
-
]
|
1550
|
-
|
1551
1418
|
[[package]]
|
1552
1419
|
name = "instant"
|
1553
1420
|
version = "0.1.13"
|
@@ -1599,15 +1466,6 @@ version = "1.70.1"
|
|
1599
1466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1600
1467
|
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
1601
1468
|
|
1602
|
-
[[package]]
|
1603
|
-
name = "itertools"
|
1604
|
-
version = "0.10.5"
|
1605
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1606
|
-
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
1607
|
-
dependencies = [
|
1608
|
-
"either",
|
1609
|
-
]
|
1610
|
-
|
1611
1469
|
[[package]]
|
1612
1470
|
name = "itertools"
|
1613
1471
|
version = "0.12.1"
|
@@ -1673,6 +1531,12 @@ version = "1.3.0"
|
|
1673
1531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1674
1532
|
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
1675
1533
|
|
1534
|
+
[[package]]
|
1535
|
+
name = "libbz2-rs-sys"
|
1536
|
+
version = "0.2.2"
|
1537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1538
|
+
checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
|
1539
|
+
|
1676
1540
|
[[package]]
|
1677
1541
|
name = "libc"
|
1678
1542
|
version = "0.2.175"
|
@@ -1700,6 +1564,15 @@ dependencies = [
|
|
1700
1564
|
"redox_syscall",
|
1701
1565
|
]
|
1702
1566
|
|
1567
|
+
[[package]]
|
1568
|
+
name = "libz-rs-sys"
|
1569
|
+
version = "0.5.2"
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1571
|
+
checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
|
1572
|
+
dependencies = [
|
1573
|
+
"zlib-rs",
|
1574
|
+
]
|
1575
|
+
|
1703
1576
|
[[package]]
|
1704
1577
|
name = "linux-raw-sys"
|
1705
1578
|
version = "0.9.4"
|
@@ -1730,9 +1603,9 @@ checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1730
1603
|
|
1731
1604
|
[[package]]
|
1732
1605
|
name = "lru"
|
1733
|
-
version = "0.
|
1606
|
+
version = "0.16.0"
|
1734
1607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1735
|
-
checksum = "
|
1608
|
+
checksum = "86ea4e65087ff52f3862caff188d489f1fab49a0cb09e01b2e3f1a617b10aaed"
|
1736
1609
|
dependencies = [
|
1737
1610
|
"hashbrown 0.15.5",
|
1738
1611
|
]
|
@@ -1743,27 +1616,6 @@ version = "0.1.2"
|
|
1743
1616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1744
1617
|
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
1745
1618
|
|
1746
|
-
[[package]]
|
1747
|
-
name = "lzma-rs"
|
1748
|
-
version = "0.3.0"
|
1749
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1750
|
-
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
|
1751
|
-
dependencies = [
|
1752
|
-
"byteorder",
|
1753
|
-
"crc",
|
1754
|
-
]
|
1755
|
-
|
1756
|
-
[[package]]
|
1757
|
-
name = "lzma-sys"
|
1758
|
-
version = "0.1.20"
|
1759
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1760
|
-
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
|
1761
|
-
dependencies = [
|
1762
|
-
"cc",
|
1763
|
-
"libc",
|
1764
|
-
"pkg-config",
|
1765
|
-
]
|
1766
|
-
|
1767
1619
|
[[package]]
|
1768
1620
|
name = "magnus"
|
1769
1621
|
version = "0.7.1"
|
@@ -1789,11 +1641,11 @@ dependencies = [
|
|
1789
1641
|
|
1790
1642
|
[[package]]
|
1791
1643
|
name = "matchers"
|
1792
|
-
version = "0.
|
1644
|
+
version = "0.2.0"
|
1793
1645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1794
|
-
checksum = "
|
1646
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
1795
1647
|
dependencies = [
|
1796
|
-
"regex-automata
|
1648
|
+
"regex-automata",
|
1797
1649
|
]
|
1798
1650
|
|
1799
1651
|
[[package]]
|
@@ -1878,12 +1730,6 @@ version = "0.10.1"
|
|
1878
1730
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1879
1731
|
checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
1880
1732
|
|
1881
|
-
[[package]]
|
1882
|
-
name = "no-std-compat"
|
1883
|
-
version = "0.4.1"
|
1884
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1885
|
-
checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
|
1886
|
-
|
1887
1733
|
[[package]]
|
1888
1734
|
name = "nom"
|
1889
1735
|
version = "7.1.3"
|
@@ -1911,20 +1757,13 @@ dependencies = [
|
|
1911
1757
|
|
1912
1758
|
[[package]]
|
1913
1759
|
name = "nu-ansi-term"
|
1914
|
-
version = "0.
|
1760
|
+
version = "0.50.1"
|
1915
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1916
|
-
checksum = "
|
1762
|
+
checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
|
1917
1763
|
dependencies = [
|
1918
|
-
"
|
1919
|
-
"winapi",
|
1764
|
+
"windows-sys 0.52.0",
|
1920
1765
|
]
|
1921
1766
|
|
1922
|
-
[[package]]
|
1923
|
-
name = "num-conv"
|
1924
|
-
version = "0.1.0"
|
1925
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1926
|
-
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
1927
|
-
|
1928
1767
|
[[package]]
|
1929
1768
|
name = "num-traits"
|
1930
1769
|
version = "0.2.19"
|
@@ -1934,6 +1773,25 @@ dependencies = [
|
|
1934
1773
|
"autocfg",
|
1935
1774
|
]
|
1936
1775
|
|
1776
|
+
[[package]]
|
1777
|
+
name = "objc2-core-foundation"
|
1778
|
+
version = "0.3.1"
|
1779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1780
|
+
checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
|
1781
|
+
dependencies = [
|
1782
|
+
"bitflags",
|
1783
|
+
]
|
1784
|
+
|
1785
|
+
[[package]]
|
1786
|
+
name = "objc2-io-kit"
|
1787
|
+
version = "0.3.1"
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1789
|
+
checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a"
|
1790
|
+
dependencies = [
|
1791
|
+
"libc",
|
1792
|
+
"objc2-core-foundation",
|
1793
|
+
]
|
1794
|
+
|
1937
1795
|
[[package]]
|
1938
1796
|
name = "object"
|
1939
1797
|
version = "0.36.7"
|
@@ -2049,12 +1907,6 @@ version = "0.2.0"
|
|
2049
1907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
1908
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
2051
1909
|
|
2052
|
-
[[package]]
|
2053
|
-
name = "overload"
|
2054
|
-
version = "0.1.1"
|
2055
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2056
|
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
2057
|
-
|
2058
1910
|
[[package]]
|
2059
1911
|
name = "parking_lot"
|
2060
1912
|
version = "0.12.4"
|
@@ -2078,16 +1930,6 @@ dependencies = [
|
|
2078
1930
|
"windows-targets 0.52.6",
|
2079
1931
|
]
|
2080
1932
|
|
2081
|
-
[[package]]
|
2082
|
-
name = "pbkdf2"
|
2083
|
-
version = "0.12.2"
|
2084
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2085
|
-
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
|
2086
|
-
dependencies = [
|
2087
|
-
"digest",
|
2088
|
-
"hmac",
|
2089
|
-
]
|
2090
|
-
|
2091
1933
|
[[package]]
|
2092
1934
|
name = "percent-encoding"
|
2093
1935
|
version = "2.3.1"
|
@@ -2203,12 +2045,6 @@ dependencies = [
|
|
2203
2045
|
"zerovec",
|
2204
2046
|
]
|
2205
2047
|
|
2206
|
-
[[package]]
|
2207
|
-
name = "powerfmt"
|
2208
|
-
version = "0.2.0"
|
2209
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2210
|
-
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
2211
|
-
|
2212
2048
|
[[package]]
|
2213
2049
|
name = "ppv-lite86"
|
2214
2050
|
version = "0.2.21"
|
@@ -2619,13 +2455,13 @@ dependencies = [
|
|
2619
2455
|
|
2620
2456
|
[[package]]
|
2621
2457
|
name = "redox_users"
|
2622
|
-
version = "0.
|
2458
|
+
version = "0.5.2"
|
2623
2459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2624
|
-
checksum = "
|
2460
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
2625
2461
|
dependencies = [
|
2626
2462
|
"getrandom 0.2.16",
|
2627
2463
|
"libredox",
|
2628
|
-
"thiserror
|
2464
|
+
"thiserror 2.0.16",
|
2629
2465
|
]
|
2630
2466
|
|
2631
2467
|
[[package]]
|
@@ -2636,17 +2472,8 @@ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
2636
2472
|
dependencies = [
|
2637
2473
|
"aho-corasick",
|
2638
2474
|
"memchr",
|
2639
|
-
"regex-automata
|
2640
|
-
"regex-syntax
|
2641
|
-
]
|
2642
|
-
|
2643
|
-
[[package]]
|
2644
|
-
name = "regex-automata"
|
2645
|
-
version = "0.1.10"
|
2646
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2647
|
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
2648
|
-
dependencies = [
|
2649
|
-
"regex-syntax 0.6.29",
|
2475
|
+
"regex-automata",
|
2476
|
+
"regex-syntax",
|
2650
2477
|
]
|
2651
2478
|
|
2652
2479
|
[[package]]
|
@@ -2657,15 +2484,9 @@ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
2657
2484
|
dependencies = [
|
2658
2485
|
"aho-corasick",
|
2659
2486
|
"memchr",
|
2660
|
-
"regex-syntax
|
2487
|
+
"regex-syntax",
|
2661
2488
|
]
|
2662
2489
|
|
2663
|
-
[[package]]
|
2664
|
-
name = "regex-syntax"
|
2665
|
-
version = "0.6.29"
|
2666
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2667
|
-
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
2668
|
-
|
2669
2490
|
[[package]]
|
2670
2491
|
name = "regex-syntax"
|
2671
2492
|
version = "0.8.5"
|
@@ -2747,21 +2568,20 @@ dependencies = [
|
|
2747
2568
|
|
2748
2569
|
[[package]]
|
2749
2570
|
name = "rstest"
|
2750
|
-
version = "0.
|
2571
|
+
version = "0.26.1"
|
2751
2572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2752
|
-
checksum = "
|
2573
|
+
checksum = "f5a3193c063baaa2a95a33f03035c8a72b83d97a54916055ba22d35ed3839d49"
|
2753
2574
|
dependencies = [
|
2754
2575
|
"futures-timer",
|
2755
2576
|
"futures-util",
|
2756
2577
|
"rstest_macros",
|
2757
|
-
"rustc_version",
|
2758
2578
|
]
|
2759
2579
|
|
2760
2580
|
[[package]]
|
2761
2581
|
name = "rstest_macros"
|
2762
|
-
version = "0.
|
2582
|
+
version = "0.26.1"
|
2763
2583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2764
|
-
checksum = "
|
2584
|
+
checksum = "9c845311f0ff7951c5506121a9ad75aec44d083c31583b2ea5a30bcb0b0abba0"
|
2765
2585
|
dependencies = [
|
2766
2586
|
"cfg-if",
|
2767
2587
|
"glob",
|
@@ -2990,15 +2810,6 @@ dependencies = [
|
|
2990
2810
|
"serde",
|
2991
2811
|
]
|
2992
2812
|
|
2993
|
-
[[package]]
|
2994
|
-
name = "serde_spanned"
|
2995
|
-
version = "0.6.9"
|
2996
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2997
|
-
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
2998
|
-
dependencies = [
|
2999
|
-
"serde",
|
3000
|
-
]
|
3001
|
-
|
3002
2813
|
[[package]]
|
3003
2814
|
name = "serde_spanned"
|
3004
2815
|
version = "1.0.0"
|
@@ -3020,17 +2831,6 @@ dependencies = [
|
|
3020
2831
|
"serde",
|
3021
2832
|
]
|
3022
2833
|
|
3023
|
-
[[package]]
|
3024
|
-
name = "sha1"
|
3025
|
-
version = "0.10.6"
|
3026
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3027
|
-
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
3028
|
-
dependencies = [
|
3029
|
-
"cfg-if",
|
3030
|
-
"cpufeatures",
|
3031
|
-
"digest",
|
3032
|
-
]
|
3033
|
-
|
3034
2834
|
[[package]]
|
3035
2835
|
name = "sharded-slab"
|
3036
2836
|
version = "0.1.7"
|
@@ -3174,14 +2974,15 @@ dependencies = [
|
|
3174
2974
|
|
3175
2975
|
[[package]]
|
3176
2976
|
name = "sysinfo"
|
3177
|
-
version = "0.
|
2977
|
+
version = "0.37.0"
|
3178
2978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3179
|
-
checksum = "
|
2979
|
+
checksum = "07cec4dc2d2e357ca1e610cfb07de2fa7a10fc3e9fe89f72545f3d244ea87753"
|
3180
2980
|
dependencies = [
|
3181
|
-
"core-foundation-sys",
|
3182
2981
|
"libc",
|
3183
2982
|
"memchr",
|
3184
2983
|
"ntapi",
|
2984
|
+
"objc2-core-foundation",
|
2985
|
+
"objc2-io-kit",
|
3185
2986
|
"windows",
|
3186
2987
|
]
|
3187
2988
|
|
@@ -3278,6 +3079,7 @@ dependencies = [
|
|
3278
3079
|
"assert_matches",
|
3279
3080
|
"async-trait",
|
3280
3081
|
"bimap",
|
3082
|
+
"bytes",
|
3281
3083
|
"clap",
|
3282
3084
|
"console-subscriber",
|
3283
3085
|
"criterion",
|
@@ -3314,6 +3116,7 @@ dependencies = [
|
|
3314
3116
|
"ringbuf",
|
3315
3117
|
"rstest",
|
3316
3118
|
"rustfsm",
|
3119
|
+
"semver",
|
3317
3120
|
"serde",
|
3318
3121
|
"serde_json",
|
3319
3122
|
"siphasher",
|
@@ -3324,7 +3127,6 @@ dependencies = [
|
|
3324
3127
|
"temporal-sdk",
|
3325
3128
|
"temporal-sdk-core-api",
|
3326
3129
|
"temporal-sdk-core-protos",
|
3327
|
-
"temporal-sdk-core-test-utils",
|
3328
3130
|
"thiserror 2.0.16",
|
3329
3131
|
"tokio",
|
3330
3132
|
"tokio-stream",
|
@@ -3352,7 +3154,7 @@ dependencies = [
|
|
3352
3154
|
"tempfile",
|
3353
3155
|
"temporal-sdk-core-protos",
|
3354
3156
|
"thiserror 2.0.16",
|
3355
|
-
"toml
|
3157
|
+
"toml",
|
3356
3158
|
"tonic 0.13.1",
|
3357
3159
|
"tracing",
|
3358
3160
|
"tracing-core",
|
@@ -3380,37 +3182,13 @@ dependencies = [
|
|
3380
3182
|
"uuid",
|
3381
3183
|
]
|
3382
3184
|
|
3383
|
-
[[package]]
|
3384
|
-
name = "temporal-sdk-core-test-utils"
|
3385
|
-
version = "0.1.0"
|
3386
|
-
dependencies = [
|
3387
|
-
"anyhow",
|
3388
|
-
"assert_matches",
|
3389
|
-
"async-trait",
|
3390
|
-
"bytes",
|
3391
|
-
"futures-util",
|
3392
|
-
"http-body-util",
|
3393
|
-
"hyper",
|
3394
|
-
"hyper-util",
|
3395
|
-
"parking_lot",
|
3396
|
-
"prost",
|
3397
|
-
"rand 0.9.2",
|
3398
|
-
"semver",
|
3399
|
-
"temporal-client",
|
3400
|
-
"temporal-sdk",
|
3401
|
-
"temporal-sdk-core",
|
3402
|
-
"temporal-sdk-core-api",
|
3403
|
-
"temporal-sdk-core-protos",
|
3404
|
-
"tokio",
|
3405
|
-
"tracing",
|
3406
|
-
"url",
|
3407
|
-
]
|
3408
|
-
|
3409
3185
|
[[package]]
|
3410
3186
|
name = "temporalio_bridge"
|
3411
3187
|
version = "0.1.0"
|
3412
3188
|
dependencies = [
|
3189
|
+
"async-trait",
|
3413
3190
|
"futures",
|
3191
|
+
"log",
|
3414
3192
|
"magnus",
|
3415
3193
|
"parking_lot",
|
3416
3194
|
"prost",
|
@@ -3491,25 +3269,6 @@ dependencies = [
|
|
3491
3269
|
"cfg-if",
|
3492
3270
|
]
|
3493
3271
|
|
3494
|
-
[[package]]
|
3495
|
-
name = "time"
|
3496
|
-
version = "0.3.41"
|
3497
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3498
|
-
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
3499
|
-
dependencies = [
|
3500
|
-
"deranged",
|
3501
|
-
"num-conv",
|
3502
|
-
"powerfmt",
|
3503
|
-
"serde",
|
3504
|
-
"time-core",
|
3505
|
-
]
|
3506
|
-
|
3507
|
-
[[package]]
|
3508
|
-
name = "time-core"
|
3509
|
-
version = "0.1.4"
|
3510
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3511
|
-
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
3512
|
-
|
3513
3272
|
[[package]]
|
3514
3273
|
name = "tinystr"
|
3515
3274
|
version = "0.8.1"
|
@@ -3611,18 +3370,6 @@ dependencies = [
|
|
3611
3370
|
"tokio",
|
3612
3371
|
]
|
3613
3372
|
|
3614
|
-
[[package]]
|
3615
|
-
name = "toml"
|
3616
|
-
version = "0.8.23"
|
3617
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3618
|
-
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
3619
|
-
dependencies = [
|
3620
|
-
"serde",
|
3621
|
-
"serde_spanned 0.6.9",
|
3622
|
-
"toml_datetime 0.6.11",
|
3623
|
-
"toml_edit",
|
3624
|
-
]
|
3625
|
-
|
3626
3373
|
[[package]]
|
3627
3374
|
name = "toml"
|
3628
3375
|
version = "0.9.5"
|
@@ -3631,7 +3378,7 @@ checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
|
|
3631
3378
|
dependencies = [
|
3632
3379
|
"indexmap 2.10.0",
|
3633
3380
|
"serde",
|
3634
|
-
"serde_spanned
|
3381
|
+
"serde_spanned",
|
3635
3382
|
"toml_datetime 0.7.0",
|
3636
3383
|
"toml_parser",
|
3637
3384
|
"toml_writer",
|
@@ -3643,9 +3390,6 @@ name = "toml_datetime"
|
|
3643
3390
|
version = "0.6.11"
|
3644
3391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3645
3392
|
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
3646
|
-
dependencies = [
|
3647
|
-
"serde",
|
3648
|
-
]
|
3649
3393
|
|
3650
3394
|
[[package]]
|
3651
3395
|
name = "toml_datetime"
|
@@ -3663,10 +3407,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
3407
|
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
3664
3408
|
dependencies = [
|
3665
3409
|
"indexmap 2.10.0",
|
3666
|
-
"serde",
|
3667
|
-
"serde_spanned 0.6.9",
|
3668
3410
|
"toml_datetime 0.6.11",
|
3669
|
-
"toml_write",
|
3670
3411
|
"winnow",
|
3671
3412
|
]
|
3672
3413
|
|
@@ -3679,12 +3420,6 @@ dependencies = [
|
|
3679
3420
|
"winnow",
|
3680
3421
|
]
|
3681
3422
|
|
3682
|
-
[[package]]
|
3683
|
-
name = "toml_write"
|
3684
|
-
version = "0.1.2"
|
3685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3686
|
-
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
3687
|
-
|
3688
3423
|
[[package]]
|
3689
3424
|
name = "toml_writer"
|
3690
3425
|
version = "1.0.2"
|
@@ -3869,15 +3604,15 @@ dependencies = [
|
|
3869
3604
|
|
3870
3605
|
[[package]]
|
3871
3606
|
name = "tracing-subscriber"
|
3872
|
-
version = "0.3.
|
3607
|
+
version = "0.3.20"
|
3873
3608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3874
|
-
checksum = "
|
3609
|
+
checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
|
3875
3610
|
dependencies = [
|
3876
3611
|
"matchers",
|
3877
3612
|
"nu-ansi-term",
|
3878
3613
|
"once_cell",
|
3879
3614
|
"parking_lot",
|
3880
|
-
"regex",
|
3615
|
+
"regex-automata",
|
3881
3616
|
"sharded-slab",
|
3882
3617
|
"thread_local",
|
3883
3618
|
"tracing",
|
@@ -3903,7 +3638,7 @@ dependencies = [
|
|
3903
3638
|
"serde_json",
|
3904
3639
|
"target-triple",
|
3905
3640
|
"termcolor",
|
3906
|
-
"toml
|
3641
|
+
"toml",
|
3907
3642
|
]
|
3908
3643
|
|
3909
3644
|
[[package]]
|
@@ -3912,12 +3647,6 @@ version = "1.0.3"
|
|
3912
3647
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3913
3648
|
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
3914
3649
|
|
3915
|
-
[[package]]
|
3916
|
-
name = "typenum"
|
3917
|
-
version = "1.18.0"
|
3918
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3919
|
-
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
3920
|
-
|
3921
3650
|
[[package]]
|
3922
3651
|
name = "typetag"
|
3923
3652
|
version = "0.2.20"
|
@@ -4177,31 +3906,55 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4177
3906
|
|
4178
3907
|
[[package]]
|
4179
3908
|
name = "windows"
|
4180
|
-
version = "0.
|
3909
|
+
version = "0.61.3"
|
4181
3910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4182
|
-
checksum = "
|
3911
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
3912
|
+
dependencies = [
|
3913
|
+
"windows-collections",
|
3914
|
+
"windows-core",
|
3915
|
+
"windows-future",
|
3916
|
+
"windows-link",
|
3917
|
+
"windows-numerics",
|
3918
|
+
]
|
3919
|
+
|
3920
|
+
[[package]]
|
3921
|
+
name = "windows-collections"
|
3922
|
+
version = "0.2.0"
|
3923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3924
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
4183
3925
|
dependencies = [
|
4184
3926
|
"windows-core",
|
4185
|
-
"windows-targets 0.52.6",
|
4186
3927
|
]
|
4187
3928
|
|
4188
3929
|
[[package]]
|
4189
3930
|
name = "windows-core"
|
4190
|
-
version = "0.
|
3931
|
+
version = "0.61.2"
|
4191
3932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4192
|
-
checksum = "
|
3933
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
4193
3934
|
dependencies = [
|
4194
3935
|
"windows-implement",
|
4195
3936
|
"windows-interface",
|
3937
|
+
"windows-link",
|
4196
3938
|
"windows-result",
|
4197
|
-
"windows-
|
3939
|
+
"windows-strings",
|
3940
|
+
]
|
3941
|
+
|
3942
|
+
[[package]]
|
3943
|
+
name = "windows-future"
|
3944
|
+
version = "0.2.1"
|
3945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3946
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
3947
|
+
dependencies = [
|
3948
|
+
"windows-core",
|
3949
|
+
"windows-link",
|
3950
|
+
"windows-threading",
|
4198
3951
|
]
|
4199
3952
|
|
4200
3953
|
[[package]]
|
4201
3954
|
name = "windows-implement"
|
4202
|
-
version = "0.
|
3955
|
+
version = "0.60.0"
|
4203
3956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4204
|
-
checksum = "
|
3957
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
4205
3958
|
dependencies = [
|
4206
3959
|
"proc-macro2",
|
4207
3960
|
"quote",
|
@@ -4210,9 +3963,9 @@ dependencies = [
|
|
4210
3963
|
|
4211
3964
|
[[package]]
|
4212
3965
|
name = "windows-interface"
|
4213
|
-
version = "0.
|
3966
|
+
version = "0.59.1"
|
4214
3967
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4215
|
-
checksum = "
|
3968
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
4216
3969
|
dependencies = [
|
4217
3970
|
"proc-macro2",
|
4218
3971
|
"quote",
|
@@ -4225,22 +3978,32 @@ version = "0.1.3"
|
|
4225
3978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4226
3979
|
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
4227
3980
|
|
3981
|
+
[[package]]
|
3982
|
+
name = "windows-numerics"
|
3983
|
+
version = "0.2.0"
|
3984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
3985
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
3986
|
+
dependencies = [
|
3987
|
+
"windows-core",
|
3988
|
+
"windows-link",
|
3989
|
+
]
|
3990
|
+
|
4228
3991
|
[[package]]
|
4229
3992
|
name = "windows-result"
|
4230
|
-
version = "0.
|
3993
|
+
version = "0.3.4"
|
4231
3994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4232
|
-
checksum = "
|
3995
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
4233
3996
|
dependencies = [
|
4234
|
-
"windows-
|
3997
|
+
"windows-link",
|
4235
3998
|
]
|
4236
3999
|
|
4237
4000
|
[[package]]
|
4238
|
-
name = "windows-
|
4239
|
-
version = "0.
|
4001
|
+
name = "windows-strings"
|
4002
|
+
version = "0.4.2"
|
4240
4003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4241
|
-
checksum = "
|
4004
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
4242
4005
|
dependencies = [
|
4243
|
-
"windows-
|
4006
|
+
"windows-link",
|
4244
4007
|
]
|
4245
4008
|
|
4246
4009
|
[[package]]
|
@@ -4270,21 +4033,6 @@ dependencies = [
|
|
4270
4033
|
"windows-targets 0.53.3",
|
4271
4034
|
]
|
4272
4035
|
|
4273
|
-
[[package]]
|
4274
|
-
name = "windows-targets"
|
4275
|
-
version = "0.48.5"
|
4276
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4277
|
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
4278
|
-
dependencies = [
|
4279
|
-
"windows_aarch64_gnullvm 0.48.5",
|
4280
|
-
"windows_aarch64_msvc 0.48.5",
|
4281
|
-
"windows_i686_gnu 0.48.5",
|
4282
|
-
"windows_i686_msvc 0.48.5",
|
4283
|
-
"windows_x86_64_gnu 0.48.5",
|
4284
|
-
"windows_x86_64_gnullvm 0.48.5",
|
4285
|
-
"windows_x86_64_msvc 0.48.5",
|
4286
|
-
]
|
4287
|
-
|
4288
4036
|
[[package]]
|
4289
4037
|
name = "windows-targets"
|
4290
4038
|
version = "0.52.6"
|
@@ -4319,10 +4067,13 @@ dependencies = [
|
|
4319
4067
|
]
|
4320
4068
|
|
4321
4069
|
[[package]]
|
4322
|
-
name = "
|
4323
|
-
version = "0.
|
4070
|
+
name = "windows-threading"
|
4071
|
+
version = "0.1.0"
|
4324
4072
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4325
|
-
checksum = "
|
4073
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
4074
|
+
dependencies = [
|
4075
|
+
"windows-link",
|
4076
|
+
]
|
4326
4077
|
|
4327
4078
|
[[package]]
|
4328
4079
|
name = "windows_aarch64_gnullvm"
|
@@ -4336,12 +4087,6 @@ version = "0.53.0"
|
|
4336
4087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4337
4088
|
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
4338
4089
|
|
4339
|
-
[[package]]
|
4340
|
-
name = "windows_aarch64_msvc"
|
4341
|
-
version = "0.48.5"
|
4342
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4343
|
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
4344
|
-
|
4345
4090
|
[[package]]
|
4346
4091
|
name = "windows_aarch64_msvc"
|
4347
4092
|
version = "0.52.6"
|
@@ -4354,12 +4099,6 @@ version = "0.53.0"
|
|
4354
4099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4355
4100
|
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
4356
4101
|
|
4357
|
-
[[package]]
|
4358
|
-
name = "windows_i686_gnu"
|
4359
|
-
version = "0.48.5"
|
4360
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4361
|
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
4362
|
-
|
4363
4102
|
[[package]]
|
4364
4103
|
name = "windows_i686_gnu"
|
4365
4104
|
version = "0.52.6"
|
@@ -4384,12 +4123,6 @@ version = "0.53.0"
|
|
4384
4123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4385
4124
|
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
4386
4125
|
|
4387
|
-
[[package]]
|
4388
|
-
name = "windows_i686_msvc"
|
4389
|
-
version = "0.48.5"
|
4390
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4391
|
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
4392
|
-
|
4393
4126
|
[[package]]
|
4394
4127
|
name = "windows_i686_msvc"
|
4395
4128
|
version = "0.52.6"
|
@@ -4402,12 +4135,6 @@ version = "0.53.0"
|
|
4402
4135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4403
4136
|
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
4404
4137
|
|
4405
|
-
[[package]]
|
4406
|
-
name = "windows_x86_64_gnu"
|
4407
|
-
version = "0.48.5"
|
4408
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4409
|
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
4410
|
-
|
4411
4138
|
[[package]]
|
4412
4139
|
name = "windows_x86_64_gnu"
|
4413
4140
|
version = "0.52.6"
|
@@ -4420,12 +4147,6 @@ version = "0.53.0"
|
|
4420
4147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4421
4148
|
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
4422
4149
|
|
4423
|
-
[[package]]
|
4424
|
-
name = "windows_x86_64_gnullvm"
|
4425
|
-
version = "0.48.5"
|
4426
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4427
|
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
4428
|
-
|
4429
4150
|
[[package]]
|
4430
4151
|
name = "windows_x86_64_gnullvm"
|
4431
4152
|
version = "0.52.6"
|
@@ -4438,12 +4159,6 @@ version = "0.53.0"
|
|
4438
4159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4439
4160
|
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
4440
4161
|
|
4441
|
-
[[package]]
|
4442
|
-
name = "windows_x86_64_msvc"
|
4443
|
-
version = "0.48.5"
|
4444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4445
|
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
4446
|
-
|
4447
4162
|
[[package]]
|
4448
4163
|
name = "windows_x86_64_msvc"
|
4449
4164
|
version = "0.52.6"
|
@@ -4490,15 +4205,6 @@ dependencies = [
|
|
4490
4205
|
"rustix",
|
4491
4206
|
]
|
4492
4207
|
|
4493
|
-
[[package]]
|
4494
|
-
name = "xz2"
|
4495
|
-
version = "0.1.7"
|
4496
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4497
|
-
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
|
4498
|
-
dependencies = [
|
4499
|
-
"lzma-sys",
|
4500
|
-
]
|
4501
|
-
|
4502
4208
|
[[package]]
|
4503
4209
|
name = "yoke"
|
4504
4210
|
version = "0.8.0"
|
@@ -4569,20 +4275,6 @@ name = "zeroize"
|
|
4569
4275
|
version = "1.8.1"
|
4570
4276
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4571
4277
|
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
4572
|
-
dependencies = [
|
4573
|
-
"zeroize_derive",
|
4574
|
-
]
|
4575
|
-
|
4576
|
-
[[package]]
|
4577
|
-
name = "zeroize_derive"
|
4578
|
-
version = "1.4.2"
|
4579
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4580
|
-
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
4581
|
-
dependencies = [
|
4582
|
-
"proc-macro2",
|
4583
|
-
"quote",
|
4584
|
-
"syn",
|
4585
|
-
]
|
4586
4278
|
|
4587
4279
|
[[package]]
|
4588
4280
|
name = "zerotrie"
|
@@ -4619,34 +4311,26 @@ dependencies = [
|
|
4619
4311
|
|
4620
4312
|
[[package]]
|
4621
4313
|
name = "zip"
|
4622
|
-
version = "
|
4314
|
+
version = "4.6.1"
|
4623
4315
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4624
|
-
checksum = "
|
4316
|
+
checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1"
|
4625
4317
|
dependencies = [
|
4626
|
-
"aes",
|
4627
4318
|
"arbitrary",
|
4628
4319
|
"bzip2",
|
4629
|
-
"constant_time_eq",
|
4630
4320
|
"crc32fast",
|
4631
|
-
"crossbeam-utils",
|
4632
|
-
"deflate64",
|
4633
|
-
"displaydoc",
|
4634
4321
|
"flate2",
|
4635
|
-
"getrandom 0.3.3",
|
4636
|
-
"hmac",
|
4637
4322
|
"indexmap 2.10.0",
|
4638
|
-
"lzma-rs",
|
4639
4323
|
"memchr",
|
4640
|
-
"pbkdf2",
|
4641
|
-
"sha1",
|
4642
|
-
"thiserror 2.0.16",
|
4643
|
-
"time",
|
4644
|
-
"xz2",
|
4645
|
-
"zeroize",
|
4646
4324
|
"zopfli",
|
4647
4325
|
"zstd",
|
4648
4326
|
]
|
4649
4327
|
|
4328
|
+
[[package]]
|
4329
|
+
name = "zlib-rs"
|
4330
|
+
version = "0.5.2"
|
4331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
4332
|
+
checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
|
4333
|
+
|
4650
4334
|
[[package]]
|
4651
4335
|
name = "zopfli"
|
4652
4336
|
version = "0.8.2"
|