rev. 05bb688fced53156d14a86b12259a8bc7949d70c (ignoring whitespace)
@@ -50,50 +135,286 @@
50 50 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
51 51 | checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
52 52 | dependencies = [
|
53 53 | "num-traits",
|
54 54 | ]
|
55 55 |
|
56 56 | [[package]]
|
57 57 | name = "arbitrary"
|
58 58 | version = "1.4.1"
|
59 59 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
60 60 | checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
61 61 |
|
62 62 | [[package]]
|
63 63 | name = "assert-json-diff"
|
64 64 | version = "1.1.0"
|
65 65 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
66 66 | checksum = "4259cbe96513d2f1073027a259fc2ca917feb3026a5a8d984e3628e490255cc0"
|
67 67 | dependencies = [
|
68 68 | "extend",
|
69 69 | "serde",
|
70 70 | "serde_json",
|
71 71 | ]
|
72 72 |
|
73 73 | [[package]]
|
74 74 | name = "async-channel"
|
75 75 | version = "1.9.0"
|
76 76 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
77 77 | checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
78 78 | dependencies = [
|
79 79 | "concurrent-queue",
|
80 - | "event-listener",
|
80 + | "event-listener 2.5.3",
|
81 81 | "futures-core",
|
82 82 | ]
|
83 83 |
|
84 + | [[package]]
|
85 + | name = "async-channel"
|
86 + | version = "2.3.1"
|
87 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
88 + | checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
89 + | dependencies = [
|
90 + | "concurrent-queue",
|
91 + | "event-listener-strategy",
|
92 + | "futures-core",
|
93 + | "pin-project-lite",
|
94 + | ]
|
95 + |
|
96 + | [[package]]
|
97 + | name = "async-executor"
|
98 + | version = "1.13.1"
|
99 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
100 + | checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
|
101 + | dependencies = [
|
102 + | "async-task",
|
103 + | "concurrent-queue",
|
104 + | "fastrand",
|
105 + | "futures-lite",
|
106 + | "slab",
|
107 + | ]
|
108 + |
|
109 + | [[package]]
|
110 + | name = "async-global-executor"
|
111 + | version = "2.4.1"
|
112 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
113 + | checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
114 + | dependencies = [
|
115 + | "async-channel 2.3.1",
|
116 + | "async-executor",
|
117 + | "async-io",
|
118 + | "async-lock",
|
119 + | "blocking",
|
120 + | "futures-lite",
|
121 + | "once_cell",
|
122 + | ]
|
123 + |
|
124 + | [[package]]
|
125 + | name = "async-io"
|
126 + | version = "2.3.4"
|
127 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
128 + | checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8"
|
129 + | dependencies = [
|
130 + | "async-lock",
|
131 + | "cfg-if",
|
132 + | "concurrent-queue",
|
133 + | "futures-io",
|
134 + | "futures-lite",
|
135 + | "parking",
|
136 + | "polling",
|
137 + | "rustix",
|
138 + | "slab",
|
139 + | "tracing",
|
140 + | "windows-sys 0.59.0",
|
141 + | ]
|
142 + |
|
143 + | [[package]]
|
144 + | name = "async-lock"
|
145 + | version = "3.4.0"
|
146 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
147 + | checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
|
148 + | dependencies = [
|
149 + | "event-listener 5.3.1",
|
150 + | "event-listener-strategy",
|
151 + | "pin-project-lite",
|
152 + | ]
|
153 + |
|
154 + | [[package]]
|
155 + | name = "async-process"
|
156 + | version = "2.3.0"
|
157 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
158 + | checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
|
159 + | dependencies = [
|
160 + | "async-channel 2.3.1",
|
161 + | "async-io",
|
162 + | "async-lock",
|
163 + | "async-signal",
|
164 + | "async-task",
|
165 + | "blocking",
|
166 + | "cfg-if",
|
167 + | "event-listener 5.3.1",
|
168 + | "futures-lite",
|
169 + | "rustix",
|
170 + | "tracing",
|
171 + | ]
|
172 + |
|
173 + | [[package]]
|
174 + | name = "async-signal"
|
175 + | version = "0.2.10"
|
176 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
177 + | checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
|
178 + | dependencies = [
|
179 + | "async-io",
|
180 + | "async-lock",
|
181 + | "atomic-waker",
|
182 + | "cfg-if",
|
183 + | "futures-core",
|
184 + | "futures-io",
|
185 + | "rustix",
|
186 + | "signal-hook-registry",
|
187 + | "slab",
|
188 + | "windows-sys 0.59.0",
|
189 + | ]
|
190 + |
|
191 + | [[package]]
|
192 + | name = "async-std"
|
193 + | version = "1.13.0"
|
194 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
195 + | checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615"
|
196 + | dependencies = [
|
197 + | "async-channel 1.9.0",
|
198 + | "async-global-executor",
|
199 + | "async-io",
|
200 + | "async-lock",
|
201 + | "async-process",
|
202 + | "crossbeam-utils",
|
203 + | "futures-channel",
|
204 + | "futures-core",
|
205 + | "futures-io",
|
206 + | "futures-lite",
|
207 + | "gloo-timers",
|
208 + | "kv-log-macro",
|
209 + | "log",
|
210 + | "memchr",
|
211 + | "once_cell",
|
212 + | "pin-project-lite",
|
213 + | "pin-utils",
|
214 + | "slab",
|
215 + | "wasm-bindgen-futures",
|
216 + | ]
|
217 + |
|
84 218 | [[package]]
|
85 219 | name = "async-stream"
|
86 220 | version = "0.3.6"
|
87 221 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
88 222 | checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
89 223 | dependencies = [
|
90 224 | "async-stream-impl",
|
91 225 | "futures-core",
|
92 226 | "pin-project-lite",
|
93 227 | ]
|
94 228 |
|
95 229 | [[package]]
|
96 230 | name = "async-stream-impl"
|
97 231 | version = "0.3.6"
|
98 232 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
99 233 | checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
100 234 | dependencies = [
|
101 235 | "proc-macro2",
|
102 236 | "quote",
|
103 237 | "syn 2.0.87",
|
104 238 | ]
|
105 239 |
|
240 + | [[package]]
|
241 + | name = "async-task"
|
242 + | version = "4.7.1"
|
243 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
244 + | checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
245 + |
|
246 + | [[package]]
|
247 + | name = "async-trait"
|
248 + | version = "0.1.83"
|
249 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
250 + | checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
251 + | dependencies = [
|
252 + | "proc-macro2",
|
253 + | "quote",
|
254 + | "syn 2.0.87",
|
255 + | ]
|
256 + |
|
106 257 | [[package]]
|
107 258 | name = "atomic-waker"
|
108 259 | version = "1.1.2"
|
109 260 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
110 261 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
111 262 |
|
112 263 | [[package]]
|
113 264 | name = "atty"
|
114 265 | version = "0.2.14"
|
115 266 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
116 267 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
117 268 | dependencies = [
|
118 269 | "hermit-abi 0.1.19",
|
119 270 | "libc",
|
120 271 | "winapi",
|
121 272 | ]
|
122 273 |
|
123 274 | [[package]]
|
124 275 | name = "autocfg"
|
125 276 | version = "1.4.0"
|
126 277 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
127 278 | checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
128 279 |
|
129 280 | [[package]]
|
130 281 | name = "aws-credential-types"
|
131 282 | version = "1.2.1"
|
132 283 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
133 284 | checksum = "60e8f6b615cb5fc60a98132268508ad104310f0cfb25a1c22eee76efdf9154da"
|
134 285 | dependencies = [
|
135 286 | "aws-smithy-async 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
@@ -538,689 +597,767 @@
538 689 | version = "0.60.3"
|
539 690 |
|
540 691 | [[package]]
|
541 692 | name = "aws-smithy-json"
|
542 693 | version = "0.60.7"
|
543 694 | dependencies = [
|
544 695 | "aws-smithy-types 1.2.9",
|
545 696 | "proptest",
|
546 697 | "serde_json",
|
547 698 | ]
|
548 699 |
|
549 700 | [[package]]
|
550 701 | name = "aws-smithy-json"
|
551 702 | version = "0.60.7"
|
552 703 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
553 704 | checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6"
|
554 705 | dependencies = [
|
555 706 | "aws-smithy-types 1.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
556 707 | ]
|
557 708 |
|
558 709 | [[package]]
|
559 710 | name = "aws-smithy-mocks-experimental"
|
560 711 | version = "0.2.1"
|
561 712 | dependencies = [
|
562 713 | "aws-sdk-s3",
|
563 714 | "aws-smithy-runtime-api 1.7.3",
|
564 715 | "aws-smithy-types 1.2.9",
|
565 716 | "tokio",
|
566 717 | ]
|
567 718 |
|
719 + | [[package]]
|
720 + | name = "aws-smithy-observability"
|
721 + | version = "0.1.0"
|
722 + | dependencies = [
|
723 + | "aws-smithy-runtime-api 1.7.3",
|
724 + | "once_cell",
|
725 + | "serial_test",
|
726 + | ]
|
727 + |
|
728 + | [[package]]
|
729 + | name = "aws-smithy-observability-otel"
|
730 + | version = "0.1.0"
|
731 + | dependencies = [
|
732 + | "aws-smithy-observability",
|
733 + | "opentelemetry",
|
734 + | "opentelemetry_sdk",
|
735 + | "tokio",
|
736 + | ]
|
737 + |
|
568 738 | [[package]]
|
569 739 | name = "aws-smithy-protocol-test"
|
570 740 | version = "0.63.0"
|
571 741 | dependencies = [
|
572 742 | "assert-json-diff",
|
573 743 | "aws-smithy-runtime-api 1.7.3",
|
574 744 | "base64-simd",
|
575 745 | "cbor-diag",
|
576 746 | "ciborium",
|
577 747 | "http 0.2.12",
|
578 748 | "pretty_assertions",
|
579 749 | "regex-lite",
|
580 750 | "roxmltree",
|
581 751 | "serde_json",
|
582 752 | "thiserror",
|
583 753 | ]
|
584 754 |
|
585 755 | [[package]]
|
586 756 | name = "aws-smithy-protocol-test"
|
587 757 | version = "0.63.0"
|
588 758 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
589 759 | checksum = "3b92b62199921f10685c6b588fdbeb81168ae4e7950ae3e5f50145a01bb5f1ad"
|
590 760 | dependencies = [
|
591 761 | "assert-json-diff",
|
592 762 | "aws-smithy-runtime-api 1.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
593 763 | "base64-simd",
|
594 764 | "cbor-diag",
|
595 765 | "ciborium",
|
596 766 | "http 0.2.12",
|
597 767 | "pretty_assertions",
|
@@ -929,1099 +988,1171 @@
929 1099 | "bit-vec",
|
930 1100 | ]
|
931 1101 |
|
932 1102 | [[package]]
|
933 1103 | name = "bit-vec"
|
934 1104 | version = "0.6.3"
|
935 1105 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
936 1106 | checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
937 1107 |
|
938 1108 | [[package]]
|
939 1109 | name = "bitflags"
|
940 1110 | version = "1.3.2"
|
941 1111 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
942 1112 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
943 1113 |
|
944 1114 | [[package]]
|
945 1115 | name = "bitflags"
|
946 1116 | version = "2.6.0"
|
947 1117 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
948 1118 | checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
949 1119 |
|
950 1120 | [[package]]
|
951 1121 | name = "block-buffer"
|
952 1122 | version = "0.10.4"
|
953 1123 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
954 1124 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
955 1125 | dependencies = [
|
956 1126 | "generic-array",
|
957 1127 | ]
|
958 1128 |
|
1129 + | [[package]]
|
1130 + | name = "blocking"
|
1131 + | version = "1.6.1"
|
1132 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1133 + | checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
|
1134 + | dependencies = [
|
1135 + | "async-channel 2.3.1",
|
1136 + | "async-task",
|
1137 + | "futures-io",
|
1138 + | "futures-lite",
|
1139 + | "piper",
|
1140 + | ]
|
1141 + |
|
959 1142 | [[package]]
|
960 1143 | name = "bs58"
|
961 1144 | version = "0.5.1"
|
962 1145 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
963 1146 | checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
964 1147 | dependencies = [
|
965 1148 | "tinyvec",
|
966 1149 | ]
|
967 1150 |
|
968 1151 | [[package]]
|
969 1152 | name = "bumpalo"
|
970 1153 | version = "3.16.0"
|
971 1154 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
972 1155 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
973 1156 |
|
974 1157 | [[package]]
|
975 1158 | name = "byteorder"
|
976 1159 | version = "1.5.0"
|
977 1160 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
978 1161 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
979 1162 |
|
980 1163 | [[package]]
|
981 1164 | name = "bytes"
|
982 1165 | version = "1.8.0"
|
983 1166 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
984 1167 | checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
|
985 1168 | dependencies = [
|
986 1169 | "serde",
|
987 1170 | ]
|
988 1171 |
|
@@ -1419,1602 +1478,1682 @@
1419 1602 | name = "encoding_rs"
|
1420 1603 | version = "0.8.35"
|
1421 1604 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1422 1605 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
1423 1606 | dependencies = [
|
1424 1607 | "cfg-if",
|
1425 1608 | ]
|
1426 1609 |
|
1427 1610 | [[package]]
|
1428 1611 | name = "equivalent"
|
1429 1612 | version = "1.0.1"
|
1430 1613 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1431 1614 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
1432 1615 |
|
1433 1616 | [[package]]
|
1434 1617 | name = "errno"
|
1435 1618 | version = "0.3.9"
|
1436 1619 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1437 1620 | checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
1438 1621 | dependencies = [
|
1439 1622 | "libc",
|
1440 1623 | "windows-sys 0.52.0",
|
1441 1624 | ]
|
1442 1625 |
|
1443 1626 | [[package]]
|
1444 1627 | name = "event-listener"
|
1445 1628 | version = "2.5.3"
|
1446 1629 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1447 1630 | checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
1448 1631 |
|
1632 + | [[package]]
|
1633 + | name = "event-listener"
|
1634 + | version = "5.3.1"
|
1635 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1636 + | checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
|
1637 + | dependencies = [
|
1638 + | "concurrent-queue",
|
1639 + | "parking",
|
1640 + | "pin-project-lite",
|
1641 + | ]
|
1642 + |
|
1643 + | [[package]]
|
1644 + | name = "event-listener-strategy"
|
1645 + | version = "0.5.2"
|
1646 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1647 + | checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
|
1648 + | dependencies = [
|
1649 + | "event-listener 5.3.1",
|
1650 + | "pin-project-lite",
|
1651 + | ]
|
1652 + |
|
1449 1653 | [[package]]
|
1450 1654 | name = "extend"
|
1451 1655 | version = "0.1.2"
|
1452 1656 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1453 1657 | checksum = "f47da3a72ec598d9c8937a7ebca8962a5c7a1f28444e38c2b33c771ba3f55f05"
|
1454 1658 | dependencies = [
|
1455 1659 | "proc-macro-error",
|
1456 1660 | "proc-macro2",
|
1457 1661 | "quote",
|
1458 1662 | "syn 1.0.109",
|
1459 1663 | ]
|
1460 1664 |
|
1461 1665 | [[package]]
|
1462 1666 | name = "fastrand"
|
1463 1667 | version = "2.0.2"
|
1464 1668 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1465 1669 | checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
|
1466 1670 |
|
1467 1671 | [[package]]
|
1468 1672 | name = "ff"
|
1469 1673 | version = "0.12.1"
|
1470 1674 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1471 1675 | checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
|
1472 1676 | dependencies = [
|
1473 1677 | "rand_core",
|
1474 1678 | "subtle",
|
1475 1679 | ]
|
1476 1680 |
|
1477 1681 | [[package]]
|
1478 1682 | name = "flate2"
|
@@ -1532,1736 +1591,1808 @@
1532 1736 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1533 1737 | checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
1534 1738 | dependencies = [
|
1535 1739 | "futures-core",
|
1536 1740 | "futures-sink",
|
1537 1741 | ]
|
1538 1742 |
|
1539 1743 | [[package]]
|
1540 1744 | name = "futures-core"
|
1541 1745 | version = "0.3.31"
|
1542 1746 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1543 1747 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
1544 1748 |
|
1545 1749 | [[package]]
|
1546 1750 | name = "futures-executor"
|
1547 1751 | version = "0.3.31"
|
1548 1752 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1549 1753 | checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
1550 1754 | dependencies = [
|
1551 1755 | "futures-core",
|
1552 1756 | "futures-task",
|
1553 1757 | "futures-util",
|
1554 1758 | ]
|
1555 1759 |
|
1556 1760 | [[package]]
|
1557 1761 | name = "futures-io"
|
1558 1762 | version = "0.3.31"
|
1559 1763 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1560 1764 | checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
1561 1765 |
|
1766 + | [[package]]
|
1767 + | name = "futures-lite"
|
1768 + | version = "2.4.0"
|
1769 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1770 + | checksum = "3f1fa2f9765705486b33fd2acf1577f8ec449c2ba1f318ae5447697b7c08d210"
|
1771 + | dependencies = [
|
1772 + | "fastrand",
|
1773 + | "futures-core",
|
1774 + | "futures-io",
|
1775 + | "parking",
|
1776 + | "pin-project-lite",
|
1777 + | ]
|
1778 + |
|
1562 1779 | [[package]]
|
1563 1780 | name = "futures-macro"
|
1564 1781 | version = "0.3.31"
|
1565 1782 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1566 1783 | checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
1567 1784 | dependencies = [
|
1568 1785 | "proc-macro2",
|
1569 1786 | "quote",
|
1570 1787 | "syn 2.0.87",
|
1571 1788 | ]
|
1572 1789 |
|
1573 1790 | [[package]]
|
1574 1791 | name = "futures-sink"
|
1575 1792 | version = "0.3.31"
|
1576 1793 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1577 1794 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
1578 1795 |
|
1579 1796 | [[package]]
|
1580 1797 | name = "futures-task"
|
1581 1798 | version = "0.3.31"
|
1582 1799 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1583 1800 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
1584 1801 |
|
1585 1802 | [[package]]
|
1586 1803 | name = "futures-util"
|
1587 1804 | version = "0.3.31"
|
1588 1805 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1589 1806 | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
1590 1807 | dependencies = [
|
1591 1808 | "futures-channel",
|
@@ -1606,1823 +1665,1894 @@
1606 1823 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1607 1824 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1608 1825 | dependencies = [
|
1609 1826 | "typenum",
|
1610 1827 | "version_check",
|
1611 1828 | ]
|
1612 1829 |
|
1613 1830 | [[package]]
|
1614 1831 | name = "getrandom"
|
1615 1832 | version = "0.2.15"
|
1616 1833 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1617 1834 | checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
1618 1835 | dependencies = [
|
1619 1836 | "cfg-if",
|
1620 1837 | "libc",
|
1621 1838 | "wasi 0.11.0+wasi-snapshot-preview1",
|
1622 1839 | ]
|
1623 1840 |
|
1624 1841 | [[package]]
|
1625 1842 | name = "gimli"
|
1626 1843 | version = "0.31.1"
|
1627 1844 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1628 1845 | checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
1629 1846 |
|
1630 1847 | [[package]]
|
1631 1848 | name = "glob"
|
1632 1849 | version = "0.3.1"
|
1633 1850 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1634 1851 | checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
1635 1852 |
|
1853 + | [[package]]
|
1854 + | name = "gloo-timers"
|
1855 + | version = "0.3.0"
|
1856 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1857 + | checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
1858 + | dependencies = [
|
1859 + | "futures-channel",
|
1860 + | "futures-core",
|
1861 + | "js-sys",
|
1862 + | "wasm-bindgen",
|
1863 + | ]
|
1864 + |
|
1636 1865 | [[package]]
|
1637 1866 | name = "group"
|
1638 1867 | version = "0.12.1"
|
1639 1868 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1640 1869 | checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
|
1641 1870 | dependencies = [
|
1642 1871 | "ff",
|
1643 1872 | "rand_core",
|
1644 1873 | "subtle",
|
1645 1874 | ]
|
1646 1875 |
|
1647 1876 | [[package]]
|
1648 1877 | name = "h2"
|
1649 1878 | version = "0.3.26"
|
1650 1879 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1651 1880 | checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
1652 1881 | dependencies = [
|
1653 1882 | "bytes",
|
1654 1883 | "fnv",
|
1655 1884 | "futures-core",
|
1656 1885 | "futures-sink",
|
1657 1886 | "futures-util",
|
1658 1887 | "http 0.2.12",
|
1659 1888 | "indexmap 2.6.0",
|
1660 1889 | "slab",
|
1661 1890 | "tokio",
|
1662 1891 | "tokio-util",
|
1663 1892 | "tracing",
|
1664 1893 | ]
|
1665 1894 |
|
@@ -2032,2261 +2091,2329 @@
2032 2261 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2033 2262 | checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
2034 2263 | dependencies = [
|
2035 2264 | "either",
|
2036 2265 | ]
|
2037 2266 |
|
2038 2267 | [[package]]
|
2039 2268 | name = "itoa"
|
2040 2269 | version = "1.0.11"
|
2041 2270 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2042 2271 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
2043 2272 |
|
2044 2273 | [[package]]
|
2045 2274 | name = "jobserver"
|
2046 2275 | version = "0.1.32"
|
2047 2276 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2048 2277 | checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
2049 2278 | dependencies = [
|
2050 2279 | "libc",
|
2051 2280 | ]
|
2052 2281 |
|
2053 2282 | [[package]]
|
2054 2283 | name = "js-sys"
|
2055 2284 | version = "0.3.72"
|
2056 2285 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2057 2286 | checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
|
2058 2287 | dependencies = [
|
2059 2288 | "wasm-bindgen",
|
2060 2289 | ]
|
2061 2290 |
|
2291 + | [[package]]
|
2292 + | name = "kv-log-macro"
|
2293 + | version = "1.0.7"
|
2294 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2295 + | checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
2296 + | dependencies = [
|
2297 + | "log",
|
2298 + | ]
|
2299 + |
|
2062 2300 | [[package]]
|
2063 2301 | name = "lambda_http"
|
2064 2302 | version = "0.8.3"
|
2065 2303 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2066 2304 | checksum = "2505c4a24f5a8d8ac66a87691215ec1f79736c5bc6e62bb921788dca9753f650"
|
2067 2305 | dependencies = [
|
2068 2306 | "aws_lambda_events",
|
2069 2307 | "base64 0.21.7",
|
2070 2308 | "bytes",
|
2071 2309 | "encoding_rs",
|
2072 2310 | "futures",
|
2073 2311 | "http 0.2.12",
|
2074 2312 | "http-body 0.4.6",
|
2075 2313 | "hyper 0.14.31",
|
2076 2314 | "lambda_runtime",
|
2077 2315 | "mime",
|
2078 2316 | "percent-encoding",
|
2079 2317 | "serde",
|
2080 2318 | "serde_json",
|
2081 2319 | "serde_urlencoded",
|
2082 2320 | "tokio-stream",
|
2083 2321 | "url",
|
2084 2322 | ]
|
2085 2323 |
|
2086 2324 | [[package]]
|
2087 2325 | name = "lambda_runtime"
|
2088 2326 | version = "0.8.3"
|
2089 2327 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2090 2328 | checksum = "deca8f65d7ce9a8bfddebb49d7d91b22e788a59ca0c5190f26794ab80ed7a702"
|
2091 2329 | dependencies = [
|
@@ -2147,2385 +2206,2447 @@
2147 2385 | "windows-targets",
|
2148 2386 | ]
|
2149 2387 |
|
2150 2388 | [[package]]
|
2151 2389 | name = "libm"
|
2152 2390 | version = "0.2.11"
|
2153 2391 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2154 2392 | checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
|
2155 2393 |
|
2156 2394 | [[package]]
|
2157 2395 | name = "linux-raw-sys"
|
2158 2396 | version = "0.4.14"
|
2159 2397 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2160 2398 | checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
2161 2399 |
|
2162 2400 | [[package]]
|
2163 2401 | name = "lock_api"
|
2164 2402 | version = "0.4.12"
|
2165 2403 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2166 2404 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
2167 2405 | dependencies = [
|
2168 2406 | "autocfg",
|
2169 2407 | "scopeguard",
|
2170 2408 | ]
|
2171 2409 |
|
2172 2410 | [[package]]
|
2173 2411 | name = "log"
|
2174 2412 | version = "0.4.22"
|
2175 2413 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2176 2414 | checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
2415 + | dependencies = [
|
2416 + | "value-bag",
|
2417 + | ]
|
2177 2418 |
|
2178 2419 | [[package]]
|
2179 2420 | name = "lru"
|
2180 2421 | version = "0.12.5"
|
2181 2422 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2182 2423 | checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
2183 2424 | dependencies = [
|
2184 2425 | "hashbrown 0.15.1",
|
2185 2426 | ]
|
2186 2427 |
|
2187 2428 | [[package]]
|
2188 2429 | name = "matchers"
|
2189 2430 | version = "0.1.0"
|
2190 2431 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2191 2432 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
2192 2433 | dependencies = [
|
2193 2434 | "regex-automata 0.1.10",
|
2194 2435 | ]
|
2195 2436 |
|
2196 2437 | [[package]]
|
2197 2438 | name = "md-5"
|
2198 2439 | version = "0.10.6"
|
2199 2440 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2200 2441 | checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
2201 2442 | dependencies = [
|
2202 2443 | "cfg-if",
|
2203 2444 | "digest",
|
2204 2445 | ]
|
2205 2446 |
|
2206 2447 | [[package]]
|
@@ -2354,2595 +2442,2725 @@
2354 2595 | "libc",
|
2355 2596 | ]
|
2356 2597 |
|
2357 2598 | [[package]]
|
2358 2599 | name = "object"
|
2359 2600 | version = "0.36.5"
|
2360 2601 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2361 2602 | checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
|
2362 2603 | dependencies = [
|
2363 2604 | "memchr",
|
2364 2605 | ]
|
2365 2606 |
|
2366 2607 | [[package]]
|
2367 2608 | name = "once_cell"
|
2368 2609 | version = "1.20.2"
|
2369 2610 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2370 2611 | checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
2371 2612 |
|
2372 2613 | [[package]]
|
2373 2614 | name = "oorandom"
|
2374 2615 | version = "11.1.4"
|
2375 2616 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2376 2617 | checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
|
2377 2618 |
|
2378 2619 | [[package]]
|
2379 2620 | name = "openssl-probe"
|
2380 2621 | version = "0.1.5"
|
2381 2622 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2382 2623 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2383 2624 |
|
2625 + | [[package]]
|
2626 + | name = "opentelemetry"
|
2627 + | version = "0.26.0"
|
2628 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2629 + | checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
|
2630 + | dependencies = [
|
2631 + | "futures-core",
|
2632 + | "futures-sink",
|
2633 + | "js-sys",
|
2634 + | "once_cell",
|
2635 + | "pin-project-lite",
|
2636 + | "thiserror",
|
2637 + | ]
|
2638 + |
|
2639 + | [[package]]
|
2640 + | name = "opentelemetry_sdk"
|
2641 + | version = "0.26.0"
|
2642 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2643 + | checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
|
2644 + | dependencies = [
|
2645 + | "async-std",
|
2646 + | "async-trait",
|
2647 + | "futures-channel",
|
2648 + | "futures-executor",
|
2649 + | "futures-util",
|
2650 + | "glob",
|
2651 + | "once_cell",
|
2652 + | "opentelemetry",
|
2653 + | "percent-encoding",
|
2654 + | "rand",
|
2655 + | "serde_json",
|
2656 + | "thiserror",
|
2657 + | "tokio",
|
2658 + | "tokio-stream",
|
2659 + | ]
|
2660 + |
|
2384 2661 | [[package]]
|
2385 2662 | name = "os_str_bytes"
|
2386 2663 | version = "6.6.1"
|
2387 2664 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2388 2665 | checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
|
2389 2666 |
|
2390 2667 | [[package]]
|
2391 2668 | name = "outref"
|
2392 2669 | version = "0.5.1"
|
2393 2670 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2394 2671 | checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
|
2395 2672 |
|
2396 2673 | [[package]]
|
2397 2674 | name = "overload"
|
2398 2675 | version = "0.1.1"
|
2399 2676 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2400 2677 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
2401 2678 |
|
2402 2679 | [[package]]
|
2403 2680 | name = "p256"
|
2404 2681 | version = "0.11.1"
|
2405 2682 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2406 2683 | checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
|
2407 2684 | dependencies = [
|
2408 2685 | "ecdsa",
|
2409 2686 | "elliptic-curve",
|
2410 2687 | "sha2",
|
2411 2688 | ]
|
2412 2689 |
|
2690 + | [[package]]
|
2691 + | name = "parking"
|
2692 + | version = "2.2.1"
|
2693 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2694 + | checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
2695 + |
|
2413 2696 | [[package]]
|
2414 2697 | name = "parking_lot"
|
2415 2698 | version = "0.12.3"
|
2416 2699 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2417 2700 | checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
2418 2701 | dependencies = [
|
2419 2702 | "lock_api",
|
2420 2703 | "parking_lot_core",
|
2421 2704 | ]
|
2422 2705 |
|
2423 2706 | [[package]]
|
2424 2707 | name = "parking_lot_core"
|
2425 2708 | version = "0.9.10"
|
2426 2709 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2427 2710 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
2428 2711 | dependencies = [
|
2429 2712 | "cfg-if",
|
2430 2713 | "libc",
|
2431 2714 | "redox_syscall",
|
2432 2715 | "smallvec",
|
2433 2716 | "windows-targets",
|
2434 2717 | ]
|
2435 2718 |
|
2436 2719 | [[package]]
|
2437 2720 | name = "paste"
|
2438 2721 | version = "1.0.15"
|
2439 2722 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2440 2723 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
2441 2724 |
|
2442 2725 | [[package]]
|
@@ -2459,2742 +2556,2865 @@
2459 2742 | version = "1.1.7"
|
2460 2743 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2461 2744 | checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
|
2462 2745 | dependencies = [
|
2463 2746 | "pin-project-internal",
|
2464 2747 | ]
|
2465 2748 |
|
2466 2749 | [[package]]
|
2467 2750 | name = "pin-project-internal"
|
2468 2751 | version = "1.1.7"
|
2469 2752 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2470 2753 | checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
|
2471 2754 | dependencies = [
|
2472 2755 | "proc-macro2",
|
2473 2756 | "quote",
|
2474 2757 | "syn 2.0.87",
|
2475 2758 | ]
|
2476 2759 |
|
2477 2760 | [[package]]
|
2478 2761 | name = "pin-project-lite"
|
2479 2762 | version = "0.2.15"
|
2480 2763 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2481 2764 | checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
|
2482 2765 |
|
2483 2766 | [[package]]
|
2484 2767 | name = "pin-utils"
|
2485 2768 | version = "0.1.0"
|
2486 2769 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2487 2770 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
2488 2771 |
|
2772 + | [[package]]
|
2773 + | name = "piper"
|
2774 + | version = "0.2.4"
|
2775 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2776 + | checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
2777 + | dependencies = [
|
2778 + | "atomic-waker",
|
2779 + | "fastrand",
|
2780 + | "futures-io",
|
2781 + | ]
|
2782 + |
|
2489 2783 | [[package]]
|
2490 2784 | name = "pkcs8"
|
2491 2785 | version = "0.9.0"
|
2492 2786 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2493 2787 | checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
|
2494 2788 | dependencies = [
|
2495 2789 | "der",
|
2496 2790 | "spki",
|
2497 2791 | ]
|
2498 2792 |
|
2499 2793 | [[package]]
|
2500 2794 | name = "plotters"
|
2501 2795 | version = "0.3.7"
|
2502 2796 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2503 2797 | checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
2504 2798 | dependencies = [
|
2505 2799 | "num-traits",
|
2506 2800 | "plotters-backend",
|
2507 2801 | "plotters-svg",
|
2508 2802 | "wasm-bindgen",
|
2509 2803 | "web-sys",
|
2510 2804 | ]
|
2511 2805 |
|
2512 2806 | [[package]]
|
2513 2807 | name = "plotters-backend"
|
2514 2808 | version = "0.3.7"
|
2515 2809 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2516 2810 | checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
2517 2811 |
|
2518 2812 | [[package]]
|
2519 2813 | name = "plotters-svg"
|
2520 2814 | version = "0.3.7"
|
2521 2815 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2522 2816 | checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
2523 2817 | dependencies = [
|
2524 2818 | "plotters-backend",
|
2525 2819 | ]
|
2526 2820 |
|
2821 + | [[package]]
|
2822 + | name = "polling"
|
2823 + | version = "3.7.4"
|
2824 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2825 + | checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
|
2826 + | dependencies = [
|
2827 + | "cfg-if",
|
2828 + | "concurrent-queue",
|
2829 + | "hermit-abi 0.4.0",
|
2830 + | "pin-project-lite",
|
2831 + | "rustix",
|
2832 + | "tracing",
|
2833 + | "windows-sys 0.59.0",
|
2834 + | ]
|
2835 + |
|
2527 2836 | [[package]]
|
2528 2837 | name = "powerfmt"
|
2529 2838 | version = "0.2.0"
|
2530 2839 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2531 2840 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
2532 2841 |
|
2533 2842 | [[package]]
|
2534 2843 | name = "ppv-lite86"
|
2535 2844 | version = "0.2.20"
|
2536 2845 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2537 2846 | checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
2538 2847 | dependencies = [
|
2539 2848 | "zerocopy",
|
2540 2849 | ]
|
2541 2850 |
|
2542 2851 | [[package]]
|
2543 2852 | name = "pretty_assertions"
|
2544 2853 | version = "1.4.1"
|
2545 2854 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2546 2855 | checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
2547 2856 | dependencies = [
|
2548 2857 | "diff",
|
2549 2858 | "yansi",
|
2550 2859 | ]
|
2551 2860 |
|
2552 2861 | [[package]]
|
2553 2862 | name = "prettyplease"
|
2554 2863 | version = "0.2.25"
|
2555 2864 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2556 2865 | checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
|
@@ -2608,2917 +2668,2977 @@
2608 2917 | "rand_xorshift",
|
2609 2918 | "regex-syntax 0.8.5",
|
2610 2919 | "rusty-fork",
|
2611 2920 | "tempfile",
|
2612 2921 | "unarray",
|
2613 2922 | ]
|
2614 2923 |
|
2615 2924 | [[package]]
|
2616 2925 | name = "pyo3"
|
2617 2926 | version = "0.18.3"
|
2618 2927 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2619 2928 | checksum = "e3b1ac5b3731ba34fdaa9785f8d74d17448cd18f30cf19e0c7e7b1fdb5272109"
|
2620 2929 | dependencies = [
|
2621 2930 | "cfg-if",
|
2622 2931 | "indoc",
|
2623 2932 | "libc",
|
2624 2933 | "memoffset",
|
2625 2934 | "parking_lot",
|
2626 2935 | "pyo3-build-config",
|
2627 2936 | "pyo3-ffi",
|
2628 2937 | "pyo3-macros",
|
2629 2938 | "unindent",
|
2630 2939 | ]
|
2631 2940 |
|
2632 2941 | [[package]]
|
2633 2942 | name = "pyo3-asyncio"
|
2634 2943 | version = "0.18.0"
|
2635 2944 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2636 2945 | checksum = "d3564762e37035cfc486228e10b0528460fa026d681b5763873c693aa0d5c260"
|
2637 2946 | dependencies = [
|
2638 - | "async-channel",
|
2947 + | "async-channel 1.9.0",
|
2639 2948 | "clap 3.2.25",
|
2640 2949 | "futures",
|
2641 2950 | "inventory",
|
2642 2951 | "once_cell",
|
2643 2952 | "pin-project-lite",
|
2644 2953 | "pyo3",
|
2645 2954 | "pyo3-asyncio-macros",
|
2646 2955 | "tokio",
|
2647 2956 | ]
|
2648 2957 |
|
2649 2958 | [[package]]
|
2650 2959 | name = "pyo3-asyncio-macros"
|
2651 2960 | version = "0.18.0"
|
2652 2961 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2653 2962 | checksum = "be72d4cd43a27530306bd0d20d3932182fbdd072c6b98d3638bc37efb9d559dd"
|
2654 2963 | dependencies = [
|
2655 2964 | "proc-macro2",
|
2656 2965 | "quote",
|
2657 2966 | "syn 1.0.109",
|
2658 2967 | ]
|
2659 2968 |
|
2660 2969 | [[package]]
|
2661 2970 | name = "pyo3-build-config"
|
2662 2971 | version = "0.18.3"
|
2663 2972 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2664 2973 | checksum = "9cb946f5ac61bb61a5014924910d936ebd2b23b705f7a4a3c40b05c720b079a3"
|
2665 2974 | dependencies = [
|
2666 2975 | "once_cell",
|
2667 2976 | "target-lexicon",
|
2668 2977 | ]
|
@@ -3038,3347 +3122,3446 @@
3038 3347 | "untrusted 0.9.0",
|
3039 3348 | ]
|
3040 3349 |
|
3041 3350 | [[package]]
|
3042 3351 | name = "rusty-fork"
|
3043 3352 | version = "0.3.0"
|
3044 3353 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3045 3354 | checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
|
3046 3355 | dependencies = [
|
3047 3356 | "fnv",
|
3048 3357 | "quick-error",
|
3049 3358 | "tempfile",
|
3050 3359 | "wait-timeout",
|
3051 3360 | ]
|
3052 3361 |
|
3053 3362 | [[package]]
|
3054 3363 | name = "ryu"
|
3055 3364 | version = "1.0.18"
|
3056 3365 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3057 3366 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
3058 3367 |
|
3059 3368 | [[package]]
|
3060 3369 | name = "same-file"
|
3061 3370 | version = "1.0.6"
|
3062 3371 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3063 3372 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
3064 3373 | dependencies = [
|
3065 3374 | "winapi-util",
|
3066 3375 | ]
|
3067 3376 |
|
3377 + | [[package]]
|
3378 + | name = "scc"
|
3379 + | version = "2.2.4"
|
3380 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3381 + | checksum = "d8d25269dd3a12467afe2e510f69fb0b46b698e5afb296b59f2145259deaf8e8"
|
3382 + | dependencies = [
|
3383 + | "sdd",
|
3384 + | ]
|
3385 + |
|
3068 3386 | [[package]]
|
3069 3387 | name = "schannel"
|
3070 3388 | version = "0.1.26"
|
3071 3389 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3072 3390 | checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
|
3073 3391 | dependencies = [
|
3074 3392 | "windows-sys 0.59.0",
|
3075 3393 | ]
|
3076 3394 |
|
3077 3395 | [[package]]
|
3078 3396 | name = "scopeguard"
|
3079 3397 | version = "1.2.0"
|
3080 3398 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3081 3399 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
3082 3400 |
|
3083 3401 | [[package]]
|
3084 3402 | name = "sct"
|
3085 3403 | version = "0.7.1"
|
3086 3404 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3087 3405 | checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
3088 3406 | dependencies = [
|
3089 3407 | "ring 0.17.8",
|
3090 3408 | "untrusted 0.9.0",
|
3091 3409 | ]
|
3092 3410 |
|
3411 + | [[package]]
|
3412 + | name = "sdd"
|
3413 + | version = "3.0.4"
|
3414 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3415 + | checksum = "49c1eeaf4b6a87c7479688c6d52b9f1153cedd3c489300564f932b065c6eab95"
|
3416 + |
|
3093 3417 | [[package]]
|
3094 3418 | name = "sec1"
|
3095 3419 | version = "0.3.0"
|
3096 3420 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3097 3421 | checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
|
3098 3422 | dependencies = [
|
3099 3423 | "base16ct",
|
3100 3424 | "der",
|
3101 3425 | "generic-array",
|
3102 3426 | "pkcs8",
|
3103 3427 | "subtle",
|
3104 3428 | "zeroize",
|
3105 3429 | ]
|
3106 3430 |
|
3107 3431 | [[package]]
|
3108 3432 | name = "security-framework"
|
3109 3433 | version = "2.11.1"
|
3110 3434 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3111 3435 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
3112 3436 | dependencies = [
|
3113 3437 | "bitflags 2.6.0",
|
3114 3438 | "core-foundation",
|
3115 3439 | "core-foundation-sys",
|
3116 3440 | "libc",
|
3117 3441 | "security-framework-sys",
|
3118 3442 | ]
|
3119 3443 |
|
3120 3444 | [[package]]
|
3121 3445 | name = "security-framework-sys"
|
3122 3446 | version = "2.12.0"
|
@@ -3167,3491 +3226,3575 @@
3167 3491 | dependencies = [
|
3168 3492 | "indexmap 2.6.0",
|
3169 3493 | "itoa",
|
3170 3494 | "memchr",
|
3171 3495 | "ryu",
|
3172 3496 | "serde",
|
3173 3497 | ]
|
3174 3498 |
|
3175 3499 | [[package]]
|
3176 3500 | name = "serde_path_to_error"
|
3177 3501 | version = "0.1.16"
|
3178 3502 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3179 3503 | checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
|
3180 3504 | dependencies = [
|
3181 3505 | "itoa",
|
3182 3506 | "serde",
|
3183 3507 | ]
|
3184 3508 |
|
3185 3509 | [[package]]
|
3186 3510 | name = "serde_urlencoded"
|
3187 3511 | version = "0.7.1"
|
3188 3512 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3189 3513 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
3190 3514 | dependencies = [
|
3191 3515 | "form_urlencoded",
|
3192 3516 | "itoa",
|
3193 3517 | "ryu",
|
3194 3518 | "serde",
|
3195 3519 | ]
|
3196 3520 |
|
3521 + | [[package]]
|
3522 + | name = "serial_test"
|
3523 + | version = "3.1.1"
|
3524 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3525 + | checksum = "4b4b487fe2acf240a021cf57c6b2b4903b1e78ca0ecd862a71b71d2a51fed77d"
|
3526 + | dependencies = [
|
3527 + | "futures",
|
3528 + | "log",
|
3529 + | "once_cell",
|
3530 + | "parking_lot",
|
3531 + | "scc",
|
3532 + | "serial_test_derive",
|
3533 + | ]
|
3534 + |
|
3535 + | [[package]]
|
3536 + | name = "serial_test_derive"
|
3537 + | version = "3.1.1"
|
3538 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3539 + | checksum = "82fe9db325bcef1fbcde82e078a5cc4efdf787e96b3b9cf45b50b529f2083d67"
|
3540 + | dependencies = [
|
3541 + | "proc-macro2",
|
3542 + | "quote",
|
3543 + | "syn 2.0.87",
|
3544 + | ]
|
3545 + |
|
3197 3546 | [[package]]
|
3198 3547 | name = "sha1"
|
3199 3548 | version = "0.10.6"
|
3200 3549 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3201 3550 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
3202 3551 | dependencies = [
|
3203 3552 | "cfg-if",
|
3204 3553 | "cpufeatures",
|
3205 3554 | "digest",
|
3206 3555 | ]
|
3207 3556 |
|
3208 3557 | [[package]]
|
3209 3558 | name = "sha2"
|
3210 3559 | version = "0.10.8"
|
3211 3560 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3212 3561 | checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
3213 3562 | dependencies = [
|
3214 3563 | "cfg-if",
|
3215 3564 | "cpufeatures",
|
3216 3565 | "digest",
|
3217 3566 | ]
|
3218 3567 |
|
3219 3568 | [[package]]
|
3220 3569 | name = "sharded-slab"
|
3221 3570 | version = "0.1.7"
|
3222 3571 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3223 3572 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
3224 3573 | dependencies = [
|
3225 3574 | "lazy_static",
|
3226 3575 | ]
|
@@ -3794,4143 +3853,4208 @@
3794 4143 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3795 4144 | checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
3796 4145 | dependencies = [
|
3797 4146 | "form_urlencoded",
|
3798 4147 | "idna",
|
3799 4148 | "percent-encoding",
|
3800 4149 | ]
|
3801 4150 |
|
3802 4151 | [[package]]
|
3803 4152 | name = "urlencoding"
|
3804 4153 | version = "2.1.3"
|
3805 4154 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3806 4155 | checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
3807 4156 |
|
3808 4157 | [[package]]
|
3809 4158 | name = "uuid"
|
3810 4159 | version = "1.11.0"
|
3811 4160 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3812 4161 | checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
|
3813 4162 | dependencies = [
|
3814 4163 | "getrandom",
|
3815 4164 | "rand",
|
3816 4165 | ]
|
3817 4166 |
|
3818 4167 | [[package]]
|
3819 4168 | name = "valuable"
|
3820 4169 | version = "0.1.0"
|
3821 4170 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3822 4171 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
3823 4172 |
|
4173 + | [[package]]
|
4174 + | name = "value-bag"
|
4175 + | version = "1.10.0"
|
4176 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4177 + | checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2"
|
4178 + |
|
3824 4179 | [[package]]
|
3825 4180 | name = "version_check"
|
3826 4181 | version = "0.9.5"
|
3827 4182 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3828 4183 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
3829 4184 |
|
3830 4185 | [[package]]
|
3831 4186 | name = "vsimd"
|
3832 4187 | version = "0.8.0"
|
3833 4188 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3834 4189 | checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
3835 4190 |
|
3836 4191 | [[package]]
|
3837 4192 | name = "wait-timeout"
|
3838 4193 | version = "0.2.0"
|
3839 4194 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3840 4195 | checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
3841 4196 | dependencies = [
|
3842 4197 | "libc",
|
3843 4198 | ]
|
3844 4199 |
|
3845 4200 | [[package]]
|
3846 4201 | name = "walkdir"
|
3847 4202 | version = "2.5.0"
|
3848 4203 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3849 4204 | checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
3850 4205 | dependencies = [
|
3851 4206 | "same-file",
|
3852 4207 | "winapi-util",
|
3853 4208 | ]
|
@@ -3875,4230 +3934,4301 @@
3875 4230 | dependencies = [
|
3876 4231 | "wit-bindgen",
|
3877 4232 | ]
|
3878 4233 |
|
3879 4234 | [[package]]
|
3880 4235 | name = "wasm-bindgen"
|
3881 4236 | version = "0.2.95"
|
3882 4237 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3883 4238 | checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
|
3884 4239 | dependencies = [
|
3885 4240 | "cfg-if",
|
3886 4241 | "once_cell",
|
3887 4242 | "wasm-bindgen-macro",
|
3888 4243 | ]
|
3889 4244 |
|
3890 4245 | [[package]]
|
3891 4246 | name = "wasm-bindgen-backend"
|
3892 4247 | version = "0.2.95"
|
3893 4248 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3894 4249 | checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
|
3895 4250 | dependencies = [
|
3896 4251 | "bumpalo",
|
3897 4252 | "log",
|
3898 4253 | "once_cell",
|
3899 4254 | "proc-macro2",
|
3900 4255 | "quote",
|
3901 4256 | "syn 2.0.87",
|
3902 4257 | "wasm-bindgen-shared",
|
3903 4258 | ]
|
3904 4259 |
|
4260 + | [[package]]
|
4261 + | name = "wasm-bindgen-futures"
|
4262 + | version = "0.4.45"
|
4263 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4264 + | checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
|
4265 + | dependencies = [
|
4266 + | "cfg-if",
|
4267 + | "js-sys",
|
4268 + | "wasm-bindgen",
|
4269 + | "web-sys",
|
4270 + | ]
|
4271 + |
|
3905 4272 | [[package]]
|
3906 4273 | name = "wasm-bindgen-macro"
|
3907 4274 | version = "0.2.95"
|
3908 4275 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3909 4276 | checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
|
3910 4277 | dependencies = [
|
3911 4278 | "quote",
|
3912 4279 | "wasm-bindgen-macro-support",
|
3913 4280 | ]
|
3914 4281 |
|
3915 4282 | [[package]]
|
3916 4283 | name = "wasm-bindgen-macro-support"
|
3917 4284 | version = "0.2.95"
|
3918 4285 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3919 4286 | checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
|
3920 4287 | dependencies = [
|
3921 4288 | "proc-macro2",
|
3922 4289 | "quote",
|
3923 4290 | "syn 2.0.87",
|
3924 4291 | "wasm-bindgen-backend",
|
3925 4292 | "wasm-bindgen-shared",
|
3926 4293 | ]
|
3927 4294 |
|
3928 4295 | [[package]]
|
3929 4296 | name = "wasm-bindgen-shared"
|
3930 4297 | version = "0.2.95"
|
3931 4298 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3932 4299 | checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
|
3933 4300 |
|
3934 4301 | [[package]]
|