rev. 0c00b3c478a67fd0e1f262d013968bb289d9b122 (ignoring whitespace)
@@ -94,94 +173,324 @@
94 94 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
95 95 | checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
96 96 | dependencies = [
|
97 97 | "num-traits",
|
98 98 | ]
|
99 99 |
|
100 100 | [[package]]
|
101 101 | name = "arbitrary"
|
102 102 | version = "1.4.1"
|
103 103 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
104 104 | checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
105 105 |
|
106 106 | [[package]]
|
107 107 | name = "assert-json-diff"
|
108 108 | version = "1.1.0"
|
109 109 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
110 110 | checksum = "4259cbe96513d2f1073027a259fc2ca917feb3026a5a8d984e3628e490255cc0"
|
111 111 | dependencies = [
|
112 112 | "extend",
|
113 113 | "serde",
|
114 114 | "serde_json",
|
115 115 | ]
|
116 116 |
|
117 117 | [[package]]
|
118 118 | name = "async-channel"
|
119 119 | version = "1.9.0"
|
120 120 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
121 121 | checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
122 122 | dependencies = [
|
123 123 | "concurrent-queue",
|
124 - | "event-listener",
|
124 + | "event-listener 2.5.3",
|
125 125 | "futures-core",
|
126 126 | ]
|
127 127 |
|
128 + | [[package]]
|
129 + | name = "async-channel"
|
130 + | version = "2.3.1"
|
131 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
132 + | checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
|
133 + | dependencies = [
|
134 + | "concurrent-queue",
|
135 + | "event-listener-strategy",
|
136 + | "futures-core",
|
137 + | "pin-project-lite",
|
138 + | ]
|
139 + |
|
140 + | [[package]]
|
141 + | name = "async-executor"
|
142 + | version = "1.13.1"
|
143 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
144 + | checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
|
145 + | dependencies = [
|
146 + | "async-task",
|
147 + | "concurrent-queue",
|
148 + | "fastrand",
|
149 + | "futures-lite",
|
150 + | "slab",
|
151 + | ]
|
152 + |
|
153 + | [[package]]
|
154 + | name = "async-global-executor"
|
155 + | version = "2.4.1"
|
156 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
157 + | checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
158 + | dependencies = [
|
159 + | "async-channel 2.3.1",
|
160 + | "async-executor",
|
161 + | "async-io",
|
162 + | "async-lock",
|
163 + | "blocking",
|
164 + | "futures-lite",
|
165 + | "once_cell",
|
166 + | ]
|
167 + |
|
168 + | [[package]]
|
169 + | name = "async-io"
|
170 + | version = "2.3.4"
|
171 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
172 + | checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8"
|
173 + | dependencies = [
|
174 + | "async-lock",
|
175 + | "cfg-if",
|
176 + | "concurrent-queue",
|
177 + | "futures-io",
|
178 + | "futures-lite",
|
179 + | "parking",
|
180 + | "polling",
|
181 + | "rustix",
|
182 + | "slab",
|
183 + | "tracing",
|
184 + | "windows-sys 0.59.0",
|
185 + | ]
|
186 + |
|
187 + | [[package]]
|
188 + | name = "async-lock"
|
189 + | version = "3.4.0"
|
190 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
191 + | checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
|
192 + | dependencies = [
|
193 + | "event-listener 5.3.1",
|
194 + | "event-listener-strategy",
|
195 + | "pin-project-lite",
|
196 + | ]
|
197 + |
|
198 + | [[package]]
|
199 + | name = "async-process"
|
200 + | version = "2.3.0"
|
201 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
202 + | checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
|
203 + | dependencies = [
|
204 + | "async-channel 2.3.1",
|
205 + | "async-io",
|
206 + | "async-lock",
|
207 + | "async-signal",
|
208 + | "async-task",
|
209 + | "blocking",
|
210 + | "cfg-if",
|
211 + | "event-listener 5.3.1",
|
212 + | "futures-lite",
|
213 + | "rustix",
|
214 + | "tracing",
|
215 + | ]
|
216 + |
|
217 + | [[package]]
|
218 + | name = "async-signal"
|
219 + | version = "0.2.10"
|
220 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
221 + | checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
|
222 + | dependencies = [
|
223 + | "async-io",
|
224 + | "async-lock",
|
225 + | "atomic-waker",
|
226 + | "cfg-if",
|
227 + | "futures-core",
|
228 + | "futures-io",
|
229 + | "rustix",
|
230 + | "signal-hook-registry",
|
231 + | "slab",
|
232 + | "windows-sys 0.59.0",
|
233 + | ]
|
234 + |
|
235 + | [[package]]
|
236 + | name = "async-std"
|
237 + | version = "1.13.0"
|
238 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
239 + | checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615"
|
240 + | dependencies = [
|
241 + | "async-channel 1.9.0",
|
242 + | "async-global-executor",
|
243 + | "async-io",
|
244 + | "async-lock",
|
245 + | "async-process",
|
246 + | "crossbeam-utils",
|
247 + | "futures-channel",
|
248 + | "futures-core",
|
249 + | "futures-io",
|
250 + | "futures-lite",
|
251 + | "gloo-timers",
|
252 + | "kv-log-macro",
|
253 + | "log",
|
254 + | "memchr",
|
255 + | "once_cell",
|
256 + | "pin-project-lite",
|
257 + | "pin-utils",
|
258 + | "slab",
|
259 + | "wasm-bindgen-futures",
|
260 + | ]
|
261 + |
|
128 262 | [[package]]
|
129 263 | name = "async-stream"
|
130 264 | version = "0.3.6"
|
131 265 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
132 266 | checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
133 267 | dependencies = [
|
134 268 | "async-stream-impl",
|
135 269 | "futures-core",
|
136 270 | "pin-project-lite",
|
137 271 | ]
|
138 272 |
|
139 273 | [[package]]
|
140 274 | name = "async-stream-impl"
|
141 275 | version = "0.3.6"
|
142 276 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
143 277 | checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
278 + | dependencies = [
|
279 + | "proc-macro2",
|
280 + | "quote",
|
281 + | "syn 2.0.91",
|
282 + | ]
|
283 + |
|
284 + | [[package]]
|
285 + | name = "async-task"
|
286 + | version = "4.7.1"
|
287 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
288 + | checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
289 + |
|
290 + | [[package]]
|
291 + | name = "async-trait"
|
292 + | version = "0.1.83"
|
293 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
294 + | checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
|
144 295 | dependencies = [
|
145 296 | "proc-macro2",
|
146 297 | "quote",
|
147 298 | "syn 2.0.96",
|
148 299 | ]
|
149 300 |
|
150 301 | [[package]]
|
151 302 | name = "atomic-waker"
|
152 303 | version = "1.1.2"
|
153 304 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
154 305 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
155 306 |
|
156 307 | [[package]]
|
157 308 | name = "atty"
|
158 309 | version = "0.2.14"
|
159 310 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
160 311 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
161 312 | dependencies = [
|
162 313 | "hermit-abi 0.1.19",
|
163 314 | "libc",
|
164 315 | "winapi",
|
165 316 | ]
|
166 317 |
|
167 318 | [[package]]
|
168 319 | name = "autocfg"
|
169 320 | version = "1.4.0"
|
170 321 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
171 322 | checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
172 323 |
|
173 324 | [[package]]
|
@@ -310,461 +384,535 @@
310 461 | "subtle",
|
311 462 | "time",
|
312 463 | "tracing",
|
313 464 | "zeroize",
|
314 465 | ]
|
315 466 |
|
316 467 | [[package]]
|
317 468 | name = "aws-smithy-async"
|
318 469 | version = "1.2.3"
|
319 470 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
320 471 | checksum = "427cb637d15d63d6f9aae26358e1c9a9c09d5aa490d64b09354c8217cfef0f28"
|
321 472 | dependencies = [
|
322 473 | "futures-util",
|
323 474 | "pin-project-lite",
|
324 475 | "tokio",
|
325 476 | ]
|
326 477 |
|
327 478 | [[package]]
|
328 479 | name = "aws-smithy-async"
|
329 480 | version = "1.2.4"
|
330 481 | dependencies = [
|
331 482 | "futures-util",
|
332 483 | "pin-project-lite",
|
333 484 | "pin-utils",
|
334 485 | "tokio",
|
335 486 | "tokio-test",
|
336 487 | ]
|
337 488 |
|
338 489 | [[package]]
|
339 490 | name = "aws-smithy-cbor"
|
340 - | version = "0.60.8"
|
491 + | version = "0.61.0"
|
341 492 | dependencies = [
|
342 493 | "aws-smithy-types 1.2.12",
|
343 494 | "criterion",
|
344 495 | "minicbor",
|
345 496 | ]
|
346 497 |
|
347 498 | [[package]]
|
348 499 | name = "aws-smithy-checksums"
|
349 500 | version = "0.60.13"
|
350 501 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
351 502 | checksum = "ba1a71073fca26775c8b5189175ea8863afb1c9ea2cceb02a5de5ad9dfbaa795"
|
352 503 | dependencies = [
|
353 504 | "aws-smithy-http 0.60.11",
|
354 - | "aws-smithy-types 1.2.11",
|
505 + | "aws-smithy-types 1.2.10",
|
355 506 | "bytes",
|
356 507 | "crc32c",
|
357 508 | "crc32fast",
|
358 509 | "hex",
|
359 510 | "http 0.2.12",
|
360 511 | "http-body 0.4.6",
|
361 512 | "md-5",
|
362 513 | "pin-project-lite",
|
363 514 | "sha1",
|
364 515 | "sha2",
|
365 516 | "tracing",
|
366 517 | ]
|
367 518 |
|
368 519 | [[package]]
|
369 520 | name = "aws-smithy-checksums"
|
370 521 | version = "0.62.0"
|
371 522 | dependencies = [
|
372 523 | "aws-smithy-http 0.60.12",
|
373 524 | "aws-smithy-types 1.2.12",
|
374 525 | "bytes",
|
375 526 | "bytes-utils",
|
376 527 | "crc32c",
|
377 528 | "crc32fast",
|
378 529 | "crc64fast-nvme",
|
379 530 | "hex",
|
380 531 | "http 0.2.12",
|
381 532 | "http-body 0.4.6",
|
382 533 | "md-5",
|
383 534 | "pin-project-lite",
|
384 535 | "pretty_assertions",
|
@@ -973,1124 +1032,1196 @@
973 1124 | "bit-vec",
|
974 1125 | ]
|
975 1126 |
|
976 1127 | [[package]]
|
977 1128 | name = "bit-vec"
|
978 1129 | version = "0.8.0"
|
979 1130 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
980 1131 | checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
981 1132 |
|
982 1133 | [[package]]
|
983 1134 | name = "bitflags"
|
984 1135 | version = "1.3.2"
|
985 1136 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
986 1137 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
987 1138 |
|
988 1139 | [[package]]
|
989 1140 | name = "bitflags"
|
990 1141 | version = "2.7.0"
|
991 1142 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
992 1143 | checksum = "1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be"
|
993 1144 |
|
994 1145 | [[package]]
|
995 1146 | name = "block-buffer"
|
996 1147 | version = "0.10.4"
|
997 1148 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
998 1149 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
999 1150 | dependencies = [
|
1000 1151 | "generic-array",
|
1001 1152 | ]
|
1002 1153 |
|
1154 + | [[package]]
|
1155 + | name = "blocking"
|
1156 + | version = "1.6.1"
|
1157 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158 + | checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
|
1159 + | dependencies = [
|
1160 + | "async-channel 2.3.1",
|
1161 + | "async-task",
|
1162 + | "futures-io",
|
1163 + | "futures-lite",
|
1164 + | "piper",
|
1165 + | ]
|
1166 + |
|
1003 1167 | [[package]]
|
1004 1168 | name = "bs58"
|
1005 1169 | version = "0.5.1"
|
1006 1170 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1007 1171 | checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
1008 1172 | dependencies = [
|
1009 1173 | "tinyvec",
|
1010 1174 | ]
|
1011 1175 |
|
1012 1176 | [[package]]
|
1013 1177 | name = "bumpalo"
|
1014 1178 | version = "3.16.0"
|
1015 1179 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1016 1180 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
1017 1181 |
|
1018 1182 | [[package]]
|
1019 1183 | name = "byteorder"
|
1020 1184 | version = "1.5.0"
|
1021 1185 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022 1186 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
1023 1187 |
|
1024 1188 | [[package]]
|
1025 1189 | name = "bytes"
|
1026 1190 | version = "1.9.0"
|
1027 1191 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1028 1192 | checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
1029 1193 | dependencies = [
|
1030 1194 | "serde",
|
1031 1195 | ]
|
1032 1196 |
|
@@ -1300,1464 +1371,1537 @@
1300 1464 | [[package]]
|
1301 1465 | name = "crc32fast"
|
1302 1466 | version = "1.4.2"
|
1303 1467 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1304 1468 | checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
1305 1469 | dependencies = [
|
1306 1470 | "cfg-if",
|
1307 1471 | ]
|
1308 1472 |
|
1309 1473 | [[package]]
|
1310 1474 | name = "crc64fast-nvme"
|
1311 1475 | version = "1.1.1"
|
1312 1476 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1313 1477 | checksum = "d5e2ee08013e3f228d6d2394116c4549a6df77708442c62d887d83f68ef2ee37"
|
1314 1478 | dependencies = [
|
1315 1479 | "cbindgen",
|
1316 1480 | "crc",
|
1317 1481 | ]
|
1318 1482 |
|
1319 1483 | [[package]]
|
1320 1484 | name = "criterion"
|
1321 1485 | version = "0.5.1"
|
1322 1486 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1323 1487 | checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
1324 1488 | dependencies = [
|
1325 1489 | "anes",
|
1326 1490 | "cast",
|
1327 1491 | "ciborium",
|
1328 1492 | "clap 4.5.26",
|
1329 1493 | "criterion-plot",
|
1494 + | "futures",
|
1330 1495 | "is-terminal",
|
1331 1496 | "itertools 0.10.5",
|
1332 1497 | "num-traits",
|
1333 1498 | "once_cell",
|
1334 1499 | "oorandom",
|
1335 1500 | "plotters",
|
1336 1501 | "rayon",
|
1337 1502 | "regex",
|
1338 1503 | "serde",
|
1339 1504 | "serde_derive",
|
1340 1505 | "serde_json",
|
1341 1506 | "tinytemplate",
|
1507 + | "tokio",
|
1342 1508 | "walkdir",
|
1343 1509 | ]
|
1344 1510 |
|
1345 1511 | [[package]]
|
1346 1512 | name = "criterion-plot"
|
1347 1513 | version = "0.5.0"
|
1348 1514 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1349 1515 | checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
1350 1516 | dependencies = [
|
1351 1517 | "cast",
|
1352 1518 | "itertools 0.10.5",
|
1353 1519 | ]
|
1354 1520 |
|
1355 1521 | [[package]]
|
1356 1522 | name = "crossbeam-channel"
|
1357 1523 | version = "0.5.14"
|
1358 1524 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1359 1525 | checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
|
1360 1526 | dependencies = [
|
1361 1527 | "crossbeam-utils",
|
1362 1528 | ]
|
1363 1529 |
|
1364 1530 | [[package]]
|
1365 1531 | name = "crossbeam-deque"
|
1366 1532 | version = "0.8.6"
|
1367 1533 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1368 1534 | checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
1369 1535 | dependencies = [
|
1370 1536 | "crossbeam-epoch",
|
1371 1537 | "crossbeam-utils",
|
@@ -1536,1702 +1595,1782 @@
1536 1702 | name = "encoding_rs"
|
1537 1703 | version = "0.8.35"
|
1538 1704 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539 1705 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
1540 1706 | dependencies = [
|
1541 1707 | "cfg-if",
|
1542 1708 | ]
|
1543 1709 |
|
1544 1710 | [[package]]
|
1545 1711 | name = "equivalent"
|
1546 1712 | version = "1.0.1"
|
1547 1713 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1548 1714 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
1549 1715 |
|
1550 1716 | [[package]]
|
1551 1717 | name = "errno"
|
1552 1718 | version = "0.3.10"
|
1553 1719 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1554 1720 | checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
1555 1721 | dependencies = [
|
1556 1722 | "libc",
|
1557 1723 | "windows-sys 0.59.0",
|
1558 1724 | ]
|
1559 1725 |
|
1560 1726 | [[package]]
|
1561 1727 | name = "event-listener"
|
1562 1728 | version = "2.5.3"
|
1563 1729 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1564 1730 | checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
1565 1731 |
|
1732 + | [[package]]
|
1733 + | name = "event-listener"
|
1734 + | version = "5.3.1"
|
1735 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1736 + | checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
|
1737 + | dependencies = [
|
1738 + | "concurrent-queue",
|
1739 + | "parking",
|
1740 + | "pin-project-lite",
|
1741 + | ]
|
1742 + |
|
1743 + | [[package]]
|
1744 + | name = "event-listener-strategy"
|
1745 + | version = "0.5.2"
|
1746 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1747 + | checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
|
1748 + | dependencies = [
|
1749 + | "event-listener 5.3.1",
|
1750 + | "pin-project-lite",
|
1751 + | ]
|
1752 + |
|
1566 1753 | [[package]]
|
1567 1754 | name = "extend"
|
1568 1755 | version = "0.1.2"
|
1569 1756 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1570 1757 | checksum = "f47da3a72ec598d9c8937a7ebca8962a5c7a1f28444e38c2b33c771ba3f55f05"
|
1571 1758 | dependencies = [
|
1572 1759 | "proc-macro-error",
|
1573 1760 | "proc-macro2",
|
1574 1761 | "quote",
|
1575 1762 | "syn 1.0.109",
|
1576 1763 | ]
|
1577 1764 |
|
1578 1765 | [[package]]
|
1579 1766 | name = "fastrand"
|
1580 1767 | version = "2.0.2"
|
1581 1768 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1582 1769 | checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984"
|
1583 1770 |
|
1584 1771 | [[package]]
|
1585 1772 | name = "ff"
|
1586 1773 | version = "0.12.1"
|
1587 1774 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1588 1775 | checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
|
1589 1776 | dependencies = [
|
1590 1777 | "rand_core",
|
1591 1778 | "subtle",
|
1592 1779 | ]
|
1593 1780 |
|
1594 1781 | [[package]]
|
1595 1782 | name = "flate2"
|
@@ -1649,1836 +1708,1908 @@
1649 1836 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1650 1837 | checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
1651 1838 | dependencies = [
|
1652 1839 | "futures-core",
|
1653 1840 | "futures-sink",
|
1654 1841 | ]
|
1655 1842 |
|
1656 1843 | [[package]]
|
1657 1844 | name = "futures-core"
|
1658 1845 | version = "0.3.31"
|
1659 1846 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1660 1847 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
1661 1848 |
|
1662 1849 | [[package]]
|
1663 1850 | name = "futures-executor"
|
1664 1851 | version = "0.3.31"
|
1665 1852 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1666 1853 | checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
1667 1854 | dependencies = [
|
1668 1855 | "futures-core",
|
1669 1856 | "futures-task",
|
1670 1857 | "futures-util",
|
1671 1858 | ]
|
1672 1859 |
|
1673 1860 | [[package]]
|
1674 1861 | name = "futures-io"
|
1675 1862 | version = "0.3.31"
|
1676 1863 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1677 1864 | checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
1678 1865 |
|
1866 + | [[package]]
|
1867 + | name = "futures-lite"
|
1868 + | version = "2.4.0"
|
1869 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1870 + | checksum = "3f1fa2f9765705486b33fd2acf1577f8ec449c2ba1f318ae5447697b7c08d210"
|
1871 + | dependencies = [
|
1872 + | "fastrand",
|
1873 + | "futures-core",
|
1874 + | "futures-io",
|
1875 + | "parking",
|
1876 + | "pin-project-lite",
|
1877 + | ]
|
1878 + |
|
1679 1879 | [[package]]
|
1680 1880 | name = "futures-macro"
|
1681 1881 | version = "0.3.31"
|
1682 1882 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1683 1883 | checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
1684 1884 | dependencies = [
|
1685 1885 | "proc-macro2",
|
1686 1886 | "quote",
|
1687 1887 | "syn 2.0.96",
|
1688 1888 | ]
|
1689 1889 |
|
1690 1890 | [[package]]
|
1691 1891 | name = "futures-sink"
|
1692 1892 | version = "0.3.31"
|
1693 1893 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1694 1894 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
1695 1895 |
|
1696 1896 | [[package]]
|
1697 1897 | name = "futures-task"
|
1698 1898 | version = "0.3.31"
|
1699 1899 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1700 1900 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
1701 1901 |
|
1702 1902 | [[package]]
|
1703 1903 | name = "futures-util"
|
1704 1904 | version = "0.3.31"
|
1705 1905 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1706 1906 | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
1707 1907 | dependencies = [
|
1708 1908 | "futures-channel",
|
@@ -1721,1921 +1780,1993 @@
1721 1921 | name = "generic-array"
|
1722 1922 | version = "0.14.7"
|
1723 1923 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1724 1924 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1725 1925 | dependencies = [
|
1726 1926 | "typenum",
|
1727 1927 | "version_check",
|
1728 1928 | ]
|
1729 1929 |
|
1730 1930 | [[package]]
|
1731 1931 | name = "getrandom"
|
1732 1932 | version = "0.2.15"
|
1733 1933 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1734 1934 | checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
1735 1935 | dependencies = [
|
1736 1936 | "cfg-if",
|
1737 1937 | "libc",
|
1738 1938 | "wasi 0.11.0+wasi-snapshot-preview1",
|
1739 1939 | ]
|
1740 1940 |
|
1741 1941 | [[package]]
|
1742 1942 | name = "gimli"
|
1743 1943 | version = "0.31.1"
|
1744 1944 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1745 1945 | checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
1746 1946 |
|
1747 1947 | [[package]]
|
1748 1948 | name = "glob"
|
1749 1949 | version = "0.3.2"
|
1750 1950 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1951 + | checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
1952 + |
|
1953 + | [[package]]
|
1954 + | name = "gloo-timers"
|
1955 + | version = "0.3.0"
|
1956 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1957 + | checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
1958 + | dependencies = [
|
1959 + | "futures-channel",
|
1960 + | "futures-core",
|
1961 + | "js-sys",
|
1962 + | "wasm-bindgen",
|
1963 + | ]
|
1751 1964 | checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
1752 1965 |
|
1753 1966 | [[package]]
|
1754 1967 | name = "group"
|
1755 1968 | version = "0.12.1"
|
1756 1969 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1757 1970 | checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
|
1758 1971 | dependencies = [
|
1759 1972 | "ff",
|
1760 1973 | "rand_core",
|
1761 1974 | "subtle",
|
1762 1975 | ]
|
1763 1976 |
|
1764 1977 | [[package]]
|
1765 1978 | name = "h2"
|
1766 1979 | version = "0.3.26"
|
1767 1980 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1768 1981 | checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
|
1769 1982 | dependencies = [
|
1770 1983 | "bytes",
|
1771 1984 | "fnv",
|
1772 1985 | "futures-core",
|
1773 1986 | "futures-sink",
|
1774 1987 | "futures-util",
|
1775 1988 | "http 0.2.12",
|
1776 1989 | "indexmap 2.7.0",
|
1777 1990 | "slab",
|
1778 1991 | "tokio",
|
1779 1992 | "tokio-util",
|
1780 1993 | "tracing",
|
@@ -2294,2507 +2353,2575 @@
2294 2507 | checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
2295 2508 | dependencies = [
|
2296 2509 | "either",
|
2297 2510 | ]
|
2298 2511 |
|
2299 2512 | [[package]]
|
2300 2513 | name = "itoa"
|
2301 2514 | version = "1.0.14"
|
2302 2515 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2303 2516 | checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
2304 2517 |
|
2305 2518 | [[package]]
|
2306 2519 | name = "jobserver"
|
2307 2520 | version = "0.1.32"
|
2308 2521 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2309 2522 | checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
2310 2523 | dependencies = [
|
2311 2524 | "libc",
|
2312 2525 | ]
|
2313 2526 |
|
2314 2527 | [[package]]
|
2315 2528 | name = "js-sys"
|
2316 2529 | version = "0.3.77"
|
2317 2530 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2318 2531 | checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
|
2319 2532 | dependencies = [
|
2320 2533 | "once_cell",
|
2321 2534 | "wasm-bindgen",
|
2322 2535 | ]
|
2323 2536 |
|
2537 + | [[package]]
|
2538 + | name = "kv-log-macro"
|
2539 + | version = "1.0.7"
|
2540 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2541 + | checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
2542 + | dependencies = [
|
2543 + | "log",
|
2544 + | ]
|
2545 + |
|
2324 2546 | [[package]]
|
2325 2547 | name = "lambda_http"
|
2326 2548 | version = "0.8.3"
|
2327 2549 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2328 2550 | checksum = "2505c4a24f5a8d8ac66a87691215ec1f79736c5bc6e62bb921788dca9753f650"
|
2329 2551 | dependencies = [
|
2330 2552 | "aws_lambda_events",
|
2331 2553 | "base64 0.21.7",
|
2332 2554 | "bytes",
|
2333 2555 | "encoding_rs",
|
2334 2556 | "futures",
|
2335 2557 | "http 0.2.12",
|
2336 2558 | "http-body 0.4.6",
|
2337 2559 | "hyper 0.14.32",
|
2338 2560 | "lambda_runtime",
|
2339 2561 | "mime",
|
2340 2562 | "percent-encoding",
|
2341 2563 | "serde",
|
2342 2564 | "serde_json",
|
2343 2565 | "serde_urlencoded",
|
2344 2566 | "tokio-stream",
|
2345 2567 | "url",
|
2346 2568 | ]
|
2347 2569 |
|
2348 2570 | [[package]]
|
2349 2571 | name = "lambda_runtime"
|
2350 2572 | version = "0.8.3"
|
2351 2573 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2352 2574 | checksum = "deca8f65d7ce9a8bfddebb49d7d91b22e788a59ca0c5190f26794ab80ed7a702"
|
2353 2575 | dependencies = [
|
@@ -2408,2630 +2467,2693 @@
2408 2630 | "cfg-if",
|
2409 2631 | "windows-targets",
|
2410 2632 | ]
|
2411 2633 |
|
2412 2634 | [[package]]
|
2413 2635 | name = "linux-raw-sys"
|
2414 2636 | version = "0.4.15"
|
2415 2637 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2416 2638 | checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
2417 2639 |
|
2418 2640 | [[package]]
|
2419 2641 | name = "litemap"
|
2420 2642 | version = "0.7.4"
|
2421 2643 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2422 2644 | checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
2423 2645 |
|
2424 2646 | [[package]]
|
2425 2647 | name = "lock_api"
|
2426 2648 | version = "0.4.12"
|
2427 2649 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2428 2650 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
2429 2651 | dependencies = [
|
2430 2652 | "autocfg",
|
2431 2653 | "scopeguard",
|
2432 2654 | ]
|
2433 2655 |
|
2434 2656 | [[package]]
|
2435 2657 | name = "log"
|
2436 2658 | version = "0.4.25"
|
2437 2659 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2660 + | checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
2661 + | dependencies = [
|
2662 + | "value-bag",
|
2663 + | ]
|
2438 2664 | checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
|
2439 2665 |
|
2440 2666 | [[package]]
|
2441 2667 | name = "lru"
|
2442 2668 | version = "0.12.5"
|
2443 2669 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2444 2670 | checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
2445 2671 | dependencies = [
|
2446 2672 | "hashbrown 0.15.2",
|
2447 2673 | ]
|
2448 2674 |
|
2449 2675 | [[package]]
|
2450 2676 | name = "matchers"
|
2451 2677 | version = "0.1.0"
|
2452 2678 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2453 2679 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
2454 2680 | dependencies = [
|
2455 2681 | "regex-automata 0.1.10",
|
2456 2682 | ]
|
2457 2683 |
|
2458 2684 | [[package]]
|
2459 2685 | name = "md-5"
|
2460 2686 | version = "0.10.6"
|
2461 2687 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2462 2688 | checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
2463 2689 | dependencies = [
|
2464 2690 | "cfg-if",
|
2465 2691 | "digest",
|
2466 2692 | ]
|
2467 2693 |
|
@@ -2608,2834 +2696,2964 @@
2608 2834 | "libc",
|
2609 2835 | ]
|
2610 2836 |
|
2611 2837 | [[package]]
|
2612 2838 | name = "object"
|
2613 2839 | version = "0.36.7"
|
2614 2840 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2615 2841 | checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
2616 2842 | dependencies = [
|
2617 2843 | "memchr",
|
2618 2844 | ]
|
2619 2845 |
|
2620 2846 | [[package]]
|
2621 2847 | name = "once_cell"
|
2622 2848 | version = "1.20.2"
|
2623 2849 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2624 2850 | checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
2625 2851 |
|
2626 2852 | [[package]]
|
2627 2853 | name = "oorandom"
|
2628 2854 | version = "11.1.4"
|
2629 2855 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2630 2856 | checksum = "b410bbe7e14ab526a0e86877eb47c6996a2bd7746f027ba551028c925390e4e9"
|
2631 2857 |
|
2632 2858 | [[package]]
|
2633 2859 | name = "openssl-probe"
|
2634 2860 | version = "0.1.5"
|
2635 2861 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2636 2862 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2637 2863 |
|
2864 + | [[package]]
|
2865 + | name = "opentelemetry"
|
2866 + | version = "0.26.0"
|
2867 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2868 + | checksum = "570074cc999d1a58184080966e5bd3bf3a9a4af650c3b05047c2621e7405cd17"
|
2869 + | dependencies = [
|
2870 + | "futures-core",
|
2871 + | "futures-sink",
|
2872 + | "js-sys",
|
2873 + | "once_cell",
|
2874 + | "pin-project-lite",
|
2875 + | "thiserror",
|
2876 + | ]
|
2877 + |
|
2878 + | [[package]]
|
2879 + | name = "opentelemetry_sdk"
|
2880 + | version = "0.26.0"
|
2881 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2882 + | checksum = "d2c627d9f4c9cdc1f21a29ee4bfbd6028fcb8bcf2a857b43f3abdf72c9c862f3"
|
2883 + | dependencies = [
|
2884 + | "async-std",
|
2885 + | "async-trait",
|
2886 + | "futures-channel",
|
2887 + | "futures-executor",
|
2888 + | "futures-util",
|
2889 + | "glob",
|
2890 + | "once_cell",
|
2891 + | "opentelemetry",
|
2892 + | "percent-encoding",
|
2893 + | "rand",
|
2894 + | "serde_json",
|
2895 + | "thiserror",
|
2896 + | "tokio",
|
2897 + | "tokio-stream",
|
2898 + | ]
|
2899 + |
|
2638 2900 | [[package]]
|
2639 2901 | name = "os_str_bytes"
|
2640 2902 | version = "6.6.1"
|
2641 2903 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2642 2904 | checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
|
2643 2905 |
|
2644 2906 | [[package]]
|
2645 2907 | name = "outref"
|
2646 2908 | version = "0.5.1"
|
2647 2909 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2648 2910 | checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
|
2649 2911 |
|
2650 2912 | [[package]]
|
2651 2913 | name = "overload"
|
2652 2914 | version = "0.1.1"
|
2653 2915 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2654 2916 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
|
2655 2917 |
|
2656 2918 | [[package]]
|
2657 2919 | name = "p256"
|
2658 2920 | version = "0.11.1"
|
2659 2921 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2660 2922 | checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
|
2661 2923 | dependencies = [
|
2662 2924 | "ecdsa",
|
2663 2925 | "elliptic-curve",
|
2664 2926 | "sha2",
|
2665 2927 | ]
|
2666 2928 |
|
2929 + | [[package]]
|
2930 + | name = "parking"
|
2931 + | version = "2.2.1"
|
2932 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2933 + | checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
2934 + |
|
2667 2935 | [[package]]
|
2668 2936 | name = "parking_lot"
|
2669 2937 | version = "0.12.3"
|
2670 2938 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2671 2939 | checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
2672 2940 | dependencies = [
|
2673 2941 | "lock_api",
|
2674 2942 | "parking_lot_core",
|
2675 2943 | ]
|
2676 2944 |
|
2677 2945 | [[package]]
|
2678 2946 | name = "parking_lot_core"
|
2679 2947 | version = "0.9.10"
|
2680 2948 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2681 2949 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
2682 2950 | dependencies = [
|
2683 2951 | "cfg-if",
|
2684 2952 | "libc",
|
2685 2953 | "redox_syscall",
|
2686 2954 | "smallvec",
|
2687 2955 | "windows-targets",
|
2688 2956 | ]
|
2689 2957 |
|
2690 2958 | [[package]]
|
2691 2959 | name = "paste"
|
2692 2960 | version = "1.0.15"
|
2693 2961 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2694 2962 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
2695 2963 |
|
2696 2964 | [[package]]
|
@@ -2713,2981 +2810,3104 @@
2713 2981 | version = "1.1.8"
|
2714 2982 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2715 2983 | checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
|
2716 2984 | dependencies = [
|
2717 2985 | "pin-project-internal",
|
2718 2986 | ]
|
2719 2987 |
|
2720 2988 | [[package]]
|
2721 2989 | name = "pin-project-internal"
|
2722 2990 | version = "1.1.8"
|
2723 2991 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2724 2992 | checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
|
2725 2993 | dependencies = [
|
2726 2994 | "proc-macro2",
|
2727 2995 | "quote",
|
2728 2996 | "syn 2.0.96",
|
2729 2997 | ]
|
2730 2998 |
|
2731 2999 | [[package]]
|
2732 3000 | name = "pin-project-lite"
|
2733 3001 | version = "0.2.16"
|
2734 3002 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2735 3003 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
2736 3004 |
|
2737 3005 | [[package]]
|
2738 3006 | name = "pin-utils"
|
2739 3007 | version = "0.1.0"
|
2740 3008 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2741 3009 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
2742 3010 |
|
3011 + | [[package]]
|
3012 + | name = "piper"
|
3013 + | version = "0.2.4"
|
3014 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3015 + | checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
3016 + | dependencies = [
|
3017 + | "atomic-waker",
|
3018 + | "fastrand",
|
3019 + | "futures-io",
|
3020 + | ]
|
3021 + |
|
2743 3022 | [[package]]
|
2744 3023 | name = "pkcs8"
|
2745 3024 | version = "0.9.0"
|
2746 3025 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2747 3026 | checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
|
2748 3027 | dependencies = [
|
2749 3028 | "der",
|
2750 3029 | "spki",
|
2751 3030 | ]
|
2752 3031 |
|
2753 3032 | [[package]]
|
2754 3033 | name = "plotters"
|
2755 3034 | version = "0.3.7"
|
2756 3035 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2757 3036 | checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
2758 3037 | dependencies = [
|
2759 3038 | "num-traits",
|
2760 3039 | "plotters-backend",
|
2761 3040 | "plotters-svg",
|
2762 3041 | "wasm-bindgen",
|
2763 3042 | "web-sys",
|
2764 3043 | ]
|
2765 3044 |
|
2766 3045 | [[package]]
|
2767 3046 | name = "plotters-backend"
|
2768 3047 | version = "0.3.7"
|
2769 3048 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2770 3049 | checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
2771 3050 |
|
2772 3051 | [[package]]
|
2773 3052 | name = "plotters-svg"
|
2774 3053 | version = "0.3.7"
|
2775 3054 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2776 3055 | checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
2777 3056 | dependencies = [
|
2778 3057 | "plotters-backend",
|
2779 3058 | ]
|
2780 3059 |
|
3060 + | [[package]]
|
3061 + | name = "polling"
|
3062 + | version = "3.7.4"
|
3063 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3064 + | checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
|
3065 + | dependencies = [
|
3066 + | "cfg-if",
|
3067 + | "concurrent-queue",
|
3068 + | "hermit-abi 0.4.0",
|
3069 + | "pin-project-lite",
|
3070 + | "rustix",
|
3071 + | "tracing",
|
3072 + | "windows-sys 0.59.0",
|
3073 + | ]
|
3074 + |
|
2781 3075 | [[package]]
|
2782 3076 | name = "powerfmt"
|
2783 3077 | version = "0.2.0"
|
2784 3078 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2785 3079 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
2786 3080 |
|
2787 3081 | [[package]]
|
2788 3082 | name = "ppv-lite86"
|
2789 3083 | version = "0.2.20"
|
2790 3084 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2791 3085 | checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
|
2792 3086 | dependencies = [
|
2793 3087 | "zerocopy",
|
2794 3088 | ]
|
2795 3089 |
|
2796 3090 | [[package]]
|
2797 3091 | name = "pretty_assertions"
|
2798 3092 | version = "1.4.1"
|
2799 3093 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2800 3094 | checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
2801 3095 | dependencies = [
|
2802 3096 | "diff",
|
2803 3097 | "yansi",
|
2804 3098 | ]
|
2805 3099 |
|
2806 3100 | [[package]]
|
2807 3101 | name = "prettyplease"
|
2808 3102 | version = "0.2.29"
|
2809 3103 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2810 3104 | checksum = "6924ced06e1f7dfe3fa48d57b9f74f55d8915f5036121bef647ef4b204895fac"
|
@@ -2862,3156 +2922,3216 @@
2862 3156 | "rand_xorshift",
|
2863 3157 | "regex-syntax 0.8.5",
|
2864 3158 | "rusty-fork",
|
2865 3159 | "tempfile",
|
2866 3160 | "unarray",
|
2867 3161 | ]
|
2868 3162 |
|
2869 3163 | [[package]]
|
2870 3164 | name = "pyo3"
|
2871 3165 | version = "0.18.3"
|
2872 3166 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2873 3167 | checksum = "e3b1ac5b3731ba34fdaa9785f8d74d17448cd18f30cf19e0c7e7b1fdb5272109"
|
2874 3168 | dependencies = [
|
2875 3169 | "cfg-if",
|
2876 3170 | "indoc",
|
2877 3171 | "libc",
|
2878 3172 | "memoffset",
|
2879 3173 | "parking_lot",
|
2880 3174 | "pyo3-build-config",
|
2881 3175 | "pyo3-ffi",
|
2882 3176 | "pyo3-macros",
|
2883 3177 | "unindent",
|
2884 3178 | ]
|
2885 3179 |
|
2886 3180 | [[package]]
|
2887 3181 | name = "pyo3-asyncio"
|
2888 3182 | version = "0.18.0"
|
2889 3183 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2890 3184 | checksum = "d3564762e37035cfc486228e10b0528460fa026d681b5763873c693aa0d5c260"
|
2891 3185 | dependencies = [
|
2892 - | "async-channel",
|
3186 + | "async-channel 1.9.0",
|
2893 3187 | "clap 3.2.25",
|
2894 3188 | "futures",
|
2895 3189 | "inventory",
|
2896 3190 | "once_cell",
|
2897 3191 | "pin-project-lite",
|
2898 3192 | "pyo3",
|
2899 3193 | "pyo3-asyncio-macros",
|
2900 3194 | "tokio",
|
2901 3195 | ]
|
2902 3196 |
|
2903 3197 | [[package]]
|
2904 3198 | name = "pyo3-asyncio-macros"
|
2905 3199 | version = "0.18.0"
|
2906 3200 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2907 3201 | checksum = "be72d4cd43a27530306bd0d20d3932182fbdd072c6b98d3638bc37efb9d559dd"
|
2908 3202 | dependencies = [
|
2909 3203 | "proc-macro2",
|
2910 3204 | "quote",
|
2911 3205 | "syn 1.0.109",
|
2912 3206 | ]
|
2913 3207 |
|
2914 3208 | [[package]]
|
2915 3209 | name = "pyo3-build-config"
|
2916 3210 | version = "0.18.3"
|
2917 3211 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2918 3212 | checksum = "9cb946f5ac61bb61a5014924910d936ebd2b23b705f7a4a3c40b05c720b079a3"
|
2919 3213 | dependencies = [
|
2920 3214 | "once_cell",
|
2921 3215 | "target-lexicon",
|
2922 3216 | ]
|
@@ -3288,3582 +3372,3681 @@
3288 3582 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3289 3583 | checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
3290 3584 |
|
3291 3585 | [[package]]
|
3292 3586 | name = "rusty-fork"
|
3293 3587 | version = "0.3.0"
|
3294 3588 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3295 3589 | checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
|
3296 3590 | dependencies = [
|
3297 3591 | "fnv",
|
3298 3592 | "quick-error",
|
3299 3593 | "tempfile",
|
3300 3594 | "wait-timeout",
|
3301 3595 | ]
|
3302 3596 |
|
3303 3597 | [[package]]
|
3304 3598 | name = "ryu"
|
3305 3599 | version = "1.0.18"
|
3306 3600 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3307 3601 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
3308 3602 |
|
3309 3603 | [[package]]
|
3310 3604 | name = "same-file"
|
3311 3605 | version = "1.0.6"
|
3312 3606 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3313 3607 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
3314 3608 | dependencies = [
|
3315 3609 | "winapi-util",
|
3316 3610 | ]
|
3317 3611 |
|
3612 + | [[package]]
|
3613 + | name = "scc"
|
3614 + | version = "2.2.4"
|
3615 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3616 + | checksum = "d8d25269dd3a12467afe2e510f69fb0b46b698e5afb296b59f2145259deaf8e8"
|
3617 + | dependencies = [
|
3618 + | "sdd",
|
3619 + | ]
|
3620 + |
|
3318 3621 | [[package]]
|
3319 3622 | name = "schannel"
|
3320 3623 | version = "0.1.27"
|
3321 3624 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3322 3625 | checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
|
3323 3626 | dependencies = [
|
3324 3627 | "windows-sys 0.59.0",
|
3325 3628 | ]
|
3326 3629 |
|
3327 3630 | [[package]]
|
3328 3631 | name = "scopeguard"
|
3329 3632 | version = "1.2.0"
|
3330 3633 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3331 3634 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
3332 3635 |
|
3333 3636 | [[package]]
|
3334 3637 | name = "sct"
|
3335 3638 | version = "0.7.1"
|
3336 3639 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3337 3640 | checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
3338 3641 | dependencies = [
|
3339 3642 | "ring 0.17.8",
|
3340 3643 | "untrusted 0.9.0",
|
3341 3644 | ]
|
3342 3645 |
|
3646 + | [[package]]
|
3647 + | name = "sdd"
|
3648 + | version = "3.0.4"
|
3649 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3650 + | checksum = "49c1eeaf4b6a87c7479688c6d52b9f1153cedd3c489300564f932b065c6eab95"
|
3651 + |
|
3343 3652 | [[package]]
|
3344 3653 | name = "sec1"
|
3345 3654 | version = "0.3.0"
|
3346 3655 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3347 3656 | checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
|
3348 3657 | dependencies = [
|
3349 3658 | "base16ct",
|
3350 3659 | "der",
|
3351 3660 | "generic-array",
|
3352 3661 | "pkcs8",
|
3353 3662 | "subtle",
|
3354 3663 | "zeroize",
|
3355 3664 | ]
|
3356 3665 |
|
3357 3666 | [[package]]
|
3358 3667 | name = "security-framework"
|
3359 3668 | version = "2.11.1"
|
3360 3669 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3361 3670 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
3362 3671 | dependencies = [
|
3363 3672 | "bitflags 2.7.0",
|
3364 3673 | "core-foundation 0.9.4",
|
3365 3674 | "core-foundation-sys",
|
3366 3675 | "libc",
|
3367 3676 | "security-framework-sys",
|
3368 3677 | ]
|
3369 3678 |
|
3370 3679 | [[package]]
|
3371 3680 | name = "security-framework"
|
3372 3681 | version = "3.2.0"
|
@@ -3439,3748 +3498,3832 @@
3439 3748 | name = "serde_path_to_error"
|
3440 3749 | version = "0.1.16"
|
3441 3750 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3442 3751 | checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
|
3443 3752 | dependencies = [
|
3444 3753 | "itoa",
|
3445 3754 | "serde",
|
3446 3755 | ]
|
3447 3756 |
|
3448 3757 | [[package]]
|
3449 3758 | name = "serde_spanned"
|
3450 3759 | version = "0.6.8"
|
3451 3760 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3452 3761 | checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
|
3453 3762 | dependencies = [
|
3454 3763 | "serde",
|
3455 3764 | ]
|
3456 3765 |
|
3457 3766 | [[package]]
|
3458 3767 | name = "serde_urlencoded"
|
3459 3768 | version = "0.7.1"
|
3460 3769 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3461 3770 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
3462 3771 | dependencies = [
|
3463 3772 | "form_urlencoded",
|
3464 3773 | "itoa",
|
3465 3774 | "ryu",
|
3466 3775 | "serde",
|
3467 3776 | ]
|
3468 3777 |
|
3778 + | [[package]]
|
3779 + | name = "serial_test"
|
3780 + | version = "3.1.1"
|
3781 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3782 + | checksum = "4b4b487fe2acf240a021cf57c6b2b4903b1e78ca0ecd862a71b71d2a51fed77d"
|
3783 + | dependencies = [
|
3784 + | "futures",
|
3785 + | "log",
|
3786 + | "once_cell",
|
3787 + | "parking_lot",
|
3788 + | "scc",
|
3789 + | "serial_test_derive",
|
3790 + | ]
|
3791 + |
|
3792 + | [[package]]
|
3793 + | name = "serial_test_derive"
|
3794 + | version = "3.1.1"
|
3795 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3796 + | checksum = "82fe9db325bcef1fbcde82e078a5cc4efdf787e96b3b9cf45b50b529f2083d67"
|
3797 + | dependencies = [
|
3798 + | "proc-macro2",
|
3799 + | "quote",
|
3800 + | "syn 2.0.91",
|
3801 + | ]
|
3802 + |
|
3469 3803 | [[package]]
|
3470 3804 | name = "sha1"
|
3471 3805 | version = "0.10.6"
|
3472 3806 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3473 3807 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
3474 3808 | dependencies = [
|
3475 3809 | "cfg-if",
|
3476 3810 | "cpufeatures",
|
3477 3811 | "digest",
|
3478 3812 | ]
|
3479 3813 |
|
3480 3814 | [[package]]
|
3481 3815 | name = "sha2"
|
3482 3816 | version = "0.10.8"
|
3483 3817 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3484 3818 | checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
3485 3819 | dependencies = [
|
3486 3820 | "cfg-if",
|
3487 3821 | "cpufeatures",
|
3488 3822 | "digest",
|
3489 3823 | ]
|
3490 3824 |
|
3491 3825 | [[package]]
|
3492 3826 | name = "sharded-slab"
|
3493 3827 | version = "0.1.7"
|
3494 3828 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3495 3829 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
3496 3830 | dependencies = [
|
3497 3831 | "lazy_static",
|
3498 3832 | ]
|
@@ -3559,3893 +3618,3958 @@
3559 3893 | ]
|
3560 3894 |
|
3561 3895 | [[package]]
|
3562 3896 | name = "spin"
|
3563 3897 | version = "0.5.2"
|
3564 3898 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3565 3899 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
3566 3900 |
|
3567 3901 | [[package]]
|
3568 3902 | name = "spin"
|
3569 3903 | version = "0.9.8"
|
3570 3904 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3571 3905 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
3572 3906 |
|
3573 3907 | [[package]]
|
3574 3908 | name = "spki"
|
3575 3909 | version = "0.6.0"
|
3576 3910 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3577 3911 | checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
|
3578 3912 | dependencies = [
|
3579 3913 | "base64ct",
|
3580 3914 | "der",
|
3581 3915 | ]
|
3582 3916 |
|
3583 3917 | [[package]]
|
3584 3918 | name = "stable_deref_trait"
|
3585 3919 | version = "1.2.0"
|
3586 3920 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3587 3921 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
3588 3922 |
|
3923 + | [[package]]
|
3924 + | name = "stats_alloc"
|
3925 + | version = "0.1.10"
|
3926 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3927 + | checksum = "5c0e04424e733e69714ca1bbb9204c1a57f09f5493439520f9f68c132ad25eec"
|
3928 + |
|
3589 3929 | [[package]]
|
3590 3930 | name = "strsim"
|
3591 3931 | version = "0.10.0"
|
3592 3932 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3593 3933 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
3594 3934 |
|
3595 3935 | [[package]]
|
3596 3936 | name = "strsim"
|
3597 3937 | version = "0.11.1"
|
3598 3938 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3599 3939 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
3600 3940 |
|
3601 3941 | [[package]]
|
3602 3942 | name = "subtle"
|
3603 3943 | version = "2.6.1"
|
3604 3944 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3605 3945 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
3606 3946 |
|
3607 3947 | [[package]]
|
3608 3948 | name = "syn"
|
3609 3949 | version = "1.0.109"
|
3610 3950 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3611 3951 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
3612 3952 | dependencies = [
|
3613 3953 | "proc-macro2",
|
3614 3954 | "quote",
|
3615 3955 | "unicode-ident",
|
3616 3956 | ]
|
3617 3957 |
|
3618 3958 | [[package]]
|
@@ -4135,4475 +4194,4540 @@
4135 4475 | checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
4136 4476 |
|
4137 4477 | [[package]]
|
4138 4478 | name = "utf8_iter"
|
4139 4479 | version = "1.0.4"
|
4140 4480 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4141 4481 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
4142 4482 |
|
4143 4483 | [[package]]
|
4144 4484 | name = "utf8parse"
|
4145 4485 | version = "0.2.2"
|
4146 4486 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4147 4487 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
4148 4488 |
|
4149 4489 | [[package]]
|
4150 4490 | name = "uuid"
|
4151 4491 | version = "1.12.0"
|
4152 4492 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4153 4493 | checksum = "744018581f9a3454a9e15beb8a33b017183f1e7c0cd170232a2d1453b23a51c4"
|
4154 4494 | dependencies = [
|
4155 4495 | "getrandom",
|
4156 4496 | "rand",
|
4157 4497 | ]
|
4158 4498 |
|
4159 4499 | [[package]]
|
4160 4500 | name = "valuable"
|
4161 4501 | version = "0.1.0"
|
4162 4502 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4163 4503 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
4164 4504 |
|
4505 + | [[package]]
|
4506 + | name = "value-bag"
|
4507 + | version = "1.10.0"
|
4508 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4509 + | checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2"
|
4510 + |
|
4165 4511 | [[package]]
|
4166 4512 | name = "version_check"
|
4167 4513 | version = "0.9.5"
|
4168 4514 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4169 4515 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
4170 4516 |
|
4171 4517 | [[package]]
|
4172 4518 | name = "vsimd"
|
4173 4519 | version = "0.8.0"
|
4174 4520 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4175 4521 | checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
4176 4522 |
|
4177 4523 | [[package]]
|
4178 4524 | name = "wait-timeout"
|
4179 4525 | version = "0.2.0"
|
4180 4526 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4181 4527 | checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
4182 4528 | dependencies = [
|
4183 4529 | "libc",
|
4184 4530 | ]
|
4185 4531 |
|
4186 4532 | [[package]]
|
4187 4533 | name = "walkdir"
|
4188 4534 | version = "2.5.0"
|
4189 4535 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4190 4536 | checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
4191 4537 | dependencies = [
|
4192 4538 | "same-file",
|
4193 4539 | "winapi-util",
|
4194 4540 | ]
|
@@ -4216,4562 +4275,4633 @@
4216 4562 | dependencies = [
|
4217 4563 | "wit-bindgen",
|
4218 4564 | ]
|
4219 4565 |
|
4220 4566 | [[package]]
|
4221 4567 | name = "wasm-bindgen"
|
4222 4568 | version = "0.2.100"
|
4223 4569 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4224 4570 | checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
4225 4571 | dependencies = [
|
4226 4572 | "cfg-if",
|
4227 4573 | "once_cell",
|
4228 4574 | "rustversion",
|
4229 4575 | "wasm-bindgen-macro",
|
4230 4576 | ]
|
4231 4577 |
|
4232 4578 | [[package]]
|
4233 4579 | name = "wasm-bindgen-backend"
|
4234 4580 | version = "0.2.100"
|
4235 4581 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4236 4582 | checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
4237 4583 | dependencies = [
|
4238 4584 | "bumpalo",
|
4239 4585 | "log",
|
4240 4586 | "proc-macro2",
|
4241 4587 | "quote",
|
4242 4588 | "syn 2.0.96",
|
4243 4589 | "wasm-bindgen-shared",
|
4244 4590 | ]
|
4245 4591 |
|
4592 + | [[package]]
|
4593 + | name = "wasm-bindgen-futures"
|
4594 + | version = "0.4.45"
|
4595 + | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4596 + | checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
|
4597 + | dependencies = [
|
4598 + | "cfg-if",
|
4599 + | "js-sys",
|
4600 + | "wasm-bindgen",
|
4601 + | "web-sys",
|
4602 + | ]
|
4603 + |
|
4246 4604 | [[package]]
|
4247 4605 | name = "wasm-bindgen-macro"
|
4248 4606 | version = "0.2.100"
|
4249 4607 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4250 4608 | checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
4251 4609 | dependencies = [
|
4252 4610 | "quote",
|
4253 4611 | "wasm-bindgen-macro-support",
|
4254 4612 | ]
|
4255 4613 |
|
4256 4614 | [[package]]
|
4257 4615 | name = "wasm-bindgen-macro-support"
|
4258 4616 | version = "0.2.100"
|
4259 4617 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4260 4618 | checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
4261 4619 | dependencies = [
|
4262 4620 | "proc-macro2",
|
4263 4621 | "quote",
|
4264 4622 | "syn 2.0.96",
|
4265 4623 | "wasm-bindgen-backend",
|
4266 4624 | "wasm-bindgen-shared",
|
4267 4625 | ]
|
4268 4626 |
|
4269 4627 | [[package]]
|
4270 4628 | name = "wasm-bindgen-shared"
|
4271 4629 | version = "0.2.100"
|
4272 4630 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4273 4631 | checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
4274 4632 | dependencies = [
|
4275 4633 | "unicode-ident",
|