Advent of Code
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "aho-corasick"
7version = "1.1.4"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10dependencies = [
11 "memchr",
12]
13
14[[package]]
15name = "alloca"
16version = "0.4.0"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19dependencies = [
20 "cc",
21]
22
23[[package]]
24name = "anes"
25version = "0.1.6"
26source = "registry+https://github.com/rust-lang/crates.io-index"
27checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
29[[package]]
30name = "anstream"
31version = "0.6.21"
32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
34dependencies = [
35 "anstyle",
36 "anstyle-parse",
37 "anstyle-query",
38 "anstyle-wincon",
39 "colorchoice",
40 "is_terminal_polyfill",
41 "utf8parse",
42]
43
44[[package]]
45name = "anstyle"
46version = "1.0.13"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
49
50[[package]]
51name = "anstyle-parse"
52version = "0.2.7"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55dependencies = [
56 "utf8parse",
57]
58
59[[package]]
60name = "anstyle-query"
61version = "1.1.5"
62source = "registry+https://github.com/rust-lang/crates.io-index"
63checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64dependencies = [
65 "windows-sys",
66]
67
68[[package]]
69name = "anstyle-wincon"
70version = "3.0.11"
71source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73dependencies = [
74 "anstyle",
75 "once_cell_polyfill",
76 "windows-sys",
77]
78
79[[package]]
80name = "anyhow"
81version = "1.0.100"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
84
85[[package]]
86name = "aoc2025"
87version = "0.1.0"
88dependencies = [
89 "anyhow",
90 "atoi_simd",
91 "criterion",
92 "env_logger",
93 "log",
94 "memchr",
95]
96
97[[package]]
98name = "atoi_simd"
99version = "0.17.0"
100source = "registry+https://github.com/rust-lang/crates.io-index"
101checksum = "8ad17c7c205c2c28b527b9845eeb91cf1b4d008b438f98ce0e628227a822758e"
102dependencies = [
103 "debug_unsafe",
104]
105
106[[package]]
107name = "autocfg"
108version = "1.5.0"
109source = "registry+https://github.com/rust-lang/crates.io-index"
110checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
111
112[[package]]
113name = "bumpalo"
114version = "3.19.0"
115source = "registry+https://github.com/rust-lang/crates.io-index"
116checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
117
118[[package]]
119name = "cast"
120version = "0.3.0"
121source = "registry+https://github.com/rust-lang/crates.io-index"
122checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
123
124[[package]]
125name = "cc"
126version = "1.2.48"
127source = "registry+https://github.com/rust-lang/crates.io-index"
128checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
129dependencies = [
130 "find-msvc-tools",
131 "shlex",
132]
133
134[[package]]
135name = "cfg-if"
136version = "1.0.4"
137source = "registry+https://github.com/rust-lang/crates.io-index"
138checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
139
140[[package]]
141name = "ciborium"
142version = "0.2.2"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
145dependencies = [
146 "ciborium-io",
147 "ciborium-ll",
148 "serde",
149]
150
151[[package]]
152name = "ciborium-io"
153version = "0.2.2"
154source = "registry+https://github.com/rust-lang/crates.io-index"
155checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
156
157[[package]]
158name = "ciborium-ll"
159version = "0.2.2"
160source = "registry+https://github.com/rust-lang/crates.io-index"
161checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
162dependencies = [
163 "ciborium-io",
164 "half",
165]
166
167[[package]]
168name = "clap"
169version = "4.5.53"
170source = "registry+https://github.com/rust-lang/crates.io-index"
171checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
172dependencies = [
173 "clap_builder",
174]
175
176[[package]]
177name = "clap_builder"
178version = "4.5.53"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
181dependencies = [
182 "anstyle",
183 "clap_lex",
184]
185
186[[package]]
187name = "clap_lex"
188version = "0.7.6"
189source = "registry+https://github.com/rust-lang/crates.io-index"
190checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
191
192[[package]]
193name = "colorchoice"
194version = "1.0.4"
195source = "registry+https://github.com/rust-lang/crates.io-index"
196checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
197
198[[package]]
199name = "criterion"
200version = "0.8.0"
201source = "registry+https://github.com/rust-lang/crates.io-index"
202checksum = "a0dfe5e9e71bdcf4e4954f7d14da74d1cdb92a3a07686452d1509652684b1aab"
203dependencies = [
204 "alloca",
205 "anes",
206 "cast",
207 "ciborium",
208 "clap",
209 "criterion-plot",
210 "itertools",
211 "num-traits",
212 "oorandom",
213 "page_size",
214 "plotters",
215 "rayon",
216 "regex",
217 "serde",
218 "serde_json",
219 "tinytemplate",
220 "walkdir",
221]
222
223[[package]]
224name = "criterion-plot"
225version = "0.8.0"
226source = "registry+https://github.com/rust-lang/crates.io-index"
227checksum = "5de36c2bee19fba779808f92bf5d9b0fa5a40095c277aba10c458a12b35d21d6"
228dependencies = [
229 "cast",
230 "itertools",
231]
232
233[[package]]
234name = "crossbeam-deque"
235version = "0.8.6"
236source = "registry+https://github.com/rust-lang/crates.io-index"
237checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
238dependencies = [
239 "crossbeam-epoch",
240 "crossbeam-utils",
241]
242
243[[package]]
244name = "crossbeam-epoch"
245version = "0.9.18"
246source = "registry+https://github.com/rust-lang/crates.io-index"
247checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
248dependencies = [
249 "crossbeam-utils",
250]
251
252[[package]]
253name = "crossbeam-utils"
254version = "0.8.21"
255source = "registry+https://github.com/rust-lang/crates.io-index"
256checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
257
258[[package]]
259name = "crunchy"
260version = "0.2.4"
261source = "registry+https://github.com/rust-lang/crates.io-index"
262checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
263
264[[package]]
265name = "debug_unsafe"
266version = "0.1.3"
267source = "registry+https://github.com/rust-lang/crates.io-index"
268checksum = "85d3cef41d236720ed453e102153a53e4cc3d2fde848c0078a50cf249e8e3e5b"
269
270[[package]]
271name = "either"
272version = "1.15.0"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
275
276[[package]]
277name = "env_filter"
278version = "0.1.4"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
281dependencies = [
282 "log",
283 "regex",
284]
285
286[[package]]
287name = "env_logger"
288version = "0.11.8"
289source = "registry+https://github.com/rust-lang/crates.io-index"
290checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
291dependencies = [
292 "anstream",
293 "anstyle",
294 "env_filter",
295 "jiff",
296 "log",
297]
298
299[[package]]
300name = "find-msvc-tools"
301version = "0.1.5"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
304
305[[package]]
306name = "half"
307version = "2.7.1"
308source = "registry+https://github.com/rust-lang/crates.io-index"
309checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
310dependencies = [
311 "cfg-if",
312 "crunchy",
313 "zerocopy",
314]
315
316[[package]]
317name = "is_terminal_polyfill"
318version = "1.70.2"
319source = "registry+https://github.com/rust-lang/crates.io-index"
320checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
321
322[[package]]
323name = "itertools"
324version = "0.13.0"
325source = "registry+https://github.com/rust-lang/crates.io-index"
326checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
327dependencies = [
328 "either",
329]
330
331[[package]]
332name = "itoa"
333version = "1.0.15"
334source = "registry+https://github.com/rust-lang/crates.io-index"
335checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
336
337[[package]]
338name = "jiff"
339version = "0.2.16"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
342dependencies = [
343 "jiff-static",
344 "log",
345 "portable-atomic",
346 "portable-atomic-util",
347 "serde_core",
348]
349
350[[package]]
351name = "jiff-static"
352version = "0.2.16"
353source = "registry+https://github.com/rust-lang/crates.io-index"
354checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
355dependencies = [
356 "proc-macro2",
357 "quote",
358 "syn",
359]
360
361[[package]]
362name = "js-sys"
363version = "0.3.83"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
366dependencies = [
367 "once_cell",
368 "wasm-bindgen",
369]
370
371[[package]]
372name = "libc"
373version = "0.2.178"
374source = "registry+https://github.com/rust-lang/crates.io-index"
375checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
376
377[[package]]
378name = "log"
379version = "0.4.29"
380source = "registry+https://github.com/rust-lang/crates.io-index"
381checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
382
383[[package]]
384name = "memchr"
385version = "2.7.6"
386source = "registry+https://github.com/rust-lang/crates.io-index"
387checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
388
389[[package]]
390name = "num-traits"
391version = "0.2.19"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
394dependencies = [
395 "autocfg",
396]
397
398[[package]]
399name = "once_cell"
400version = "1.21.3"
401source = "registry+https://github.com/rust-lang/crates.io-index"
402checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
403
404[[package]]
405name = "once_cell_polyfill"
406version = "1.70.2"
407source = "registry+https://github.com/rust-lang/crates.io-index"
408checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
409
410[[package]]
411name = "oorandom"
412version = "11.1.5"
413source = "registry+https://github.com/rust-lang/crates.io-index"
414checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
415
416[[package]]
417name = "page_size"
418version = "0.6.0"
419source = "registry+https://github.com/rust-lang/crates.io-index"
420checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
421dependencies = [
422 "libc",
423 "winapi",
424]
425
426[[package]]
427name = "plotters"
428version = "0.3.7"
429source = "registry+https://github.com/rust-lang/crates.io-index"
430checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
431dependencies = [
432 "num-traits",
433 "plotters-backend",
434 "plotters-svg",
435 "wasm-bindgen",
436 "web-sys",
437]
438
439[[package]]
440name = "plotters-backend"
441version = "0.3.7"
442source = "registry+https://github.com/rust-lang/crates.io-index"
443checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
444
445[[package]]
446name = "plotters-svg"
447version = "0.3.7"
448source = "registry+https://github.com/rust-lang/crates.io-index"
449checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
450dependencies = [
451 "plotters-backend",
452]
453
454[[package]]
455name = "portable-atomic"
456version = "1.11.1"
457source = "registry+https://github.com/rust-lang/crates.io-index"
458checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
459
460[[package]]
461name = "portable-atomic-util"
462version = "0.2.4"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
465dependencies = [
466 "portable-atomic",
467]
468
469[[package]]
470name = "proc-macro2"
471version = "1.0.103"
472source = "registry+https://github.com/rust-lang/crates.io-index"
473checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
474dependencies = [
475 "unicode-ident",
476]
477
478[[package]]
479name = "quote"
480version = "1.0.42"
481source = "registry+https://github.com/rust-lang/crates.io-index"
482checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
483dependencies = [
484 "proc-macro2",
485]
486
487[[package]]
488name = "rayon"
489version = "1.11.0"
490source = "registry+https://github.com/rust-lang/crates.io-index"
491checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
492dependencies = [
493 "either",
494 "rayon-core",
495]
496
497[[package]]
498name = "rayon-core"
499version = "1.13.0"
500source = "registry+https://github.com/rust-lang/crates.io-index"
501checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
502dependencies = [
503 "crossbeam-deque",
504 "crossbeam-utils",
505]
506
507[[package]]
508name = "regex"
509version = "1.12.2"
510source = "registry+https://github.com/rust-lang/crates.io-index"
511checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
512dependencies = [
513 "aho-corasick",
514 "memchr",
515 "regex-automata",
516 "regex-syntax",
517]
518
519[[package]]
520name = "regex-automata"
521version = "0.4.13"
522source = "registry+https://github.com/rust-lang/crates.io-index"
523checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
524dependencies = [
525 "aho-corasick",
526 "memchr",
527 "regex-syntax",
528]
529
530[[package]]
531name = "regex-syntax"
532version = "0.8.8"
533source = "registry+https://github.com/rust-lang/crates.io-index"
534checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
535
536[[package]]
537name = "rustversion"
538version = "1.0.22"
539source = "registry+https://github.com/rust-lang/crates.io-index"
540checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
541
542[[package]]
543name = "ryu"
544version = "1.0.20"
545source = "registry+https://github.com/rust-lang/crates.io-index"
546checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
547
548[[package]]
549name = "same-file"
550version = "1.0.6"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
553dependencies = [
554 "winapi-util",
555]
556
557[[package]]
558name = "serde"
559version = "1.0.228"
560source = "registry+https://github.com/rust-lang/crates.io-index"
561checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
562dependencies = [
563 "serde_core",
564 "serde_derive",
565]
566
567[[package]]
568name = "serde_core"
569version = "1.0.228"
570source = "registry+https://github.com/rust-lang/crates.io-index"
571checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
572dependencies = [
573 "serde_derive",
574]
575
576[[package]]
577name = "serde_derive"
578version = "1.0.228"
579source = "registry+https://github.com/rust-lang/crates.io-index"
580checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
581dependencies = [
582 "proc-macro2",
583 "quote",
584 "syn",
585]
586
587[[package]]
588name = "serde_json"
589version = "1.0.145"
590source = "registry+https://github.com/rust-lang/crates.io-index"
591checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
592dependencies = [
593 "itoa",
594 "memchr",
595 "ryu",
596 "serde",
597 "serde_core",
598]
599
600[[package]]
601name = "shlex"
602version = "1.3.0"
603source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
605
606[[package]]
607name = "syn"
608version = "2.0.111"
609source = "registry+https://github.com/rust-lang/crates.io-index"
610checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
611dependencies = [
612 "proc-macro2",
613 "quote",
614 "unicode-ident",
615]
616
617[[package]]
618name = "tinytemplate"
619version = "1.2.1"
620source = "registry+https://github.com/rust-lang/crates.io-index"
621checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
622dependencies = [
623 "serde",
624 "serde_json",
625]
626
627[[package]]
628name = "unicode-ident"
629version = "1.0.22"
630source = "registry+https://github.com/rust-lang/crates.io-index"
631checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
632
633[[package]]
634name = "utf8parse"
635version = "0.2.2"
636source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
638
639[[package]]
640name = "walkdir"
641version = "2.5.0"
642source = "registry+https://github.com/rust-lang/crates.io-index"
643checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
644dependencies = [
645 "same-file",
646 "winapi-util",
647]
648
649[[package]]
650name = "wasm-bindgen"
651version = "0.2.106"
652source = "registry+https://github.com/rust-lang/crates.io-index"
653checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
654dependencies = [
655 "cfg-if",
656 "once_cell",
657 "rustversion",
658 "wasm-bindgen-macro",
659 "wasm-bindgen-shared",
660]
661
662[[package]]
663name = "wasm-bindgen-macro"
664version = "0.2.106"
665source = "registry+https://github.com/rust-lang/crates.io-index"
666checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
667dependencies = [
668 "quote",
669 "wasm-bindgen-macro-support",
670]
671
672[[package]]
673name = "wasm-bindgen-macro-support"
674version = "0.2.106"
675source = "registry+https://github.com/rust-lang/crates.io-index"
676checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
677dependencies = [
678 "bumpalo",
679 "proc-macro2",
680 "quote",
681 "syn",
682 "wasm-bindgen-shared",
683]
684
685[[package]]
686name = "wasm-bindgen-shared"
687version = "0.2.106"
688source = "registry+https://github.com/rust-lang/crates.io-index"
689checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
690dependencies = [
691 "unicode-ident",
692]
693
694[[package]]
695name = "web-sys"
696version = "0.3.83"
697source = "registry+https://github.com/rust-lang/crates.io-index"
698checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
699dependencies = [
700 "js-sys",
701 "wasm-bindgen",
702]
703
704[[package]]
705name = "winapi"
706version = "0.3.9"
707source = "registry+https://github.com/rust-lang/crates.io-index"
708checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
709dependencies = [
710 "winapi-i686-pc-windows-gnu",
711 "winapi-x86_64-pc-windows-gnu",
712]
713
714[[package]]
715name = "winapi-i686-pc-windows-gnu"
716version = "0.4.0"
717source = "registry+https://github.com/rust-lang/crates.io-index"
718checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
719
720[[package]]
721name = "winapi-util"
722version = "0.1.11"
723source = "registry+https://github.com/rust-lang/crates.io-index"
724checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
725dependencies = [
726 "windows-sys",
727]
728
729[[package]]
730name = "winapi-x86_64-pc-windows-gnu"
731version = "0.4.0"
732source = "registry+https://github.com/rust-lang/crates.io-index"
733checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
734
735[[package]]
736name = "windows-link"
737version = "0.2.1"
738source = "registry+https://github.com/rust-lang/crates.io-index"
739checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
740
741[[package]]
742name = "windows-sys"
743version = "0.61.2"
744source = "registry+https://github.com/rust-lang/crates.io-index"
745checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
746dependencies = [
747 "windows-link",
748]
749
750[[package]]
751name = "zerocopy"
752version = "0.8.31"
753source = "registry+https://github.com/rust-lang/crates.io-index"
754checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
755dependencies = [
756 "zerocopy-derive",
757]
758
759[[package]]
760name = "zerocopy-derive"
761version = "0.8.31"
762source = "registry+https://github.com/rust-lang/crates.io-index"
763checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
764dependencies = [
765 "proc-macro2",
766 "quote",
767 "syn",
768]