134 version = "1.1.0" |
134 version = "1.1.0" |
135 source = "registry+https://github.com/rust-lang/crates.io-index" |
135 source = "registry+https://github.com/rust-lang/crates.io-index" |
136 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
136 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
137 |
137 |
138 [[package]] |
138 [[package]] |
|
139 name = "base64" |
|
140 version = "0.22.1" |
|
141 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
142 checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" |
|
143 |
|
144 [[package]] |
139 name = "bitflags" |
145 name = "bitflags" |
140 version = "2.4.0" |
146 version = "2.4.0" |
141 source = "registry+https://github.com/rust-lang/crates.io-index" |
147 source = "registry+https://github.com/rust-lang/crates.io-index" |
142 checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" |
148 checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" |
143 |
149 |
311 dependencies = [ |
317 dependencies = [ |
312 "memchr", |
318 "memchr", |
313 ] |
319 ] |
314 |
320 |
315 [[package]] |
321 [[package]] |
|
322 name = "darling" |
|
323 version = "0.20.10" |
|
324 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
325 checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" |
|
326 dependencies = [ |
|
327 "darling_core", |
|
328 "darling_macro", |
|
329 ] |
|
330 |
|
331 [[package]] |
|
332 name = "darling_core" |
|
333 version = "0.20.10" |
|
334 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
335 checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" |
|
336 dependencies = [ |
|
337 "fnv", |
|
338 "ident_case", |
|
339 "proc-macro2", |
|
340 "quote", |
|
341 "strsim", |
|
342 "syn 2.0.93", |
|
343 ] |
|
344 |
|
345 [[package]] |
|
346 name = "darling_macro" |
|
347 version = "0.20.10" |
|
348 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
349 checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" |
|
350 dependencies = [ |
|
351 "darling_core", |
|
352 "quote", |
|
353 "syn 2.0.93", |
|
354 ] |
|
355 |
|
356 [[package]] |
|
357 name = "deranged" |
|
358 version = "0.3.11" |
|
359 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
360 checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" |
|
361 dependencies = [ |
|
362 "powerfmt", |
|
363 "serde", |
|
364 ] |
|
365 |
|
366 [[package]] |
316 name = "either" |
367 name = "either" |
317 version = "1.13.0" |
368 version = "1.13.0" |
318 source = "registry+https://github.com/rust-lang/crates.io-index" |
369 source = "registry+https://github.com/rust-lang/crates.io-index" |
319 checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" |
370 checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" |
320 |
371 |
321 [[package]] |
372 [[package]] |
|
373 name = "equivalent" |
|
374 version = "1.0.1" |
|
375 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
376 checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" |
|
377 |
|
378 [[package]] |
322 name = "errno" |
379 name = "errno" |
323 version = "0.3.5" |
380 version = "0.3.5" |
324 source = "registry+https://github.com/rust-lang/crates.io-index" |
381 source = "registry+https://github.com/rust-lang/crates.io-index" |
325 checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" |
382 checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" |
326 dependencies = [ |
383 dependencies = [ |
347 "libc", |
410 "libc", |
348 "wasi", |
411 "wasi", |
349 ] |
412 ] |
350 |
413 |
351 [[package]] |
414 [[package]] |
|
415 name = "hashbrown" |
|
416 version = "0.12.3" |
|
417 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
418 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" |
|
419 |
|
420 [[package]] |
|
421 name = "hashbrown" |
|
422 version = "0.15.2" |
|
423 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
424 checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" |
|
425 |
|
426 [[package]] |
352 name = "heck" |
427 name = "heck" |
353 version = "0.5.0" |
428 version = "0.5.0" |
354 source = "registry+https://github.com/rust-lang/crates.io-index" |
429 source = "registry+https://github.com/rust-lang/crates.io-index" |
355 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" |
430 checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" |
|
431 |
|
432 [[package]] |
|
433 name = "hex" |
|
434 version = "0.4.3" |
|
435 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
436 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" |
356 |
437 |
357 [[package]] |
438 [[package]] |
358 name = "iana-time-zone" |
439 name = "iana-time-zone" |
359 version = "0.1.61" |
440 version = "0.1.61" |
360 source = "registry+https://github.com/rust-lang/crates.io-index" |
441 source = "registry+https://github.com/rust-lang/crates.io-index" |
373 version = "0.1.2" |
454 version = "0.1.2" |
374 source = "registry+https://github.com/rust-lang/crates.io-index" |
455 source = "registry+https://github.com/rust-lang/crates.io-index" |
375 checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" |
456 checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" |
376 dependencies = [ |
457 dependencies = [ |
377 "cc", |
458 "cc", |
|
459 ] |
|
460 |
|
461 [[package]] |
|
462 name = "ident_case" |
|
463 version = "1.0.1" |
|
464 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
465 checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" |
|
466 |
|
467 [[package]] |
|
468 name = "indexmap" |
|
469 version = "1.9.3" |
|
470 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
471 checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" |
|
472 dependencies = [ |
|
473 "autocfg", |
|
474 "hashbrown 0.12.3", |
|
475 "serde", |
|
476 ] |
|
477 |
|
478 [[package]] |
|
479 name = "indexmap" |
|
480 version = "2.7.0" |
|
481 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
482 checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f" |
|
483 dependencies = [ |
|
484 "equivalent", |
|
485 "hashbrown 0.15.2", |
|
486 "serde", |
378 ] |
487 ] |
379 |
488 |
380 [[package]] |
489 [[package]] |
381 name = "is_terminal_polyfill" |
490 name = "is_terminal_polyfill" |
382 version = "1.70.1" |
491 version = "1.70.1" |
800 "ryu", |
922 "ryu", |
801 "serde", |
923 "serde", |
802 ] |
924 ] |
803 |
925 |
804 [[package]] |
926 [[package]] |
|
927 name = "serde_with" |
|
928 version = "3.12.0" |
|
929 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
930 checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa" |
|
931 dependencies = [ |
|
932 "base64", |
|
933 "chrono", |
|
934 "hex", |
|
935 "indexmap 1.9.3", |
|
936 "indexmap 2.7.0", |
|
937 "serde", |
|
938 "serde_derive", |
|
939 "serde_json", |
|
940 "serde_with_macros", |
|
941 "time", |
|
942 ] |
|
943 |
|
944 [[package]] |
|
945 name = "serde_with_macros" |
|
946 version = "3.12.0" |
|
947 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
948 checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e" |
|
949 dependencies = [ |
|
950 "darling", |
|
951 "proc-macro2", |
|
952 "quote", |
|
953 "syn 2.0.93", |
|
954 ] |
|
955 |
|
956 [[package]] |
805 name = "shlex" |
957 name = "shlex" |
806 version = "1.3.0" |
958 version = "1.3.0" |
807 source = "registry+https://github.com/rust-lang/crates.io-index" |
959 source = "registry+https://github.com/rust-lang/crates.io-index" |
808 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" |
960 checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" |
809 |
961 |
854 source = "registry+https://github.com/rust-lang/crates.io-index" |
1006 source = "registry+https://github.com/rust-lang/crates.io-index" |
855 checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9" |
1007 checksum = "5352447f921fda68cf61b4101566c0bdb5104eff6804d0678e5227580ab6a4e9" |
856 dependencies = [ |
1008 dependencies = [ |
857 "rustix", |
1009 "rustix", |
858 "windows-sys 0.59.0", |
1010 "windows-sys 0.59.0", |
|
1011 ] |
|
1012 |
|
1013 [[package]] |
|
1014 name = "time" |
|
1015 version = "0.3.37" |
|
1016 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
1017 checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21" |
|
1018 dependencies = [ |
|
1019 "deranged", |
|
1020 "itoa", |
|
1021 "num-conv", |
|
1022 "powerfmt", |
|
1023 "serde", |
|
1024 "time-core", |
|
1025 "time-macros", |
|
1026 ] |
|
1027 |
|
1028 [[package]] |
|
1029 name = "time-core" |
|
1030 version = "0.1.2" |
|
1031 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
1032 checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" |
|
1033 |
|
1034 [[package]] |
|
1035 name = "time-macros" |
|
1036 version = "0.2.19" |
|
1037 source = "registry+https://github.com/rust-lang/crates.io-index" |
|
1038 checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de" |
|
1039 dependencies = [ |
|
1040 "num-conv", |
|
1041 "time-core", |
859 ] |
1042 ] |
860 |
1043 |
861 [[package]] |
1044 [[package]] |
862 name = "typenum" |
1045 name = "typenum" |
863 version = "1.17.0" |
1046 version = "1.17.0" |