Skip to main content

max / makenotwork

19.2 KB · 786 lines History Blame Raw
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 4
4
5 [[package]]
6 name = "async-stream"
7 version = "0.3.6"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
10 dependencies = [
11 "async-stream-impl",
12 "futures-core",
13 "pin-project-lite",
14 ]
15
16 [[package]]
17 name = "async-stream-impl"
18 version = "0.3.6"
19 source = "registry+https://github.com/rust-lang/crates.io-index"
20 checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
21 dependencies = [
22 "proc-macro2",
23 "quote",
24 "syn 2.0.119",
25 ]
26
27 [[package]]
28 name = "async-trait"
29 version = "0.1.91"
30 source = "registry+https://github.com/rust-lang/crates.io-index"
31 checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
32 dependencies = [
33 "proc-macro2",
34 "quote",
35 "syn 3.0.0",
36 ]
37
38 [[package]]
39 name = "atomic-waker"
40 version = "1.1.2"
41 source = "registry+https://github.com/rust-lang/crates.io-index"
42 checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
43
44 [[package]]
45 name = "axum"
46 version = "0.8.9"
47 source = "registry+https://github.com/rust-lang/crates.io-index"
48 checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
49 dependencies = [
50 "axum-core",
51 "bytes",
52 "form_urlencoded",
53 "futures-util",
54 "http",
55 "http-body",
56 "http-body-util",
57 "hyper",
58 "hyper-util",
59 "itoa",
60 "matchit",
61 "memchr",
62 "mime",
63 "percent-encoding",
64 "pin-project-lite",
65 "serde_core",
66 "serde_json",
67 "serde_path_to_error",
68 "serde_urlencoded",
69 "sync_wrapper",
70 "tokio",
71 "tower",
72 "tower-layer",
73 "tower-service",
74 "tracing",
75 ]
76
77 [[package]]
78 name = "axum-core"
79 version = "0.5.6"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
81 checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
82 dependencies = [
83 "bytes",
84 "futures-core",
85 "http",
86 "http-body",
87 "http-body-util",
88 "mime",
89 "pin-project-lite",
90 "sync_wrapper",
91 "tower-layer",
92 "tower-service",
93 "tracing",
94 ]
95
96 [[package]]
97 name = "bitflags"
98 version = "2.13.1"
99 source = "registry+https://github.com/rust-lang/crates.io-index"
100 checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
101
102 [[package]]
103 name = "bumpalo"
104 version = "3.20.3"
105 source = "registry+https://github.com/rust-lang/crates.io-index"
106 checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
107
108 [[package]]
109 name = "bytes"
110 version = "1.12.1"
111 source = "registry+https://github.com/rust-lang/crates.io-index"
112 checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
113
114 [[package]]
115 name = "cfg-if"
116 version = "1.0.4"
117 source = "registry+https://github.com/rust-lang/crates.io-index"
118 checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
119
120 [[package]]
121 name = "crossbeam-utils"
122 version = "0.8.22"
123 source = "registry+https://github.com/rust-lang/crates.io-index"
124 checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
125
126 [[package]]
127 name = "dashmap"
128 version = "6.2.1"
129 source = "registry+https://github.com/rust-lang/crates.io-index"
130 checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
131 dependencies = [
132 "cfg-if",
133 "crossbeam-utils",
134 "hashbrown",
135 "lock_api",
136 "once_cell",
137 "parking_lot_core",
138 ]
139
140 [[package]]
141 name = "form_urlencoded"
142 version = "1.2.2"
143 source = "registry+https://github.com/rust-lang/crates.io-index"
144 checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
145 dependencies = [
146 "percent-encoding",
147 ]
148
149 [[package]]
150 name = "futures-channel"
151 version = "0.3.33"
152 source = "registry+https://github.com/rust-lang/crates.io-index"
153 checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
154 dependencies = [
155 "futures-core",
156 ]
157
158 [[package]]
159 name = "futures-core"
160 version = "0.3.33"
161 source = "registry+https://github.com/rust-lang/crates.io-index"
162 checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
163
164 [[package]]
165 name = "futures-sink"
166 version = "0.3.33"
167 source = "registry+https://github.com/rust-lang/crates.io-index"
168 checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
169
170 [[package]]
171 name = "futures-task"
172 version = "0.3.33"
173 source = "registry+https://github.com/rust-lang/crates.io-index"
174 checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
175
176 [[package]]
177 name = "futures-util"
178 version = "0.3.33"
179 source = "registry+https://github.com/rust-lang/crates.io-index"
180 checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
181 dependencies = [
182 "futures-core",
183 "futures-task",
184 "pin-project-lite",
185 "slab",
186 ]
187
188 [[package]]
189 name = "getrandom"
190 version = "0.4.3"
191 source = "registry+https://github.com/rust-lang/crates.io-index"
192 checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
193 dependencies = [
194 "cfg-if",
195 "libc",
196 "r-efi",
197 ]
198
199 [[package]]
200 name = "hashbrown"
201 version = "0.14.5"
202 source = "registry+https://github.com/rust-lang/crates.io-index"
203 checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
204
205 [[package]]
206 name = "http"
207 version = "1.4.2"
208 source = "registry+https://github.com/rust-lang/crates.io-index"
209 checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
210 dependencies = [
211 "bytes",
212 "itoa",
213 ]
214
215 [[package]]
216 name = "http-body"
217 version = "1.1.0"
218 source = "registry+https://github.com/rust-lang/crates.io-index"
219 checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
220 dependencies = [
221 "bytes",
222 "http",
223 ]
224
225 [[package]]
226 name = "http-body-util"
227 version = "0.1.4"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229 checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
230 dependencies = [
231 "bytes",
232 "futures-core",
233 "http",
234 "http-body",
235 "pin-project-lite",
236 ]
237
238 [[package]]
239 name = "httparse"
240 version = "1.10.1"
241 source = "registry+https://github.com/rust-lang/crates.io-index"
242 checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
243
244 [[package]]
245 name = "httpdate"
246 version = "1.0.3"
247 source = "registry+https://github.com/rust-lang/crates.io-index"
248 checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
249
250 [[package]]
251 name = "hyper"
252 version = "1.10.1"
253 source = "registry+https://github.com/rust-lang/crates.io-index"
254 checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
255 dependencies = [
256 "atomic-waker",
257 "bytes",
258 "futures-channel",
259 "futures-core",
260 "http",
261 "http-body",
262 "httparse",
263 "httpdate",
264 "itoa",
265 "pin-project-lite",
266 "smallvec",
267 "tokio",
268 ]
269
270 [[package]]
271 name = "hyper-util"
272 version = "0.1.20"
273 source = "registry+https://github.com/rust-lang/crates.io-index"
274 checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
275 dependencies = [
276 "bytes",
277 "http",
278 "http-body",
279 "hyper",
280 "pin-project-lite",
281 "tokio",
282 "tower-service",
283 ]
284
285 [[package]]
286 name = "itoa"
287 version = "1.0.18"
288 source = "registry+https://github.com/rust-lang/crates.io-index"
289 checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
290
291 [[package]]
292 name = "js-sys"
293 version = "0.3.103"
294 source = "registry+https://github.com/rust-lang/crates.io-index"
295 checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
296 dependencies = [
297 "cfg-if",
298 "futures-util",
299 "wasm-bindgen",
300 ]
301
302 [[package]]
303 name = "libc"
304 version = "0.2.186"
305 source = "registry+https://github.com/rust-lang/crates.io-index"
306 checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
307
308 [[package]]
309 name = "livechat"
310 version = "0.1.0"
311 dependencies = [
312 "async-stream",
313 "async-trait",
314 "axum",
315 "dashmap",
316 "serde",
317 "serde_json",
318 "thiserror",
319 "tokio",
320 "tokio-stream",
321 "tracing",
322 "uuid",
323 ]
324
325 [[package]]
326 name = "lock_api"
327 version = "0.4.14"
328 source = "registry+https://github.com/rust-lang/crates.io-index"
329 checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
330 dependencies = [
331 "scopeguard",
332 ]
333
334 [[package]]
335 name = "log"
336 version = "0.4.33"
337 source = "registry+https://github.com/rust-lang/crates.io-index"
338 checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
339
340 [[package]]
341 name = "matchit"
342 version = "0.8.4"
343 source = "registry+https://github.com/rust-lang/crates.io-index"
344 checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
345
346 [[package]]
347 name = "memchr"
348 version = "2.8.3"
349 source = "registry+https://github.com/rust-lang/crates.io-index"
350 checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
351
352 [[package]]
353 name = "mime"
354 version = "0.3.17"
355 source = "registry+https://github.com/rust-lang/crates.io-index"
356 checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
357
358 [[package]]
359 name = "mio"
360 version = "1.2.2"
361 source = "registry+https://github.com/rust-lang/crates.io-index"
362 checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
363 dependencies = [
364 "libc",
365 "wasi",
366 "windows-sys",
367 ]
368
369 [[package]]
370 name = "once_cell"
371 version = "1.21.4"
372 source = "registry+https://github.com/rust-lang/crates.io-index"
373 checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
374
375 [[package]]
376 name = "parking_lot_core"
377 version = "0.9.12"
378 source = "registry+https://github.com/rust-lang/crates.io-index"
379 checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
380 dependencies = [
381 "cfg-if",
382 "libc",
383 "redox_syscall",
384 "smallvec",
385 "windows-link",
386 ]
387
388 [[package]]
389 name = "percent-encoding"
390 version = "2.3.2"
391 source = "registry+https://github.com/rust-lang/crates.io-index"
392 checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
393
394 [[package]]
395 name = "pin-project-lite"
396 version = "0.2.17"
397 source = "registry+https://github.com/rust-lang/crates.io-index"
398 checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
399
400 [[package]]
401 name = "proc-macro2"
402 version = "1.0.106"
403 source = "registry+https://github.com/rust-lang/crates.io-index"
404 checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
405 dependencies = [
406 "unicode-ident",
407 ]
408
409 [[package]]
410 name = "quote"
411 version = "1.0.46"
412 source = "registry+https://github.com/rust-lang/crates.io-index"
413 checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
414 dependencies = [
415 "proc-macro2",
416 ]
417
418 [[package]]
419 name = "r-efi"
420 version = "6.0.0"
421 source = "registry+https://github.com/rust-lang/crates.io-index"
422 checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
423
424 [[package]]
425 name = "redox_syscall"
426 version = "0.5.18"
427 source = "registry+https://github.com/rust-lang/crates.io-index"
428 checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
429 dependencies = [
430 "bitflags",
431 ]
432
433 [[package]]
434 name = "rustversion"
435 version = "1.0.23"
436 source = "registry+https://github.com/rust-lang/crates.io-index"
437 checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
438
439 [[package]]
440 name = "ryu"
441 version = "1.0.23"
442 source = "registry+https://github.com/rust-lang/crates.io-index"
443 checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
444
445 [[package]]
446 name = "scopeguard"
447 version = "1.2.0"
448 source = "registry+https://github.com/rust-lang/crates.io-index"
449 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
450
451 [[package]]
452 name = "serde"
453 version = "1.0.229"
454 source = "registry+https://github.com/rust-lang/crates.io-index"
455 checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
456 dependencies = [
457 "serde_core",
458 "serde_derive",
459 ]
460
461 [[package]]
462 name = "serde_core"
463 version = "1.0.229"
464 source = "registry+https://github.com/rust-lang/crates.io-index"
465 checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
466 dependencies = [
467 "serde_derive",
468 ]
469
470 [[package]]
471 name = "serde_derive"
472 version = "1.0.229"
473 source = "registry+https://github.com/rust-lang/crates.io-index"
474 checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
475 dependencies = [
476 "proc-macro2",
477 "quote",
478 "syn 3.0.0",
479 ]
480
481 [[package]]
482 name = "serde_json"
483 version = "1.0.150"
484 source = "registry+https://github.com/rust-lang/crates.io-index"
485 checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
486 dependencies = [
487 "itoa",
488 "memchr",
489 "serde",
490 "serde_core",
491 "zmij",
492 ]
493
494 [[package]]
495 name = "serde_path_to_error"
496 version = "0.1.20"
497 source = "registry+https://github.com/rust-lang/crates.io-index"
498 checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
499 dependencies = [
500 "itoa",
501 "serde",
502 "serde_core",
503 ]
504
505 [[package]]
506 name = "serde_urlencoded"
507 version = "0.7.1"
508 source = "registry+https://github.com/rust-lang/crates.io-index"
509 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
510 dependencies = [
511 "form_urlencoded",
512 "itoa",
513 "ryu",
514 "serde",
515 ]
516
517 [[package]]
518 name = "slab"
519 version = "0.4.12"
520 source = "registry+https://github.com/rust-lang/crates.io-index"
521 checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
522
523 [[package]]
524 name = "smallvec"
525 version = "1.15.2"
526 source = "registry+https://github.com/rust-lang/crates.io-index"
527 checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
528
529 [[package]]
530 name = "socket2"
531 version = "0.6.5"
532 source = "registry+https://github.com/rust-lang/crates.io-index"
533 checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
534 dependencies = [
535 "libc",
536 "windows-sys",
537 ]
538
539 [[package]]
540 name = "syn"
541 version = "2.0.119"
542 source = "registry+https://github.com/rust-lang/crates.io-index"
543 checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
544 dependencies = [
545 "proc-macro2",
546 "quote",
547 "unicode-ident",
548 ]
549
550 [[package]]
551 name = "syn"
552 version = "3.0.0"
553 source = "registry+https://github.com/rust-lang/crates.io-index"
554 checksum = "f2fac314a64dc9a36e61a9eb4261a5e9bbfbc922b27e518af97bc32b926cf967"
555 dependencies = [
556 "proc-macro2",
557 "quote",
558 "unicode-ident",
559 ]
560
561 [[package]]
562 name = "sync_wrapper"
563 version = "1.0.2"
564 source = "registry+https://github.com/rust-lang/crates.io-index"
565 checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
566
567 [[package]]
568 name = "thiserror"
569 version = "2.0.19"
570 source = "registry+https://github.com/rust-lang/crates.io-index"
571 checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
572 dependencies = [
573 "thiserror-impl",
574 ]
575
576 [[package]]
577 name = "thiserror-impl"
578 version = "2.0.19"
579 source = "registry+https://github.com/rust-lang/crates.io-index"
580 checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
581 dependencies = [
582 "proc-macro2",
583 "quote",
584 "syn 3.0.0",
585 ]
586
587 [[package]]
588 name = "tokio"
589 version = "1.53.0"
590 source = "registry+https://github.com/rust-lang/crates.io-index"
591 checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
592 dependencies = [
593 "libc",
594 "mio",
595 "pin-project-lite",
596 "socket2",
597 "tokio-macros",
598 "windows-sys",
599 ]
600
601 [[package]]
602 name = "tokio-macros"
603 version = "2.7.1"
604 source = "registry+https://github.com/rust-lang/crates.io-index"
605 checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
606 dependencies = [
607 "proc-macro2",
608 "quote",
609 "syn 2.0.119",
610 ]
611
612 [[package]]
613 name = "tokio-stream"
614 version = "0.1.18"
615 source = "registry+https://github.com/rust-lang/crates.io-index"
616 checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
617 dependencies = [
618 "futures-core",
619 "pin-project-lite",
620 "tokio",
621 "tokio-util",
622 ]
623
624 [[package]]
625 name = "tokio-util"
626 version = "0.7.18"
627 source = "registry+https://github.com/rust-lang/crates.io-index"
628 checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
629 dependencies = [
630 "bytes",
631 "futures-core",
632 "futures-sink",
633 "pin-project-lite",
634 "tokio",
635 ]
636
637 [[package]]
638 name = "tower"
639 version = "0.5.3"
640 source = "registry+https://github.com/rust-lang/crates.io-index"
641 checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
642 dependencies = [
643 "futures-core",
644 "futures-util",
645 "pin-project-lite",
646 "sync_wrapper",
647 "tokio",
648 "tower-layer",
649 "tower-service",
650 "tracing",
651 ]
652
653 [[package]]
654 name = "tower-layer"
655 version = "0.3.3"
656 source = "registry+https://github.com/rust-lang/crates.io-index"
657 checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
658
659 [[package]]
660 name = "tower-service"
661 version = "0.3.3"
662 source = "registry+https://github.com/rust-lang/crates.io-index"
663 checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
664
665 [[package]]
666 name = "tracing"
667 version = "0.1.44"
668 source = "registry+https://github.com/rust-lang/crates.io-index"
669 checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
670 dependencies = [
671 "log",
672 "pin-project-lite",
673 "tracing-attributes",
674 "tracing-core",
675 ]
676
677 [[package]]
678 name = "tracing-attributes"
679 version = "0.1.31"
680 source = "registry+https://github.com/rust-lang/crates.io-index"
681 checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
682 dependencies = [
683 "proc-macro2",
684 "quote",
685 "syn 2.0.119",
686 ]
687
688 [[package]]
689 name = "tracing-core"
690 version = "0.1.36"
691 source = "registry+https://github.com/rust-lang/crates.io-index"
692 checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
693 dependencies = [
694 "once_cell",
695 ]
696
697 [[package]]
698 name = "unicode-ident"
699 version = "1.0.24"
700 source = "registry+https://github.com/rust-lang/crates.io-index"
701 checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
702
703 [[package]]
704 name = "uuid"
705 version = "1.24.0"
706 source = "registry+https://github.com/rust-lang/crates.io-index"
707 checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
708 dependencies = [
709 "getrandom",
710 "js-sys",
711 "serde_core",
712 "wasm-bindgen",
713 ]
714
715 [[package]]
716 name = "wasi"
717 version = "0.11.1+wasi-snapshot-preview1"
718 source = "registry+https://github.com/rust-lang/crates.io-index"
719 checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
720
721 [[package]]
722 name = "wasm-bindgen"
723 version = "0.2.126"
724 source = "registry+https://github.com/rust-lang/crates.io-index"
725 checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
726 dependencies = [
727 "cfg-if",
728 "once_cell",
729 "rustversion",
730 "wasm-bindgen-macro",
731 "wasm-bindgen-shared",
732 ]
733
734 [[package]]
735 name = "wasm-bindgen-macro"
736 version = "0.2.126"
737 source = "registry+https://github.com/rust-lang/crates.io-index"
738 checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
739 dependencies = [
740 "quote",
741 "wasm-bindgen-macro-support",
742 ]
743
744 [[package]]
745 name = "wasm-bindgen-macro-support"
746 version = "0.2.126"
747 source = "registry+https://github.com/rust-lang/crates.io-index"
748 checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
749 dependencies = [
750 "bumpalo",
751 "proc-macro2",
752 "quote",
753 "syn 2.0.119",
754 "wasm-bindgen-shared",
755 ]
756
757 [[package]]
758 name = "wasm-bindgen-shared"
759 version = "0.2.126"
760 source = "registry+https://github.com/rust-lang/crates.io-index"
761 checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
762 dependencies = [
763 "unicode-ident",
764 ]
765
766 [[package]]
767 name = "windows-link"
768 version = "0.2.1"
769 source = "registry+https://github.com/rust-lang/crates.io-index"
770 checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
771
772 [[package]]
773 name = "windows-sys"
774 version = "0.61.2"
775 source = "registry+https://github.com/rust-lang/crates.io-index"
776 checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
777 dependencies = [
778 "windows-link",
779 ]
780
781 [[package]]
782 name = "zmij"
783 version = "1.0.23"
784 source = "registry+https://github.com/rust-lang/crates.io-index"
785 checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
786