rev. ff4feb9f09076d1c471aedfc1e0d10fb1bcd19fb
@@ -90,90 +152,152 @@
90 90 | dependencies = [
|
91 91 | "serde",
|
92 92 | "serde_json",
|
93 93 | ]
|
94 94 |
|
95 95 | [[package]]
|
96 96 | name = "async-channel"
|
97 97 | version = "1.9.0"
|
98 98 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
99 99 | checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
100 100 | dependencies = [
|
101 101 | "concurrent-queue",
|
102 102 | "event-listener 2.5.3",
|
103 103 | "futures-core",
|
104 104 | ]
|
105 105 |
|
106 106 | [[package]]
|
107 107 | name = "async-channel"
|
108 108 | version = "2.5.0"
|
109 109 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
110 110 | checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
111 111 | dependencies = [
|
112 112 | "concurrent-queue",
|
113 113 | "event-listener-strategy",
|
114 114 | "futures-core",
|
115 115 | "pin-project-lite",
|
116 116 | ]
|
117 117 |
|
118 118 | [[package]]
|
119 119 | name = "async-executor"
|
120 - | version = "1.13.3"
|
120 + | version = "1.14.0"
|
121 121 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
122 - | checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
|
122 + | checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
|
123 123 | dependencies = [
|
124 124 | "async-task",
|
125 125 | "concurrent-queue",
|
126 126 | "fastrand",
|
127 127 | "futures-lite",
|
128 128 | "pin-project-lite",
|
129 129 | "slab",
|
130 130 | ]
|
131 131 |
|
132 132 | [[package]]
|
133 133 | name = "async-global-executor"
|
134 134 | version = "2.4.1"
|
135 135 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
136 136 | checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
137 137 | dependencies = [
|
138 138 | "async-channel 2.5.0",
|
139 139 | "async-executor",
|
140 140 | "async-io",
|
141 141 | "async-lock",
|
142 142 | "blocking",
|
143 143 | "futures-lite",
|
144 144 | "once_cell",
|
145 145 | ]
|
146 146 |
|
147 147 | [[package]]
|
148 148 | name = "async-io"
|
149 149 | version = "2.6.0"
|
150 150 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
151 151 | checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
|
152 152 | dependencies = [
|
@@ -228,228 +305,305 @@
228 228 | "gloo-timers",
|
229 229 | "kv-log-macro",
|
230 230 | "log",
|
231 231 | "memchr",
|
232 232 | "once_cell",
|
233 233 | "pin-project-lite",
|
234 234 | "pin-utils",
|
235 235 | "slab",
|
236 236 | "wasm-bindgen-futures",
|
237 237 | ]
|
238 238 |
|
239 239 | [[package]]
|
240 240 | name = "async-stream"
|
241 241 | version = "0.3.6"
|
242 242 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
243 243 | checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
244 244 | dependencies = [
|
245 245 | "async-stream-impl",
|
246 246 | "futures-core",
|
247 247 | "pin-project-lite",
|
248 248 | ]
|
249 249 |
|
250 250 | [[package]]
|
251 251 | name = "async-stream-impl"
|
252 252 | version = "0.3.6"
|
253 253 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
254 254 | checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
255 255 | dependencies = [
|
256 256 | "proc-macro2",
|
257 257 | "quote",
|
258 - | "syn 2.0.115",
|
258 + | "syn 2.0.116",
|
259 259 | ]
|
260 260 |
|
261 261 | [[package]]
|
262 262 | name = "async-task"
|
263 263 | version = "4.7.1"
|
264 264 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
265 265 | checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
266 266 |
|
267 267 | [[package]]
|
268 268 | name = "async-trait"
|
269 269 | version = "0.1.89"
|
270 270 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
271 271 | checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
272 272 | dependencies = [
|
273 273 | "proc-macro2",
|
274 274 | "quote",
|
275 - | "syn 2.0.115",
|
275 + | "syn 2.0.116",
|
276 276 | ]
|
277 277 |
|
278 278 | [[package]]
|
279 279 | name = "atomic-waker"
|
280 280 | version = "1.1.2"
|
281 281 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
282 282 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
283 283 |
|
284 284 | [[package]]
|
285 285 | name = "atty"
|
286 286 | version = "0.2.14"
|
287 287 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
288 288 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
289 289 | dependencies = [
|
290 290 | "hermit-abi 0.1.19",
|
291 291 | "libc",
|
292 292 | "winapi",
|
293 293 | ]
|
294 294 |
|
295 295 | [[package]]
|
296 296 | name = "autocfg"
|
297 297 | version = "1.5.0"
|
298 298 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
299 299 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
300 300 |
|
301 301 | [[package]]
|
302 302 | name = "aws-lc-fips-sys"
|
303 303 | version = "0.13.11"
|
304 304 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
305 305 | checksum = "df6ea8e07e2df15b9f09f2ac5ee2977369b06d116f0c4eb5fa4ad443b73c7f53"
|
@@ -525,525 +585,585 @@
525 525 | "uuid",
|
526 526 | ]
|
527 527 |
|
528 528 | [[package]]
|
529 529 | name = "aws-smithy-http-server-metrics"
|
530 530 | version = "0.1.0"
|
531 531 | dependencies = [
|
532 532 | "aws-smithy-http-server",
|
533 533 | "aws-smithy-http-server-metrics-macro",
|
534 534 | "futures",
|
535 535 | "http 1.4.0",
|
536 536 | "http-body 1.0.1",
|
537 537 | "hyper 1.8.1",
|
538 538 | "metrique",
|
539 539 | "metrique-core",
|
540 540 | "metrique-writer",
|
541 541 | "metrique-writer-format-emf",
|
542 542 | "pin-project-lite",
|
543 543 | "thiserror 2.0.18",
|
544 544 | "tower 0.4.13",
|
545 545 | "tracing",
|
546 546 | "tracing-appender",
|
547 547 | ]
|
548 548 |
|
549 549 | [[package]]
|
550 550 | name = "aws-smithy-http-server-metrics-macro"
|
551 551 | version = "0.1.0"
|
552 552 | dependencies = [
|
553 553 | "proc-macro2",
|
554 554 | "quote",
|
555 - | "syn 2.0.115",
|
555 + | "syn 2.0.116",
|
556 556 | ]
|
557 557 |
|
558 558 | [[package]]
|
559 559 | name = "aws-smithy-http-server-python"
|
560 560 | version = "0.67.0"
|
561 561 | dependencies = [
|
562 562 | "aws-smithy-http",
|
563 563 | "aws-smithy-json",
|
564 564 | "aws-smithy-legacy-http-server",
|
565 565 | "aws-smithy-types",
|
566 566 | "aws-smithy-xml",
|
567 567 | "bytes",
|
568 568 | "futures",
|
569 569 | "futures-util",
|
570 570 | "http 0.2.12",
|
571 571 | "hyper 0.14.32",
|
572 572 | "hyper-rustls 0.24.2",
|
573 573 | "lambda_http 0.8.4",
|
574 574 | "num_cpus",
|
575 575 | "parking_lot",
|
576 576 | "pin-project-lite",
|
577 577 | "pretty_assertions",
|
578 578 | "pyo3",
|
579 579 | "pyo3-asyncio",
|
580 580 | "rcgen",
|
581 581 | "rustls-pemfile 1.0.4",
|
582 582 | "signal-hook",
|
583 583 | "socket2 0.5.10",
|
584 584 | "thiserror 2.0.18",
|
585 585 | "tls-listener",
|
@@ -877,877 +976,976 @@
877 877 | checksum = "0ea22880d78093b0cbe17c89f64a7d457941e65759157ec6cb31a31d652b05e5"
|
878 878 |
|
879 879 | [[package]]
|
880 880 | name = "base64"
|
881 881 | version = "0.21.7"
|
882 882 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
883 883 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
884 884 |
|
885 885 | [[package]]
|
886 886 | name = "base64"
|
887 887 | version = "0.22.1"
|
888 888 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
889 889 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
890 890 |
|
891 891 | [[package]]
|
892 892 | name = "base64-simd"
|
893 893 | version = "0.8.0"
|
894 894 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
895 895 | checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
896 896 | dependencies = [
|
897 897 | "outref",
|
898 898 | "vsimd",
|
899 899 | ]
|
900 900 |
|
901 901 | [[package]]
|
902 902 | name = "bindgen"
|
903 903 | version = "0.72.1"
|
904 904 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
905 905 | checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
906 906 | dependencies = [
|
907 - | "bitflags 2.10.0",
|
907 + | "bitflags 2.11.0",
|
908 908 | "cexpr",
|
909 909 | "clang-sys",
|
910 910 | "itertools 0.13.0",
|
911 911 | "log",
|
912 912 | "prettyplease",
|
913 913 | "proc-macro2",
|
914 914 | "quote",
|
915 915 | "regex",
|
916 916 | "rustc-hash",
|
917 917 | "shlex",
|
918 - | "syn 2.0.115",
|
918 + | "syn 2.0.116",
|
919 919 | ]
|
920 920 |
|
921 921 | [[package]]
|
922 922 | name = "bit-set"
|
923 923 | version = "0.8.0"
|
924 924 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
925 925 | checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
926 926 | dependencies = [
|
927 927 | "bit-vec",
|
928 928 | ]
|
929 929 |
|
930 930 | [[package]]
|
931 931 | name = "bit-vec"
|
932 932 | version = "0.8.0"
|
933 933 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
934 934 | checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
935 935 |
|
936 936 | [[package]]
|
937 937 | name = "bitflags"
|
938 938 | version = "1.3.2"
|
939 939 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
940 940 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
941 941 |
|
942 942 | [[package]]
|
943 943 | name = "bitflags"
|
944 - | version = "2.10.0"
|
944 + | version = "2.11.0"
|
945 945 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
946 - | checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
946 + | checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
947 947 |
|
948 948 | [[package]]
|
949 949 | name = "block-buffer"
|
950 950 | version = "0.10.4"
|
951 951 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
952 952 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
953 953 | dependencies = [
|
954 954 | "generic-array",
|
955 955 | ]
|
956 956 |
|
957 957 | [[package]]
|
958 958 | name = "blocking"
|
959 959 | version = "1.6.2"
|
960 960 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
961 961 | checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
962 962 | dependencies = [
|
963 963 | "async-channel 2.5.0",
|
964 964 | "async-task",
|
965 965 | "futures-io",
|
966 966 | "futures-lite",
|
967 967 | "piper",
|
968 968 | ]
|
969 969 |
|
970 970 | [[package]]
|
971 971 | name = "bs58"
|
972 972 | version = "0.5.1"
|
973 973 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
974 974 | checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
|
975 975 | dependencies = [
|
976 976 | "tinyvec",
|
@@ -1001,1001 +1063,1063 @@
1001 1001 | "either",
|
1002 1002 | ]
|
1003 1003 |
|
1004 1004 | [[package]]
|
1005 1005 | name = "cast"
|
1006 1006 | version = "0.3.0"
|
1007 1007 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1008 1008 | checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
1009 1009 |
|
1010 1010 | [[package]]
|
1011 1011 | name = "cbor-diag"
|
1012 1012 | version = "0.1.12"
|
1013 1013 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1014 1014 | checksum = "dc245b6ecd09b23901a4fbad1ad975701fd5061ceaef6afa93a2d70605a64429"
|
1015 1015 | dependencies = [
|
1016 1016 | "bs58",
|
1017 1017 | "chrono",
|
1018 1018 | "data-encoding",
|
1019 1019 | "half",
|
1020 1020 | "nom",
|
1021 1021 | "num-bigint",
|
1022 1022 | "num-rational",
|
1023 1023 | "num-traits",
|
1024 1024 | "separator",
|
1025 1025 | "url",
|
1026 1026 | "uuid",
|
1027 1027 | ]
|
1028 1028 |
|
1029 1029 | [[package]]
|
1030 1030 | name = "cc"
|
1031 - | version = "1.2.55"
|
1031 + | version = "1.2.56"
|
1032 1032 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033 - | checksum = "47b26a0954ae34af09b50f0de26458fa95369a0d478d8236d3f93082b219bd29"
|
1033 + | checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
|
1034 1034 | dependencies = [
|
1035 1035 | "find-msvc-tools",
|
1036 1036 | "jobserver",
|
1037 1037 | "libc",
|
1038 1038 | "shlex",
|
1039 1039 | ]
|
1040 1040 |
|
1041 1041 | [[package]]
|
1042 1042 | name = "cexpr"
|
1043 1043 | version = "0.6.0"
|
1044 1044 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045 1045 | checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
1046 1046 | dependencies = [
|
1047 1047 | "nom",
|
1048 1048 | ]
|
1049 1049 |
|
1050 1050 | [[package]]
|
1051 1051 | name = "cfg-if"
|
1052 1052 | version = "1.0.4"
|
1053 1053 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054 1054 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
1055 1055 |
|
1056 1056 | [[package]]
|
1057 1057 | name = "chrono"
|
1058 1058 | version = "0.4.43"
|
1059 1059 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1060 1060 | checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
1061 1061 | dependencies = [
|
1062 1062 | "num-traits",
|
1063 1063 | ]
|
@@ -1090,1090 +1161,1161 @@
1090 1090 | ]
|
1091 1091 |
|
1092 1092 | [[package]]
|
1093 1093 | name = "clang-sys"
|
1094 1094 | version = "1.8.1"
|
1095 1095 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1096 1096 | checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
1097 1097 | dependencies = [
|
1098 1098 | "glob",
|
1099 1099 | "libc",
|
1100 1100 | "libloading",
|
1101 1101 | ]
|
1102 1102 |
|
1103 1103 | [[package]]
|
1104 1104 | name = "clap"
|
1105 1105 | version = "3.2.25"
|
1106 1106 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1107 1107 | checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
|
1108 1108 | dependencies = [
|
1109 1109 | "atty",
|
1110 1110 | "bitflags 1.3.2",
|
1111 1111 | "clap_lex 0.2.4",
|
1112 1112 | "indexmap 1.9.3",
|
1113 1113 | "strsim 0.10.0",
|
1114 1114 | "termcolor",
|
1115 1115 | "textwrap",
|
1116 1116 | ]
|
1117 1117 |
|
1118 1118 | [[package]]
|
1119 1119 | name = "clap"
|
1120 - | version = "4.5.58"
|
1120 + | version = "4.5.59"
|
1121 1121 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1122 - | checksum = "63be97961acde393029492ce0be7a1af7e323e6bae9511ebfac33751be5e6806"
|
1122 + | checksum = "c5caf74d17c3aec5495110c34cc3f78644bfa89af6c8993ed4de2790e49b6499"
|
1123 1123 | dependencies = [
|
1124 1124 | "clap_builder",
|
1125 1125 | ]
|
1126 1126 |
|
1127 1127 | [[package]]
|
1128 1128 | name = "clap_builder"
|
1129 - | version = "4.5.58"
|
1129 + | version = "4.5.59"
|
1130 1130 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1131 - | checksum = "7f13174bda5dfd69d7e947827e5af4b0f2f94a4a3ee92912fba07a66150f21e2"
|
1131 + | checksum = "370daa45065b80218950227371916a1633217ae42b2715b2287b606dcd618e24"
|
1132 1132 | dependencies = [
|
1133 1133 | "anstyle",
|
1134 1134 | "clap_lex 1.0.0",
|
1135 1135 | ]
|
1136 1136 |
|
1137 1137 | [[package]]
|
1138 1138 | name = "clap_lex"
|
1139 1139 | version = "0.2.4"
|
1140 1140 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1141 1141 | checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
1142 1142 | dependencies = [
|
1143 1143 | "os_str_bytes",
|
1144 1144 | ]
|
1145 1145 |
|
1146 1146 | [[package]]
|
1147 1147 | name = "clap_lex"
|
1148 1148 | version = "1.0.0"
|
1149 1149 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1150 1150 | checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
|
1151 1151 |
|
1152 1152 | [[package]]
|
1153 1153 | name = "cmake"
|
1154 1154 | version = "0.1.57"
|
1155 1155 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1156 1156 | checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
1157 1157 | dependencies = [
|
1158 1158 | "cc",
|
1159 1159 | ]
|
1160 1160 |
|
1161 1161 | [[package]]
|
@@ -1220,1220 +1280,1280 @@
1220 1220 | [[package]]
|
1221 1221 | name = "crc-fast"
|
1222 1222 | version = "1.9.0"
|
1223 1223 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1224 1224 | checksum = "2fd92aca2c6001b1bf5ba0ff84ee74ec8501b52bbef0cac80bf25a6c1d87a83d"
|
1225 1225 | dependencies = [
|
1226 1226 | "crc",
|
1227 1227 | "digest",
|
1228 1228 | "rustversion",
|
1229 1229 | "spin 0.10.0",
|
1230 1230 | ]
|
1231 1231 |
|
1232 1232 | [[package]]
|
1233 1233 | name = "crc32fast"
|
1234 1234 | version = "1.5.0"
|
1235 1235 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1236 1236 | checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
1237 1237 | dependencies = [
|
1238 1238 | "cfg-if",
|
1239 1239 | ]
|
1240 1240 |
|
1241 1241 | [[package]]
|
1242 1242 | name = "criterion"
|
1243 1243 | version = "0.5.1"
|
1244 1244 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1245 1245 | checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
1246 1246 | dependencies = [
|
1247 1247 | "anes",
|
1248 1248 | "cast",
|
1249 1249 | "ciborium",
|
1250 - | "clap 4.5.58",
|
1250 + | "clap 4.5.59",
|
1251 1251 | "criterion-plot",
|
1252 1252 | "futures",
|
1253 1253 | "is-terminal",
|
1254 1254 | "itertools 0.10.5",
|
1255 1255 | "num-traits",
|
1256 1256 | "once_cell",
|
1257 1257 | "oorandom",
|
1258 1258 | "plotters",
|
1259 1259 | "rayon",
|
1260 1260 | "regex",
|
1261 1261 | "serde",
|
1262 1262 | "serde_derive",
|
1263 1263 | "serde_json",
|
1264 1264 | "tinytemplate",
|
1265 1265 | "tokio",
|
1266 1266 | "walkdir",
|
1267 1267 | ]
|
1268 1268 |
|
1269 1269 | [[package]]
|
1270 1270 | name = "criterion-plot"
|
1271 1271 | version = "0.5.0"
|
1272 1272 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1273 1273 | checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
1274 1274 | dependencies = [
|
1275 1275 | "cast",
|
1276 1276 | "itertools 0.10.5",
|
1277 1277 | ]
|
1278 1278 |
|
1279 1279 | [[package]]
|
1280 1280 | name = "critical-section"
|
@@ -1334,1334 +1514,1514 @@
1334 1334 | [[package]]
|
1335 1335 | name = "crypto-common"
|
1336 1336 | version = "0.1.7"
|
1337 1337 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1338 1338 | checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
1339 1339 | dependencies = [
|
1340 1340 | "generic-array",
|
1341 1341 | "typenum",
|
1342 1342 | ]
|
1343 1343 |
|
1344 1344 | [[package]]
|
1345 1345 | name = "darling"
|
1346 1346 | version = "0.23.0"
|
1347 1347 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1348 1348 | checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
|
1349 1349 | dependencies = [
|
1350 1350 | "darling_core",
|
1351 1351 | "darling_macro",
|
1352 1352 | ]
|
1353 1353 |
|
1354 1354 | [[package]]
|
1355 1355 | name = "darling_core"
|
1356 1356 | version = "0.23.0"
|
1357 1357 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1358 1358 | checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
|
1359 1359 | dependencies = [
|
1360 1360 | "ident_case",
|
1361 1361 | "proc-macro2",
|
1362 1362 | "quote",
|
1363 1363 | "strsim 0.11.1",
|
1364 - | "syn 2.0.115",
|
1364 + | "syn 2.0.116",
|
1365 1365 | ]
|
1366 1366 |
|
1367 1367 | [[package]]
|
1368 1368 | name = "darling_macro"
|
1369 1369 | version = "0.23.0"
|
1370 1370 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1371 1371 | checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
1372 1372 | dependencies = [
|
1373 1373 | "darling_core",
|
1374 1374 | "quote",
|
1375 - | "syn 2.0.115",
|
1375 + | "syn 2.0.116",
|
1376 1376 | ]
|
1377 1377 |
|
1378 1378 | [[package]]
|
1379 1379 | name = "data-encoding"
|
1380 1380 | version = "2.10.0"
|
1381 1381 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1382 1382 | checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
|
1383 1383 |
|
1384 1384 | [[package]]
|
1385 1385 | name = "deranged"
|
1386 1386 | version = "0.5.6"
|
1387 1387 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1388 1388 | checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4"
|
1389 1389 | dependencies = [
|
1390 1390 | "powerfmt",
|
1391 1391 | ]
|
1392 1392 |
|
1393 1393 | [[package]]
|
1394 1394 | name = "derive-where"
|
1395 1395 | version = "1.6.0"
|
1396 1396 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1397 1397 | checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
|
1398 1398 | dependencies = [
|
1399 1399 | "proc-macro2",
|
1400 1400 | "quote",
|
1401 - | "syn 2.0.115",
|
1401 + | "syn 2.0.116",
|
1402 1402 | ]
|
1403 1403 |
|
1404 1404 | [[package]]
|
1405 1405 | name = "derive_arbitrary"
|
1406 1406 | version = "1.4.2"
|
1407 1407 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1408 1408 | checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
1409 1409 | dependencies = [
|
1410 1410 | "proc-macro2",
|
1411 1411 | "quote",
|
1412 - | "syn 2.0.115",
|
1412 + | "syn 2.0.116",
|
1413 1413 | ]
|
1414 1414 |
|
1415 1415 | [[package]]
|
1416 1416 | name = "diff"
|
1417 1417 | version = "0.1.13"
|
1418 1418 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1419 1419 | checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
1420 1420 |
|
1421 1421 | [[package]]
|
1422 1422 | name = "digest"
|
1423 1423 | version = "0.10.7"
|
1424 1424 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1425 1425 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
1426 1426 | dependencies = [
|
1427 1427 | "block-buffer",
|
1428 1428 | "crypto-common",
|
1429 1429 | ]
|
1430 1430 |
|
1431 1431 | [[package]]
|
1432 1432 | name = "displaydoc"
|
1433 1433 | version = "0.2.5"
|
1434 1434 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1435 1435 | checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
1436 1436 | dependencies = [
|
1437 1437 | "proc-macro2",
|
1438 1438 | "quote",
|
1439 - | "syn 2.0.115",
|
1439 + | "syn 2.0.116",
|
1440 1440 | ]
|
1441 1441 |
|
1442 1442 | [[package]]
|
1443 1443 | name = "dtoa"
|
1444 1444 | version = "1.0.11"
|
1445 1445 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1446 1446 | checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
1447 1447 |
|
1448 1448 | [[package]]
|
1449 1449 | name = "dunce"
|
1450 1450 | version = "1.0.5"
|
1451 1451 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1452 1452 | checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
1453 1453 |
|
1454 1454 | [[package]]
|
1455 1455 | name = "either"
|
1456 1456 | version = "1.15.0"
|
1457 1457 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1458 1458 | checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
1459 1459 |
|
1460 1460 | [[package]]
|
1461 1461 | name = "encoding_rs"
|
1462 1462 | version = "0.8.35"
|
1463 1463 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1464 1464 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
1465 1465 | dependencies = [
|
1466 1466 | "cfg-if",
|
1467 1467 | ]
|
1468 1468 |
|
1469 1469 | [[package]]
|
1470 1470 | name = "endian-type"
|
1471 1471 | version = "0.1.2"
|
1472 1472 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1473 1473 | checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
|
1474 1474 |
|
1475 1475 | [[package]]
|
1476 1476 | name = "enum-as-inner"
|
1477 1477 | version = "0.6.1"
|
1478 1478 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1479 1479 | checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
|
1480 1480 | dependencies = [
|
1481 1481 | "heck 0.5.0",
|
1482 1482 | "proc-macro2",
|
1483 1483 | "quote",
|
1484 - | "syn 2.0.115",
|
1484 + | "syn 2.0.116",
|
1485 1485 | ]
|
1486 1486 |
|
1487 1487 | [[package]]
|
1488 1488 | name = "equivalent"
|
1489 1489 | version = "1.0.2"
|
1490 1490 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1491 1491 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
1492 1492 |
|
1493 1493 | [[package]]
|
1494 1494 | name = "errno"
|
1495 1495 | version = "0.3.14"
|
1496 1496 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1497 1497 | checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
1498 1498 | dependencies = [
|
1499 1499 | "libc",
|
1500 1500 | "windows-sys 0.61.2",
|
1501 1501 | ]
|
1502 1502 |
|
1503 1503 | [[package]]
|
1504 1504 | name = "event-listener"
|
1505 1505 | version = "2.5.3"
|
1506 1506 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1507 1507 | checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
1508 1508 |
|
1509 1509 | [[package]]
|
1510 1510 | name = "event-listener"
|
1511 1511 | version = "5.4.1"
|
1512 1512 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1513 1513 | checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
1514 1514 | dependencies = [
|
@@ -1557,1557 +1713,1712 @@
1557 1557 |
|
1558 1558 | [[package]]
|
1559 1559 | name = "foldhash"
|
1560 1560 | version = "0.1.5"
|
1561 1561 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1562 1562 | checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
1563 1563 |
|
1564 1564 | [[package]]
|
1565 1565 | name = "foldhash"
|
1566 1566 | version = "0.2.0"
|
1567 1567 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1568 1568 | checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
1569 1569 |
|
1570 1570 | [[package]]
|
1571 1571 | name = "form_urlencoded"
|
1572 1572 | version = "1.2.2"
|
1573 1573 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1574 1574 | checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
1575 1575 | dependencies = [
|
1576 1576 | "percent-encoding",
|
1577 1577 | ]
|
1578 1578 |
|
1579 1579 | [[package]]
|
1580 1580 | name = "fs_extra"
|
1581 1581 | version = "1.3.0"
|
1582 1582 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1583 1583 | checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
1584 1584 |
|
1585 1585 | [[package]]
|
1586 1586 | name = "futures"
|
1587 - | version = "0.3.31"
|
1587 + | version = "0.3.32"
|
1588 1588 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1589 - | checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
1589 + | checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
1590 1590 | dependencies = [
|
1591 1591 | "futures-channel",
|
1592 1592 | "futures-core",
|
1593 1593 | "futures-executor",
|
1594 1594 | "futures-io",
|
1595 1595 | "futures-sink",
|
1596 1596 | "futures-task",
|
1597 1597 | "futures-util",
|
1598 1598 | ]
|
1599 1599 |
|
1600 1600 | [[package]]
|
1601 1601 | name = "futures-channel"
|
1602 - | version = "0.3.31"
|
1602 + | version = "0.3.32"
|
1603 1603 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1604 - | checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
1604 + | checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
1605 1605 | dependencies = [
|
1606 1606 | "futures-core",
|
1607 1607 | "futures-sink",
|
1608 1608 | ]
|
1609 1609 |
|
1610 1610 | [[package]]
|
1611 1611 | name = "futures-core"
|
1612 - | version = "0.3.31"
|
1612 + | version = "0.3.32"
|
1613 1613 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1614 - | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
1614 + | checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
1615 1615 |
|
1616 1616 | [[package]]
|
1617 1617 | name = "futures-executor"
|
1618 - | version = "0.3.31"
|
1618 + | version = "0.3.32"
|
1619 1619 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1620 - | checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
1620 + | checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
1621 1621 | dependencies = [
|
1622 1622 | "futures-core",
|
1623 1623 | "futures-task",
|
1624 1624 | "futures-util",
|
1625 1625 | ]
|
1626 1626 |
|
1627 1627 | [[package]]
|
1628 1628 | name = "futures-io"
|
1629 - | version = "0.3.31"
|
1629 + | version = "0.3.32"
|
1630 1630 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1631 - | checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
1631 + | checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
1632 1632 |
|
1633 1633 | [[package]]
|
1634 1634 | name = "futures-lite"
|
1635 1635 | version = "2.6.1"
|
1636 1636 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1637 1637 | checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
1638 1638 | dependencies = [
|
1639 1639 | "fastrand",
|
1640 1640 | "futures-core",
|
1641 1641 | "futures-io",
|
1642 1642 | "parking",
|
1643 1643 | "pin-project-lite",
|
1644 1644 | ]
|
1645 1645 |
|
1646 1646 | [[package]]
|
1647 1647 | name = "futures-macro"
|
1648 - | version = "0.3.31"
|
1648 + | version = "0.3.32"
|
1649 1649 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1650 - | checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
1650 + | checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
1651 1651 | dependencies = [
|
1652 1652 | "proc-macro2",
|
1653 1653 | "quote",
|
1654 - | "syn 2.0.115",
|
1654 + | "syn 2.0.116",
|
1655 1655 | ]
|
1656 1656 |
|
1657 1657 | [[package]]
|
1658 1658 | name = "futures-sink"
|
1659 - | version = "0.3.31"
|
1659 + | version = "0.3.32"
|
1660 1660 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1661 - | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
1661 + | checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
1662 1662 |
|
1663 1663 | [[package]]
|
1664 1664 | name = "futures-task"
|
1665 - | version = "0.3.31"
|
1665 + | version = "0.3.32"
|
1666 1666 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1667 - | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
1667 + | checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
1668 1668 |
|
1669 1669 | [[package]]
|
1670 1670 | name = "futures-util"
|
1671 - | version = "0.3.31"
|
1671 + | version = "0.3.32"
|
1672 1672 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1673 - | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
1673 + | checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
1674 1674 | dependencies = [
|
1675 1675 | "futures-channel",
|
1676 1676 | "futures-core",
|
1677 1677 | "futures-io",
|
1678 1678 | "futures-macro",
|
1679 1679 | "futures-sink",
|
1680 1680 | "futures-task",
|
1681 1681 | "memchr",
|
1682 1682 | "pin-project-lite",
|
1683 - | "pin-utils",
|
1684 1683 | "slab",
|
1685 1684 | ]
|
1686 1685 |
|
1687 1686 | [[package]]
|
1688 1687 | name = "generic-array"
|
1689 1688 | version = "0.14.7"
|
1690 1689 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1691 1690 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
1692 1691 | dependencies = [
|
1693 1692 | "typenum",
|
1694 1693 | "version_check",
|
1695 1694 | ]
|
1696 1695 |
|
1697 1696 | [[package]]
|
1698 1697 | name = "getrandom"
|
1699 1698 | version = "0.2.17"
|
1700 1699 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1701 1700 | checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
1702 1701 | dependencies = [
|
1703 1702 | "cfg-if",
|
1704 1703 | "libc",
|
1705 1704 | "wasi",
|
1706 1705 | ]
|
1707 1706 |
|
1708 1707 | [[package]]
|
1709 1708 | name = "getrandom"
|
1710 1709 | version = "0.3.4"
|
1711 1710 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
1712 1711 | checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
1713 1712 | dependencies = [
|
@@ -2512,2511 +2574,2573 @@
2512 2511 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2513 2512 | checksum = "7b4873061514cb57ffb6a599b77c46c65d6d783efe9bad8fd56b7cba7f0459ef"
|
2514 2513 | dependencies = [
|
2515 2514 | "bytes",
|
2516 2515 | "futures-channel",
|
2517 2516 | "futures-util",
|
2518 2517 | "http 1.4.0",
|
2519 2518 | "http-body 1.0.1",
|
2520 2519 | "http-body-util",
|
2521 2520 | "hyper 1.8.1",
|
2522 2521 | "hyper-util",
|
2523 2522 | "tower 0.5.3",
|
2524 2523 | "tracing",
|
2525 2524 | "tracing-subscriber",
|
2526 2525 | ]
|
2527 2526 |
|
2528 2527 | [[package]]
|
2529 2528 | name = "lazy_static"
|
2530 2529 | version = "1.5.0"
|
2531 2530 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2532 2531 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
2533 2532 |
|
2534 2533 | [[package]]
|
2535 2534 | name = "leb128fmt"
|
2536 2535 | version = "0.1.0"
|
2537 2536 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2538 2537 | checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
2539 2538 |
|
2540 2539 | [[package]]
|
2541 2540 | name = "libc"
|
2542 - | version = "0.2.181"
|
2541 + | version = "0.2.182"
|
2543 2542 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2544 - | checksum = "459427e2af2b9c839b132acb702a1c654d95e10f8c326bfc2ad11310e458b1c5"
|
2543 + | checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
|
2545 2544 |
|
2546 2545 | [[package]]
|
2547 2546 | name = "libloading"
|
2548 2547 | version = "0.8.9"
|
2549 2548 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2550 2549 | checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
2551 2550 | dependencies = [
|
2552 2551 | "cfg-if",
|
2553 2552 | "windows-link",
|
2554 2553 | ]
|
2555 2554 |
|
2556 2555 | [[package]]
|
2557 2556 | name = "libmimalloc-sys"
|
2558 2557 | version = "0.1.44"
|
2559 2558 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2560 2559 | checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
|
2561 2560 | dependencies = [
|
2562 2561 | "cc",
|
2563 2562 | "libc",
|
2564 2563 | ]
|
2565 2564 |
|
2566 2565 | [[package]]
|
2567 2566 | name = "linux-raw-sys"
|
2568 2567 | version = "0.11.0"
|
2569 2568 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2570 2569 | checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
2571 2570 |
|
2572 2571 | [[package]]
|
2573 2572 | name = "litemap"
|
2574 2573 | version = "0.8.1"
|
@@ -2632,2631 +2728,2727 @@
2632 2631 | version = "0.24.3"
|
2633 2632 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2634 2633 | checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8"
|
2635 2634 | dependencies = [
|
2636 2635 | "ahash",
|
2637 2636 | "portable-atomic",
|
2638 2637 | ]
|
2639 2638 |
|
2640 2639 | [[package]]
|
2641 2640 | name = "metrics-util"
|
2642 2641 | version = "0.20.1"
|
2643 2642 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2644 2643 | checksum = "cdfb1365fea27e6dd9dc1dbc19f570198bc86914533ad639dae939635f096be4"
|
2645 2644 | dependencies = [
|
2646 2645 | "aho-corasick",
|
2647 2646 | "crossbeam-epoch",
|
2648 2647 | "crossbeam-utils",
|
2649 2648 | "hashbrown 0.16.1",
|
2650 2649 | "indexmap 2.13.0",
|
2651 2650 | "metrics",
|
2652 2651 | "ordered-float",
|
2653 2652 | "quanta",
|
2654 2653 | "radix_trie",
|
2655 2654 | "rand 0.9.2",
|
2656 2655 | "rand_xoshiro",
|
2657 2656 | "sketches-ddsketch",
|
2658 2657 | ]
|
2659 2658 |
|
2660 2659 | [[package]]
|
2661 2660 | name = "metrique"
|
2662 - | version = "0.1.17"
|
2661 + | version = "0.1.18"
|
2663 2662 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2664 - | checksum = "55fcaaef5a6f31a84c475a1e7c1c8287919cd7b8ae530975b700045770a47b65"
|
2663 + | checksum = "5d867de1910e3bbe942e35bbc7a49a9b9b64df4037a04c9709f5774b096c5512"
|
2665 2664 | dependencies = [
|
2666 2665 | "itoa",
|
2667 2666 | "metrique-core",
|
2668 2667 | "metrique-macro",
|
2669 2668 | "metrique-service-metrics",
|
2670 2669 | "metrique-timesource",
|
2671 2670 | "metrique-writer",
|
2672 2671 | "metrique-writer-core",
|
2673 2672 | "metrique-writer-macro",
|
2674 2673 | "ryu",
|
2675 2674 | "tokio",
|
2676 2675 | ]
|
2677 2676 |
|
2678 2677 | [[package]]
|
2679 2678 | name = "metrique-core"
|
2680 2679 | version = "0.1.15"
|
2681 2680 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2682 2681 | checksum = "e562ac1a9ac36b70a72a6150f438d2f3244a9c620fd347e10dcab2aff438034d"
|
2683 2682 | dependencies = [
|
2684 2683 | "itertools 0.14.0",
|
2685 2684 | "metrique-writer-core",
|
2686 2685 | ]
|
2687 2686 |
|
2688 2687 | [[package]]
|
2689 2688 | name = "metrique-macro"
|
2690 2689 | version = "0.1.13"
|
2691 2690 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2692 2691 | checksum = "dc321bc5590bb84e8b409a6b17d0f9e1163922ee141d15c4a1e6ef265079974a"
|
2693 2692 | dependencies = [
|
2694 2693 | "Inflector",
|
2695 2694 | "darling",
|
2696 2695 | "proc-macro2",
|
2697 2696 | "quote",
|
2698 - | "syn 2.0.115",
|
2697 + | "syn 2.0.116",
|
2699 2698 | ]
|
2700 2699 |
|
2701 2700 | [[package]]
|
2702 2701 | name = "metrique-service-metrics"
|
2703 2702 | version = "0.1.16"
|
2704 2703 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2705 2704 | checksum = "afa56455dfd6985bbd545214e001760e86cab670aab453787d51aa7dfb59f3ac"
|
2706 2705 | dependencies = [
|
2707 2706 | "metrique-writer",
|
2708 2707 | ]
|
2709 2708 |
|
2710 2709 | [[package]]
|
2711 2710 | name = "metrique-timesource"
|
2712 2711 | version = "0.1.7"
|
2713 2712 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2714 2713 | checksum = "12e2ae3b29adb641908746d579092b1d882194e00feeb9e62679287feb3f6bbf"
|
2715 2714 |
|
2716 2715 | [[package]]
|
2717 2716 | name = "metrique-writer"
|
2718 2717 | version = "0.1.17"
|
2719 2718 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2720 2719 | checksum = "a5afcedea6aafd59e4583ceab505495160ac0e6c33082dd4933261c6bbfe9dd4"
|
2721 2720 | dependencies = [
|
2722 2721 | "ahash",
|
2723 2722 | "crossbeam-queue",
|
2724 2723 | "crossbeam-utils",
|
2725 2724 | "metrics",
|
2726 2725 | "metrics-util",
|
2727 2726 | "metrique-core",
|
2728 2727 | "metrique-writer-core",
|
@@ -2749,2748 +2846,2845 @@
2749 2748 | [[package]]
|
2750 2749 | name = "metrique-writer-format-emf"
|
2751 2750 | version = "0.1.16"
|
2752 2751 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2753 2752 | checksum = "3377543efa39fc04a8cf88abc307dba9f4ecae985776ee83dec4ca76f477743e"
|
2754 2753 | dependencies = [
|
2755 2754 | "bit-set",
|
2756 2755 | "dtoa",
|
2757 2756 | "hashbrown 0.16.1",
|
2758 2757 | "itertools 0.14.0",
|
2759 2758 | "itoa",
|
2760 2759 | "metrique-writer",
|
2761 2760 | "metrique-writer-core",
|
2762 2761 | "rand 0.9.2",
|
2763 2762 | "serde",
|
2764 2763 | "serde_json",
|
2765 2764 | "smallvec",
|
2766 2765 | "tracing",
|
2767 2766 | ]
|
2768 2767 |
|
2769 2768 | [[package]]
|
2770 2769 | name = "metrique-writer-macro"
|
2771 2770 | version = "0.1.7"
|
2772 2771 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2773 2772 | checksum = "12edafee41e67f90ab2efe2b850e10751f0da3da4aeb61b8eb7e6c31666e8da8"
|
2774 2773 | dependencies = [
|
2775 2774 | "darling",
|
2776 2775 | "proc-macro2",
|
2777 2776 | "quote",
|
2778 2777 | "str_inflector",
|
2779 - | "syn 2.0.115",
|
2778 + | "syn 2.0.116",
|
2780 2779 | "synstructure",
|
2781 2780 | ]
|
2782 2781 |
|
2783 2782 | [[package]]
|
2784 2783 | name = "mimalloc"
|
2785 2784 | version = "0.1.48"
|
2786 2785 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2787 2786 | checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
|
2788 2787 | dependencies = [
|
2789 2788 | "libmimalloc-sys",
|
2790 2789 | ]
|
2791 2790 |
|
2792 2791 | [[package]]
|
2793 2792 | name = "mime"
|
2794 2793 | version = "0.3.17"
|
2795 2794 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2796 2795 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
2797 2796 |
|
2798 2797 | [[package]]
|
2799 2798 | name = "minicbor"
|
2800 - | version = "0.24.4"
|
2799 + | version = "0.24.2"
|
2801 2800 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2802 - | checksum = "29be4f60e41fde478b36998b88821946aafac540e53591e76db53921a0cc225b"
|
2801 + | checksum = "5f8e213c36148d828083ae01948eed271d03f95f7e72571fa242d78184029af2"
|
2803 2802 | dependencies = [
|
2804 2803 | "half",
|
2805 2804 | "minicbor-derive",
|
2806 2805 | ]
|
2807 2806 |
|
2808 2807 | [[package]]
|
2809 2808 | name = "minicbor-derive"
|
2810 2809 | version = "0.15.3"
|
2811 2810 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2812 2811 | checksum = "bd2209fff77f705b00c737016a48e73733d7fbccb8b007194db148f03561fb70"
|
2813 2812 | dependencies = [
|
2814 2813 | "proc-macro2",
|
2815 2814 | "quote",
|
2816 - | "syn 2.0.115",
|
2815 + | "syn 2.0.116",
|
2817 2816 | ]
|
2818 2817 |
|
2819 2818 | [[package]]
|
2820 2819 | name = "minimal-lexical"
|
2821 2820 | version = "0.2.1"
|
2822 2821 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2823 2822 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
2824 2823 |
|
2825 2824 | [[package]]
|
2826 2825 | name = "miniz_oxide"
|
2827 2826 | version = "0.8.9"
|
2828 2827 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2829 2828 | checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
2830 2829 | dependencies = [
|
2831 2830 | "adler2",
|
2832 2831 | "simd-adler32",
|
2833 2832 | ]
|
2834 2833 |
|
2835 2834 | [[package]]
|
2836 2835 | name = "mio"
|
2837 2836 | version = "1.1.1"
|
2838 2837 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
2839 2838 | checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
2840 2839 | dependencies = [
|
2841 2840 | "libc",
|
2842 2841 | "wasi",
|
2843 2842 | "windows-sys 0.61.2",
|
2844 2843 | ]
|
2845 2844 |
|
2846 2845 | [[package]]
|
@@ -3062,3061 +3122,3121 @@
3062 3061 | version = "1.1.1"
|
3063 3062 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3064 3063 | checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
|
3065 3064 | dependencies = [
|
3066 3065 | "base64 0.13.1",
|
3067 3066 | ]
|
3068 3067 |
|
3069 3068 | [[package]]
|
3070 3069 | name = "percent-encoding"
|
3071 3070 | version = "2.3.2"
|
3072 3071 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3073 3072 | checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
3074 3073 |
|
3075 3074 | [[package]]
|
3076 3075 | name = "pin-project"
|
3077 3076 | version = "1.1.10"
|
3078 3077 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3079 3078 | checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
3080 3079 | dependencies = [
|
3081 3080 | "pin-project-internal",
|
3082 3081 | ]
|
3083 3082 |
|
3084 3083 | [[package]]
|
3085 3084 | name = "pin-project-internal"
|
3086 3085 | version = "1.1.10"
|
3087 3086 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3088 3087 | checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
3089 3088 | dependencies = [
|
3090 3089 | "proc-macro2",
|
3091 3090 | "quote",
|
3092 - | "syn 2.0.115",
|
3091 + | "syn 2.0.116",
|
3093 3092 | ]
|
3094 3093 |
|
3095 3094 | [[package]]
|
3096 3095 | name = "pin-project-lite"
|
3097 3096 | version = "0.2.16"
|
3098 3097 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3099 3098 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
3100 3099 |
|
3101 3100 | [[package]]
|
3102 3101 | name = "pin-utils"
|
3103 3102 | version = "0.1.0"
|
3104 3103 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3105 3104 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
3106 3105 |
|
3107 3106 | [[package]]
|
3108 3107 | name = "piper"
|
3109 3108 | version = "0.2.4"
|
3110 3109 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3111 3110 | checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
3112 3111 | dependencies = [
|
3113 3112 | "atomic-waker",
|
3114 3113 | "fastrand",
|
3115 3114 | "futures-io",
|
3116 3115 | ]
|
3117 3116 |
|
3118 3117 | [[package]]
|
3119 3118 | name = "plotters"
|
3120 3119 | version = "0.3.7"
|
3121 3120 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3122 3121 | checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
@@ -3177,3176 +3257,3256 @@
3177 3176 | version = "0.2.0"
|
3178 3177 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3179 3178 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
3180 3179 |
|
3181 3180 | [[package]]
|
3182 3181 | name = "ppv-lite86"
|
3183 3182 | version = "0.2.21"
|
3184 3183 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3185 3184 | checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
3186 3185 | dependencies = [
|
3187 3186 | "zerocopy",
|
3188 3187 | ]
|
3189 3188 |
|
3190 3189 | [[package]]
|
3191 3190 | name = "pretty_assertions"
|
3192 3191 | version = "1.4.1"
|
3193 3192 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3194 3193 | checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
3195 3194 | dependencies = [
|
3196 3195 | "diff",
|
3197 3196 | "yansi",
|
3198 3197 | ]
|
3199 3198 |
|
3200 3199 | [[package]]
|
3201 3200 | name = "prettyplease"
|
3202 3201 | version = "0.2.37"
|
3203 3202 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3204 3203 | checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
3205 3204 | dependencies = [
|
3206 3205 | "proc-macro2",
|
3207 - | "syn 2.0.115",
|
3206 + | "syn 2.0.116",
|
3208 3207 | ]
|
3209 3208 |
|
3210 3209 | [[package]]
|
3211 3210 | name = "proc-macro2"
|
3212 3211 | version = "1.0.106"
|
3213 3212 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3214 3213 | checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
3215 3214 | dependencies = [
|
3216 3215 | "unicode-ident",
|
3217 3216 | ]
|
3218 3217 |
|
3219 3218 | [[package]]
|
3220 3219 | name = "proptest"
|
3221 3220 | version = "1.10.0"
|
3222 3221 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3223 3222 | checksum = "37566cb3fdacef14c0737f9546df7cfeadbfbc9fef10991038bf5015d0c80532"
|
3224 3223 | dependencies = [
|
3225 3224 | "bit-set",
|
3226 3225 | "bit-vec",
|
3227 - | "bitflags 2.10.0",
|
3226 + | "bitflags 2.11.0",
|
3228 3227 | "num-traits",
|
3229 3228 | "rand 0.9.2",
|
3230 3229 | "rand_chacha 0.9.0",
|
3231 3230 | "rand_xorshift",
|
3232 3231 | "regex-syntax",
|
3233 3232 | "rusty-fork",
|
3234 3233 | "tempfile",
|
3235 3234 | "unarray",
|
3236 3235 | ]
|
3237 3236 |
|
3238 3237 | [[package]]
|
3239 3238 | name = "pyo3"
|
3240 3239 | version = "0.20.3"
|
3241 3240 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3242 3241 | checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
|
3243 3242 | dependencies = [
|
3244 3243 | "cfg-if",
|
3245 3244 | "indoc",
|
3246 3245 | "libc",
|
3247 3246 | "memoffset",
|
3248 3247 | "parking_lot",
|
3249 3248 | "portable-atomic",
|
3250 3249 | "pyo3-build-config",
|
3251 3250 | "pyo3-ffi",
|
3252 3251 | "pyo3-macros",
|
3253 3252 | "unindent",
|
3254 3253 | ]
|
3255 3254 |
|
3256 3255 | [[package]]
|
3257 3256 | name = "pyo3-asyncio"
|
@@ -3283,3282 +3356,3355 @@
3283 3282 |
|
3284 3283 | [[package]]
|
3285 3284 | name = "pyo3-build-config"
|
3286 3285 | version = "0.20.3"
|
3287 3286 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3288 3287 | checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
3289 3288 | dependencies = [
|
3290 3289 | "once_cell",
|
3291 3290 | "target-lexicon",
|
3292 3291 | ]
|
3293 3292 |
|
3294 3293 | [[package]]
|
3295 3294 | name = "pyo3-ffi"
|
3296 3295 | version = "0.20.3"
|
3297 3296 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3298 3297 | checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
3299 3298 | dependencies = [
|
3300 3299 | "libc",
|
3301 3300 | "pyo3-build-config",
|
3302 3301 | ]
|
3303 3302 |
|
3304 3303 | [[package]]
|
3305 3304 | name = "pyo3-macros"
|
3306 3305 | version = "0.20.3"
|
3307 3306 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3308 3307 | checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
|
3309 3308 | dependencies = [
|
3310 3309 | "proc-macro2",
|
3311 3310 | "pyo3-macros-backend",
|
3312 3311 | "quote",
|
3313 - | "syn 2.0.115",
|
3312 + | "syn 2.0.116",
|
3314 3313 | ]
|
3315 3314 |
|
3316 3315 | [[package]]
|
3317 3316 | name = "pyo3-macros-backend"
|
3318 3317 | version = "0.20.3"
|
3319 3318 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3320 3319 | checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
3321 3320 | dependencies = [
|
3322 3321 | "heck 0.4.1",
|
3323 3322 | "proc-macro2",
|
3324 3323 | "pyo3-build-config",
|
3325 3324 | "quote",
|
3326 - | "syn 2.0.115",
|
3325 + | "syn 2.0.116",
|
3327 3326 | ]
|
3328 3327 |
|
3329 3328 | [[package]]
|
3330 3329 | name = "quanta"
|
3331 3330 | version = "0.12.6"
|
3332 3331 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3333 3332 | checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
|
3334 3333 | dependencies = [
|
3335 3334 | "crossbeam-utils",
|
3336 3335 | "libc",
|
3337 3336 | "once_cell",
|
3338 3337 | "raw-cpuid",
|
3339 3338 | "wasi",
|
3340 3339 | "web-sys",
|
3341 3340 | "winapi",
|
3342 3341 | ]
|
3343 3342 |
|
3344 3343 | [[package]]
|
3345 3344 | name = "query_map"
|
3346 3345 | version = "0.7.0"
|
3347 3346 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3348 3347 | checksum = "5eab6b8b1074ef3359a863758dae650c7c0c6027927a085b7af911c8e0bf3a15"
|
3349 3348 | dependencies = [
|
3350 3349 | "form_urlencoded",
|
3351 3350 | "serde",
|
3352 3351 | "serde_derive",
|
3353 3352 | ]
|
3354 3353 |
|
3355 3354 | [[package]]
|
3356 3355 | name = "quick-error"
|
@@ -3439,3438 +3540,3539 @@
3439 3438 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3440 3439 | checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
3441 3440 | dependencies = [
|
3442 3441 | "getrandom 0.3.4",
|
3443 3442 | ]
|
3444 3443 |
|
3445 3444 | [[package]]
|
3446 3445 | name = "rand_xorshift"
|
3447 3446 | version = "0.4.0"
|
3448 3447 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3449 3448 | checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
3450 3449 | dependencies = [
|
3451 3450 | "rand_core 0.9.5",
|
3452 3451 | ]
|
3453 3452 |
|
3454 3453 | [[package]]
|
3455 3454 | name = "rand_xoshiro"
|
3456 3455 | version = "0.7.0"
|
3457 3456 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3458 3457 | checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
|
3459 3458 | dependencies = [
|
3460 3459 | "rand_core 0.9.5",
|
3461 3460 | ]
|
3462 3461 |
|
3463 3462 | [[package]]
|
3464 3463 | name = "raw-cpuid"
|
3465 3464 | version = "11.6.0"
|
3466 3465 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3467 3466 | checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
|
3468 3467 | dependencies = [
|
3469 - | "bitflags 2.10.0",
|
3468 + | "bitflags 2.11.0",
|
3470 3469 | ]
|
3471 3470 |
|
3472 3471 | [[package]]
|
3473 3472 | name = "rayon"
|
3474 3473 | version = "1.11.0"
|
3475 3474 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3476 3475 | checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
3477 3476 | dependencies = [
|
3478 3477 | "either",
|
3479 3478 | "rayon-core",
|
3480 3479 | ]
|
3481 3480 |
|
3482 3481 | [[package]]
|
3483 3482 | name = "rayon-core"
|
3484 3483 | version = "1.13.0"
|
3485 3484 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3486 3485 | checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
3487 3486 | dependencies = [
|
3488 3487 | "crossbeam-deque",
|
3489 3488 | "crossbeam-utils",
|
3490 3489 | ]
|
3491 3490 |
|
3492 3491 | [[package]]
|
3493 3492 | name = "rcgen"
|
3494 3493 | version = "0.10.0"
|
3495 3494 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3496 3495 | checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b"
|
3497 3496 | dependencies = [
|
3498 3497 | "pem",
|
3499 3498 | "ring 0.16.20",
|
3500 3499 | "time",
|
3501 3500 | "yasna",
|
3502 3501 | ]
|
3503 3502 |
|
3504 3503 | [[package]]
|
3505 3504 | name = "redox_syscall"
|
3506 3505 | version = "0.5.18"
|
3507 3506 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3508 3507 | checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
3509 3508 | dependencies = [
|
3510 - | "bitflags 2.10.0",
|
3509 + | "bitflags 2.11.0",
|
3511 3510 | ]
|
3512 3511 |
|
3513 3512 | [[package]]
|
3514 3513 | name = "regex"
|
3515 3514 | version = "1.12.3"
|
3516 3515 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3517 3516 | checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
3518 3517 | dependencies = [
|
3519 3518 | "aho-corasick",
|
3520 3519 | "memchr",
|
3521 3520 | "regex-automata",
|
3522 3521 | "regex-syntax",
|
3523 3522 | ]
|
3524 3523 |
|
3525 3524 | [[package]]
|
3526 3525 | name = "regex-automata"
|
3527 3526 | version = "0.4.14"
|
3528 3527 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3529 3528 | checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
3530 3529 | dependencies = [
|
3531 3530 | "aho-corasick",
|
3532 3531 | "memchr",
|
3533 3532 | "regex-syntax",
|
3534 3533 | ]
|
3535 3534 |
|
3536 3535 | [[package]]
|
3537 3536 | name = "regex-lite"
|
3538 3537 | version = "0.1.9"
|
3539 3538 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3540 3539 | checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
|
@@ -3574,3573 +3690,3689 @@
3574 3573 | dependencies = [
|
3575 3574 | "cc",
|
3576 3575 | "cfg-if",
|
3577 3576 | "getrandom 0.2.17",
|
3578 3577 | "libc",
|
3579 3578 | "untrusted 0.9.0",
|
3580 3579 | "windows-sys 0.52.0",
|
3581 3580 | ]
|
3582 3581 |
|
3583 3582 | [[package]]
|
3584 3583 | name = "roxmltree"
|
3585 3584 | version = "0.14.1"
|
3586 3585 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3587 3586 | checksum = "921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b"
|
3588 3587 | dependencies = [
|
3589 3588 | "xmlparser",
|
3590 3589 | ]
|
3591 3590 |
|
3592 3591 | [[package]]
|
3593 3592 | name = "rustc-hash"
|
3594 3593 | version = "2.1.1"
|
3595 3594 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3596 3595 | checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
3597 3596 |
|
3598 3597 | [[package]]
|
3599 3598 | name = "rustix"
|
3600 3599 | version = "1.1.3"
|
3601 3600 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3602 3601 | checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
3603 3602 | dependencies = [
|
3604 - | "bitflags 2.10.0",
|
3603 + | "bitflags 2.11.0",
|
3605 3604 | "errno",
|
3606 3605 | "libc",
|
3607 3606 | "linux-raw-sys",
|
3608 3607 | "windows-sys 0.61.2",
|
3609 3608 | ]
|
3610 3609 |
|
3611 3610 | [[package]]
|
3612 3611 | name = "rustls"
|
3613 3612 | version = "0.21.12"
|
3614 3613 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3615 3614 | checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
3616 3615 | dependencies = [
|
3617 3616 | "log",
|
3618 3617 | "ring 0.17.14",
|
3619 3618 | "rustls-webpki 0.101.7",
|
3620 3619 | "sct",
|
3621 3620 | ]
|
3622 3621 |
|
3623 3622 | [[package]]
|
3624 3623 | name = "rustls"
|
3625 3624 | version = "0.23.36"
|
3626 3625 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3627 3626 | checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
3628 3627 | dependencies = [
|
3629 3628 | "aws-lc-rs",
|
3630 3629 | "log",
|
3631 3630 | "once_cell",
|
3632 3631 | "ring 0.17.14",
|
3633 3632 | "rustls-pki-types",
|
3634 3633 | "rustls-webpki 0.103.9",
|
3635 3634 | "subtle",
|
3636 3635 | "zeroize",
|
3637 3636 | ]
|
3638 3637 |
|
3639 3638 | [[package]]
|
3640 3639 | name = "rustls-native-certs"
|
3641 3640 | version = "0.6.3"
|
3642 3641 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3643 3642 | checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
|
3644 3643 | dependencies = [
|
3645 3644 | "openssl-probe 0.1.6",
|
3646 3645 | "rustls-pemfile 1.0.4",
|
3647 3646 | "schannel",
|
3648 3647 | "security-framework 2.11.1",
|
3649 3648 | ]
|
3650 3649 |
|
3651 3650 | [[package]]
|
3652 3651 | name = "rustls-native-certs"
|
3653 3652 | version = "0.8.3"
|
3654 3653 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3655 3654 | checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
3656 3655 | dependencies = [
|
3657 3656 | "openssl-probe 0.2.1",
|
3658 3657 | "rustls-pki-types",
|
3659 3658 | "schannel",
|
3660 - | "security-framework 3.5.1",
|
3659 + | "security-framework 3.6.0",
|
3661 3660 | ]
|
3662 3661 |
|
3663 3662 | [[package]]
|
3664 3663 | name = "rustls-pemfile"
|
3665 3664 | version = "1.0.4"
|
3666 3665 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3667 3666 | checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
3668 3667 | dependencies = [
|
3669 3668 | "base64 0.21.7",
|
3670 3669 | ]
|
3671 3670 |
|
3672 3671 | [[package]]
|
3673 3672 | name = "rustls-pemfile"
|
3674 3673 | version = "2.2.0"
|
3675 3674 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3676 3675 | checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
3677 3676 | dependencies = [
|
3678 3677 | "rustls-pki-types",
|
3679 3678 | ]
|
3680 3679 |
|
3681 3680 | [[package]]
|
3682 3681 | name = "rustls-pki-types"
|
3683 3682 | version = "1.14.0"
|
3684 3683 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3685 3684 | checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
3686 3685 | dependencies = [
|
3687 3686 | "zeroize",
|
3688 3687 | ]
|
3689 3688 |
|
3690 3689 | [[package]]
|
@@ -3812,3811 +3941,3940 @@
3812 3811 | ]
|
3813 3812 |
|
3814 3813 | [[package]]
|
3815 3814 | name = "scopeguard"
|
3816 3815 | version = "1.2.0"
|
3817 3816 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3818 3817 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
3819 3818 |
|
3820 3819 | [[package]]
|
3821 3820 | name = "sct"
|
3822 3821 | version = "0.7.1"
|
3823 3822 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3824 3823 | checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
3825 3824 | dependencies = [
|
3826 3825 | "ring 0.17.14",
|
3827 3826 | "untrusted 0.9.0",
|
3828 3827 | ]
|
3829 3828 |
|
3830 3829 | [[package]]
|
3831 3830 | name = "sdd"
|
3832 3831 | version = "3.0.10"
|
3833 3832 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3834 3833 | checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
3835 3834 |
|
3836 3835 | [[package]]
|
3837 3836 | name = "security-framework"
|
3838 3837 | version = "2.11.1"
|
3839 3838 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3840 3839 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
3841 3840 | dependencies = [
|
3842 - | "bitflags 2.10.0",
|
3841 + | "bitflags 2.11.0",
|
3843 3842 | "core-foundation 0.9.4",
|
3844 3843 | "core-foundation-sys",
|
3845 3844 | "libc",
|
3846 3845 | "security-framework-sys",
|
3847 3846 | ]
|
3848 3847 |
|
3849 3848 | [[package]]
|
3850 3849 | name = "security-framework"
|
3851 - | version = "3.5.1"
|
3850 + | version = "3.6.0"
|
3852 3851 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3853 - | checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
3852 + | checksum = "d17b898a6d6948c3a8ee4372c17cb384f90d2e6e912ef00895b14fd7ab54ec38"
|
3854 3853 | dependencies = [
|
3855 - | "bitflags 2.10.0",
|
3854 + | "bitflags 2.11.0",
|
3856 3855 | "core-foundation 0.10.1",
|
3857 3856 | "core-foundation-sys",
|
3858 3857 | "libc",
|
3859 3858 | "security-framework-sys",
|
3860 3859 | ]
|
3861 3860 |
|
3862 3861 | [[package]]
|
3863 3862 | name = "security-framework-sys"
|
3864 - | version = "2.15.0"
|
3863 + | version = "2.16.0"
|
3865 3864 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3866 - | checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
3865 + | checksum = "321c8673b092a9a42605034a9879d73cb79101ed5fd117bc9a597b89b4e9e61a"
|
3867 3866 | dependencies = [
|
3868 3867 | "core-foundation-sys",
|
3869 3868 | "libc",
|
3870 3869 | ]
|
3871 3870 |
|
3872 3871 | [[package]]
|
3873 3872 | name = "semver"
|
3874 3873 | version = "1.0.27"
|
3875 3874 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3876 3875 | checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
3877 3876 |
|
3878 3877 | [[package]]
|
3879 3878 | name = "separator"
|
3880 3879 | version = "0.4.1"
|
3881 3880 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3882 3881 | checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5"
|
3883 3882 |
|
3884 3883 | [[package]]
|
3885 3884 | name = "serde"
|
3886 3885 | version = "1.0.228"
|
3887 3886 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3888 3887 | checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
3889 3888 | dependencies = [
|
3890 3889 | "serde_core",
|
3891 3890 | "serde_derive",
|
3892 3891 | ]
|
3893 3892 |
|
3894 3893 | [[package]]
|
3895 3894 | name = "serde_core"
|
3896 3895 | version = "1.0.228"
|
3897 3896 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3898 3897 | checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
3899 3898 | dependencies = [
|
3900 3899 | "serde_derive",
|
3901 3900 | ]
|
3902 3901 |
|
3903 3902 | [[package]]
|
3904 3903 | name = "serde_derive"
|
3905 3904 | version = "1.0.228"
|
3906 3905 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3907 3906 | checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
3908 3907 | dependencies = [
|
3909 3908 | "proc-macro2",
|
3910 3909 | "quote",
|
3911 - | "syn 2.0.115",
|
3910 + | "syn 2.0.116",
|
3912 3911 | ]
|
3913 3912 |
|
3914 3913 | [[package]]
|
3915 3914 | name = "serde_json"
|
3916 3915 | version = "1.0.146"
|
3917 3916 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3918 3917 | checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8"
|
3919 3918 | dependencies = [
|
3920 3919 | "indexmap 2.13.0",
|
3921 3920 | "itoa",
|
3922 3921 | "memchr",
|
3923 3922 | "ryu",
|
3924 3923 | "serde",
|
3925 3924 | "serde_core",
|
3926 3925 | ]
|
3927 3926 |
|
3928 3927 | [[package]]
|
3929 3928 | name = "serde_path_to_error"
|
3930 3929 | version = "0.1.20"
|
3931 3930 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3932 3931 | checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
3933 3932 | dependencies = [
|
3934 3933 | "itoa",
|
3935 3934 | "serde",
|
3936 3935 | "serde_core",
|
3937 3936 | ]
|
3938 3937 |
|
3939 3938 | [[package]]
|
3940 3939 | name = "serde_urlencoded"
|
3941 3940 | version = "0.7.1"
|
@@ -3944,3943 +4004,4003 @@
3944 3943 | dependencies = [
|
3945 3944 | "form_urlencoded",
|
3946 3945 | "itoa",
|
3947 3946 | "ryu",
|
3948 3947 | "serde",
|
3949 3948 | ]
|
3950 3949 |
|
3951 3950 | [[package]]
|
3952 3951 | name = "serial_test"
|
3953 3952 | version = "3.3.1"
|
3954 3953 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3955 3954 | checksum = "0d0b343e184fc3b7bb44dff0705fffcf4b3756ba6aff420dddd8b24ca145e555"
|
3956 3955 | dependencies = [
|
3957 3956 | "futures-executor",
|
3958 3957 | "futures-util",
|
3959 3958 | "log",
|
3960 3959 | "once_cell",
|
3961 3960 | "parking_lot",
|
3962 3961 | "scc",
|
3963 3962 | "serial_test_derive",
|
3964 3963 | ]
|
3965 3964 |
|
3966 3965 | [[package]]
|
3967 3966 | name = "serial_test_derive"
|
3968 3967 | version = "3.3.1"
|
3969 3968 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3970 3969 | checksum = "6f50427f258fb77356e4cd4aa0e87e2bd2c66dbcee41dc405282cae2bfc26c83"
|
3971 3970 | dependencies = [
|
3972 3971 | "proc-macro2",
|
3973 3972 | "quote",
|
3974 - | "syn 2.0.115",
|
3973 + | "syn 2.0.116",
|
3975 3974 | ]
|
3976 3975 |
|
3977 3976 | [[package]]
|
3978 3977 | name = "sha1"
|
3979 3978 | version = "0.10.6"
|
3980 3979 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3981 3980 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
3982 3981 | dependencies = [
|
3983 3982 | "cfg-if",
|
3984 3983 | "cpufeatures",
|
3985 3984 | "digest",
|
3986 3985 | ]
|
3987 3986 |
|
3988 3987 | [[package]]
|
3989 3988 | name = "sha2"
|
3990 3989 | version = "0.10.9"
|
3991 3990 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
3992 3991 | checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
3993 3992 | dependencies = [
|
3994 3993 | "cfg-if",
|
3995 3994 | "cpufeatures",
|
3996 3995 | "digest",
|
3997 3996 | ]
|
3998 3997 |
|
3999 3998 | [[package]]
|
4000 3999 | name = "sharded-slab"
|
4001 4000 | version = "0.1.7"
|
4002 4001 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4003 4002 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
4004 4003 | dependencies = [
|
@@ -4114,4113 +4206,4205 @@
4114 4113 | name = "strsim"
|
4115 4114 | version = "0.10.0"
|
4116 4115 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4117 4116 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
4118 4117 |
|
4119 4118 | [[package]]
|
4120 4119 | name = "strsim"
|
4121 4120 | version = "0.11.1"
|
4122 4121 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4123 4122 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
4124 4123 |
|
4125 4124 | [[package]]
|
4126 4125 | name = "subtle"
|
4127 4126 | version = "2.6.1"
|
4128 4127 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4129 4128 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
4130 4129 |
|
4131 4130 | [[package]]
|
4132 4131 | name = "syn"
|
4133 4132 | version = "1.0.109"
|
4134 4133 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4135 4134 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
4136 4135 | dependencies = [
|
4137 4136 | "proc-macro2",
|
4138 4137 | "quote",
|
4139 4138 | "unicode-ident",
|
4140 4139 | ]
|
4141 4140 |
|
4142 4141 | [[package]]
|
4143 4142 | name = "syn"
|
4144 - | version = "2.0.115"
|
4143 + | version = "2.0.116"
|
4145 4144 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4146 - | checksum = "6e614ed320ac28113fa64972c4262d5dbc89deacdfd00c34a3e4cea073243c12"
|
4145 + | checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
|
4147 4146 | dependencies = [
|
4148 4147 | "proc-macro2",
|
4149 4148 | "quote",
|
4150 4149 | "unicode-ident",
|
4151 4150 | ]
|
4152 4151 |
|
4153 4152 | [[package]]
|
4154 4153 | name = "sync_wrapper"
|
4155 4154 | version = "1.0.2"
|
4156 4155 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4157 4156 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
4158 4157 |
|
4159 4158 | [[package]]
|
4160 4159 | name = "synstructure"
|
4161 4160 | version = "0.13.2"
|
4162 4161 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4163 4162 | checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
4164 4163 | dependencies = [
|
4165 4164 | "proc-macro2",
|
4166 4165 | "quote",
|
4167 - | "syn 2.0.115",
|
4166 + | "syn 2.0.116",
|
4168 4167 | ]
|
4169 4168 |
|
4170 4169 | [[package]]
|
4171 4170 | name = "system-configuration"
|
4172 4171 | version = "0.7.0"
|
4173 4172 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4174 4173 | checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
4175 4174 | dependencies = [
|
4176 - | "bitflags 2.10.0",
|
4175 + | "bitflags 2.11.0",
|
4177 4176 | "core-foundation 0.9.4",
|
4178 4177 | "system-configuration-sys",
|
4179 4178 | ]
|
4180 4179 |
|
4181 4180 | [[package]]
|
4182 4181 | name = "system-configuration-sys"
|
4183 4182 | version = "0.6.0"
|
4184 4183 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4185 4184 | checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
4186 4185 | dependencies = [
|
4187 4186 | "core-foundation-sys",
|
4188 4187 | "libc",
|
4189 4188 | ]
|
4190 4189 |
|
4191 4190 | [[package]]
|
4192 4191 | name = "tagptr"
|
4193 4192 | version = "0.2.0"
|
4194 4193 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4195 4194 | checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
4196 4195 |
|
4197 4196 | [[package]]
|
4198 4197 | name = "target-lexicon"
|
4199 4198 | version = "0.12.16"
|
4200 4199 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4201 4200 | checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
4202 4201 |
|
4203 4202 | [[package]]
|
4204 4203 | name = "tempfile"
|
4205 4204 | version = "3.25.0"
|
4206 4205 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
@@ -4227,4226 +4298,4297 @@
4227 4226 | version = "0.16.2"
|
4228 4227 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4229 4228 | checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
4230 4229 |
|
4231 4230 | [[package]]
|
4232 4231 | name = "thiserror"
|
4233 4232 | version = "1.0.69"
|
4234 4233 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4235 4234 | checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
4236 4235 | dependencies = [
|
4237 4236 | "thiserror-impl 1.0.69",
|
4238 4237 | ]
|
4239 4238 |
|
4240 4239 | [[package]]
|
4241 4240 | name = "thiserror"
|
4242 4241 | version = "2.0.18"
|
4243 4242 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4244 4243 | checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
4245 4244 | dependencies = [
|
4246 4245 | "thiserror-impl 2.0.18",
|
4247 4246 | ]
|
4248 4247 |
|
4249 4248 | [[package]]
|
4250 4249 | name = "thiserror-impl"
|
4251 4250 | version = "1.0.69"
|
4252 4251 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4253 4252 | checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
4254 4253 | dependencies = [
|
4255 4254 | "proc-macro2",
|
4256 4255 | "quote",
|
4257 - | "syn 2.0.115",
|
4256 + | "syn 2.0.116",
|
4258 4257 | ]
|
4259 4258 |
|
4260 4259 | [[package]]
|
4261 4260 | name = "thiserror-impl"
|
4262 4261 | version = "2.0.18"
|
4263 4262 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4264 4263 | checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
4265 4264 | dependencies = [
|
4266 4265 | "proc-macro2",
|
4267 4266 | "quote",
|
4268 - | "syn 2.0.115",
|
4267 + | "syn 2.0.116",
|
4269 4268 | ]
|
4270 4269 |
|
4271 4270 | [[package]]
|
4272 4271 | name = "thread_local"
|
4273 4272 | version = "1.1.9"
|
4274 4273 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4275 4274 | checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
4276 4275 | dependencies = [
|
4277 4276 | "cfg-if",
|
4278 4277 | ]
|
4279 4278 |
|
4280 4279 | [[package]]
|
4281 4280 | name = "time"
|
4282 4281 | version = "0.3.47"
|
4283 4282 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4284 4283 | checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
|
4285 4284 | dependencies = [
|
4286 4285 | "deranged",
|
4287 4286 | "itoa",
|
4288 4287 | "num-conv",
|
4289 4288 | "powerfmt",
|
4290 4289 | "serde_core",
|
4291 4290 | "time-core",
|
4292 4291 | "time-macros",
|
4293 4292 | ]
|
4294 4293 |
|
4295 4294 | [[package]]
|
4296 4295 | name = "time-core"
|
4297 4296 | version = "0.1.8"
|
4298 4297 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
@@ -4355,4354 +4415,4414 @@
4355 4354 | "thiserror 1.0.69",
|
4356 4355 | "tokio",
|
4357 4356 | "tokio-rustls 0.24.1",
|
4358 4357 | ]
|
4359 4358 |
|
4360 4359 | [[package]]
|
4361 4360 | name = "tokio"
|
4362 4361 | version = "1.49.0"
|
4363 4362 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4364 4363 | checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
4365 4364 | dependencies = [
|
4366 4365 | "bytes",
|
4367 4366 | "libc",
|
4368 4367 | "mio",
|
4369 4368 | "parking_lot",
|
4370 4369 | "pin-project-lite",
|
4371 4370 | "signal-hook-registry",
|
4372 4371 | "socket2 0.6.2",
|
4373 4372 | "tokio-macros",
|
4374 4373 | "windows-sys 0.61.2",
|
4375 4374 | ]
|
4376 4375 |
|
4377 4376 | [[package]]
|
4378 4377 | name = "tokio-macros"
|
4379 4378 | version = "2.6.0"
|
4380 4379 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4381 4380 | checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
4382 4381 | dependencies = [
|
4383 4382 | "proc-macro2",
|
4384 4383 | "quote",
|
4385 - | "syn 2.0.115",
|
4384 + | "syn 2.0.116",
|
4386 4385 | ]
|
4387 4386 |
|
4388 4387 | [[package]]
|
4389 4388 | name = "tokio-rustls"
|
4390 4389 | version = "0.24.1"
|
4391 4390 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4392 4391 | checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
4393 4392 | dependencies = [
|
4394 4393 | "rustls 0.21.12",
|
4395 4394 | "tokio",
|
4396 4395 | ]
|
4397 4396 |
|
4398 4397 | [[package]]
|
4399 4398 | name = "tokio-rustls"
|
4400 4399 | version = "0.26.4"
|
4401 4400 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4402 4401 | checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
4403 4402 | dependencies = [
|
4404 4403 | "rustls 0.23.36",
|
4405 4404 | "tokio",
|
4406 4405 | ]
|
4407 4406 |
|
4408 4407 | [[package]]
|
4409 4408 | name = "tokio-stream"
|
4410 4409 | version = "0.1.18"
|
4411 4410 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4412 4411 | checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
4413 4412 | dependencies = [
|
4414 4413 | "futures-core",
|
4415 4414 | "pin-project-lite",
|
@@ -4468,4467 +4528,4527 @@
4468 4467 | "pin-project-lite",
|
4469 4468 | "sync_wrapper",
|
4470 4469 | "tower-layer",
|
4471 4470 | "tower-service",
|
4472 4471 | ]
|
4473 4472 |
|
4474 4473 | [[package]]
|
4475 4474 | name = "tower-http"
|
4476 4475 | version = "0.3.5"
|
4477 4476 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4478 4477 | checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
|
4479 4478 | dependencies = [
|
4480 4479 | "bitflags 1.3.2",
|
4481 4480 | "bytes",
|
4482 4481 | "futures-core",
|
4483 4482 | "futures-util",
|
4484 4483 | "http 0.2.12",
|
4485 4484 | "http-body 0.4.6",
|
4486 4485 | "http-range-header",
|
4487 4486 | "pin-project-lite",
|
4488 4487 | "tower-layer",
|
4489 4488 | "tower-service",
|
4490 4489 | ]
|
4491 4490 |
|
4492 4491 | [[package]]
|
4493 4492 | name = "tower-http"
|
4494 4493 | version = "0.6.8"
|
4495 4494 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4496 4495 | checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
4497 4496 | dependencies = [
|
4498 - | "bitflags 2.10.0",
|
4497 + | "bitflags 2.11.0",
|
4499 4498 | "bytes",
|
4500 4499 | "http 1.4.0",
|
4501 4500 | "http-body 1.0.1",
|
4502 4501 | "pin-project-lite",
|
4503 4502 | "tokio",
|
4504 4503 | "tower-layer",
|
4505 4504 | "tower-service",
|
4506 4505 | ]
|
4507 4506 |
|
4508 4507 | [[package]]
|
4509 4508 | name = "tower-layer"
|
4510 4509 | version = "0.3.3"
|
4511 4510 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4512 4511 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
4513 4512 |
|
4514 4513 | [[package]]
|
4515 4514 | name = "tower-service"
|
4516 4515 | version = "0.3.3"
|
4517 4516 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4518 4517 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
4519 4518 |
|
4520 4519 | [[package]]
|
4521 4520 | name = "tower-test"
|
4522 4521 | version = "0.4.0"
|
4523 4522 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4524 4523 | checksum = "a4546773ffeab9e4ea02b8872faa49bb616a80a7da66afc2f32688943f97efa7"
|
4525 4524 | dependencies = [
|
4526 4525 | "futures-util",
|
4527 4526 | "pin-project",
|
4528 4527 | "tokio",
|
@@ -4536,4535 +4596,4595 @@
4536 4535 | version = "0.1.44"
|
4537 4536 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4538 4537 | checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
4539 4538 | dependencies = [
|
4540 4539 | "log",
|
4541 4540 | "pin-project-lite",
|
4542 4541 | "tracing-attributes",
|
4543 4542 | "tracing-core",
|
4544 4543 | ]
|
4545 4544 |
|
4546 4545 | [[package]]
|
4547 4546 | name = "tracing-appender"
|
4548 4547 | version = "0.2.4"
|
4549 4548 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4550 4549 | checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
|
4551 4550 | dependencies = [
|
4552 4551 | "crossbeam-channel",
|
4553 4552 | "thiserror 2.0.18",
|
4554 4553 | "time",
|
4555 4554 | "tracing-subscriber",
|
4556 4555 | ]
|
4557 4556 |
|
4558 4557 | [[package]]
|
4559 4558 | name = "tracing-attributes"
|
4560 4559 | version = "0.1.31"
|
4561 4560 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4562 4561 | checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
4563 4562 | dependencies = [
|
4564 4563 | "proc-macro2",
|
4565 4564 | "quote",
|
4566 - | "syn 2.0.115",
|
4565 + | "syn 2.0.116",
|
4567 4566 | ]
|
4568 4567 |
|
4569 4568 | [[package]]
|
4570 4569 | name = "tracing-core"
|
4571 4570 | version = "0.1.36"
|
4572 4571 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4573 4572 | checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
4574 4573 | dependencies = [
|
4575 4574 | "once_cell",
|
4576 4575 | "valuable",
|
4577 4576 | ]
|
4578 4577 |
|
4579 4578 | [[package]]
|
4580 4579 | name = "tracing-log"
|
4581 4580 | version = "0.2.0"
|
4582 4581 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4583 4582 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
4584 4583 | dependencies = [
|
4585 4584 | "log",
|
4586 4585 | "once_cell",
|
4587 4586 | "tracing-core",
|
4588 4587 | ]
|
4589 4588 |
|
4590 4589 | [[package]]
|
4591 4590 | name = "tracing-serde"
|
4592 4591 | version = "0.2.0"
|
4593 4592 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4594 4593 | checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
|
4595 4594 | dependencies = [
|
4596 4595 | "serde",
|
@@ -4609,4608 +4750,4749 @@
4609 4608 | "regex-automata",
|
4610 4609 | "serde",
|
4611 4610 | "serde_json",
|
4612 4611 | "sharded-slab",
|
4613 4612 | "smallvec",
|
4614 4613 | "thread_local",
|
4615 4614 | "tracing",
|
4616 4615 | "tracing-core",
|
4617 4616 | "tracing-log",
|
4618 4617 | "tracing-serde",
|
4619 4618 | ]
|
4620 4619 |
|
4621 4620 | [[package]]
|
4622 4621 | name = "tracing-test"
|
4623 4622 | version = "0.2.6"
|
4624 4623 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4625 4624 | checksum = "19a4c448db514d4f24c5ddb9f73f2ee71bfb24c526cf0c570ba142d1119e0051"
|
4626 4625 | dependencies = [
|
4627 4626 | "tracing-core",
|
4628 4627 | "tracing-subscriber",
|
4629 4628 | "tracing-test-macro",
|
4630 4629 | ]
|
4631 4630 |
|
4632 4631 | [[package]]
|
4633 4632 | name = "tracing-test-macro"
|
4634 4633 | version = "0.2.6"
|
4635 4634 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4636 4635 | checksum = "ad06847b7afb65c7866a36664b75c40b895e318cea4f71299f013fb22965329d"
|
4637 4636 | dependencies = [
|
4638 4637 | "quote",
|
4639 - | "syn 2.0.115",
|
4638 + | "syn 2.0.116",
|
4640 4639 | ]
|
4641 4640 |
|
4642 4641 | [[package]]
|
4643 4642 | name = "try-lock"
|
4644 4643 | version = "0.2.5"
|
4645 4644 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4646 4645 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
4647 4646 |
|
4648 4647 | [[package]]
|
4649 4648 | name = "typenum"
|
4650 4649 | version = "1.19.0"
|
4651 4650 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4652 4651 | checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
4653 4652 |
|
4654 4653 | [[package]]
|
4655 4654 | name = "unarray"
|
4656 4655 | version = "0.1.4"
|
4657 4656 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4658 4657 | checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
4659 4658 |
|
4660 4659 | [[package]]
|
4661 4660 | name = "unicode-ident"
|
4662 - | version = "1.0.23"
|
4661 + | version = "1.0.24"
|
4663 4662 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4664 - | checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
|
4663 + | checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
4665 4664 |
|
4666 4665 | [[package]]
|
4667 4666 | name = "unicode-xid"
|
4668 4667 | version = "0.2.6"
|
4669 4668 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4670 4669 | checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
4671 4670 |
|
4672 4671 | [[package]]
|
4673 4672 | name = "unindent"
|
4674 4673 | version = "0.2.4"
|
4675 4674 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4676 4675 | checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
4677 4676 |
|
4678 4677 | [[package]]
|
4679 4678 | name = "untrusted"
|
4680 4679 | version = "0.7.1"
|
4681 4680 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4682 4681 | checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
4683 4682 |
|
4684 4683 | [[package]]
|
4685 4684 | name = "untrusted"
|
4686 4685 | version = "0.9.0"
|
4687 4686 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4688 4687 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
4689 4688 |
|
4690 4689 | [[package]]
|
4691 4690 | name = "url"
|
4692 4691 | version = "2.5.8"
|
4693 4692 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4694 4693 | checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
4695 4694 | dependencies = [
|
4696 4695 | "form_urlencoded",
|
4697 4696 | "idna",
|
4698 4697 | "percent-encoding",
|
4699 4698 | "serde",
|
4700 4699 | ]
|
4701 4700 |
|
4702 4701 | [[package]]
|
4703 4702 | name = "urlencoding"
|
4704 4703 | version = "2.1.3"
|
4705 4704 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4706 4705 | checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
4707 4706 |
|
4708 4707 | [[package]]
|
4709 4708 | name = "utf8_iter"
|
4710 4709 | version = "1.0.4"
|
4711 4710 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4712 4711 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
4713 4712 |
|
4714 4713 | [[package]]
|
4715 4714 | name = "uuid"
|
4716 - | version = "1.20.0"
|
4715 + | version = "1.21.0"
|
4717 4716 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4718 - | checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
|
4717 + | checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
|
4719 4718 | dependencies = [
|
4720 - | "getrandom 0.3.4",
|
4719 + | "getrandom 0.4.1",
|
4721 4720 | "js-sys",
|
4722 4721 | "rand 0.9.2",
|
4723 4722 | "wasm-bindgen",
|
4724 4723 | ]
|
4725 4724 |
|
4726 4725 | [[package]]
|
4727 4726 | name = "valuable"
|
4728 4727 | version = "0.1.1"
|
4729 4728 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4730 4729 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
4731 4730 |
|
4732 4731 | [[package]]
|
4733 4732 | name = "value-bag"
|
4734 4733 | version = "1.12.0"
|
4735 4734 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4736 4735 | checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0"
|
4737 4736 |
|
4738 4737 | [[package]]
|
4739 4738 | name = "version_check"
|
4740 4739 | version = "0.9.5"
|
4741 4740 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4742 4741 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
4743 4742 |
|
4744 4743 | [[package]]
|
4745 4744 | name = "vsimd"
|
4746 4745 | version = "0.8.0"
|
4747 4746 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4748 4747 | checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
4749 4748 |
|
4750 4749 | [[package]]
|
@@ -4818,4817 +4919,4918 @@
4818 4817 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4819 4818 | checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
4820 4819 | dependencies = [
|
4821 4820 | "cfg-if",
|
4822 4821 | "futures-util",
|
4823 4822 | "js-sys",
|
4824 4823 | "once_cell",
|
4825 4824 | "wasm-bindgen",
|
4826 4825 | "web-sys",
|
4827 4826 | ]
|
4828 4827 |
|
4829 4828 | [[package]]
|
4830 4829 | name = "wasm-bindgen-macro"
|
4831 4830 | version = "0.2.108"
|
4832 4831 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4833 4832 | checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
4834 4833 | dependencies = [
|
4835 4834 | "quote",
|
4836 4835 | "wasm-bindgen-macro-support",
|
4837 4836 | ]
|
4838 4837 |
|
4839 4838 | [[package]]
|
4840 4839 | name = "wasm-bindgen-macro-support"
|
4841 4840 | version = "0.2.108"
|
4842 4841 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4843 4842 | checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
4844 4843 | dependencies = [
|
4845 4844 | "bumpalo",
|
4846 4845 | "proc-macro2",
|
4847 4846 | "quote",
|
4848 - | "syn 2.0.115",
|
4847 + | "syn 2.0.116",
|
4849 4848 | "wasm-bindgen-shared",
|
4850 4849 | ]
|
4851 4850 |
|
4852 4851 | [[package]]
|
4853 4852 | name = "wasm-bindgen-shared"
|
4854 4853 | version = "0.2.108"
|
4855 4854 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4856 4855 | checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
4857 4856 | dependencies = [
|
4858 4857 | "unicode-ident",
|
4859 4858 | ]
|
4860 4859 |
|
4861 4860 | [[package]]
|
4862 4861 | name = "wasm-encoder"
|
4863 4862 | version = "0.244.0"
|
4864 4863 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4865 4864 | checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
4866 4865 | dependencies = [
|
4867 4866 | "leb128fmt",
|
4868 4867 | "wasmparser",
|
4869 4868 | ]
|
4870 4869 |
|
4871 4870 | [[package]]
|
4872 4871 | name = "wasm-metadata"
|
4873 4872 | version = "0.244.0"
|
4874 4873 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4875 4874 | checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
4876 4875 | dependencies = [
|
4877 4876 | "anyhow",
|
4878 4877 | "indexmap 2.13.0",
|
4879 4878 | "wasm-encoder",
|
4880 4879 | "wasmparser",
|
4881 4880 | ]
|
4882 4881 |
|
4883 4882 | [[package]]
|
4884 4883 | name = "wasmparser"
|
4885 4884 | version = "0.244.0"
|
4886 4885 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4887 4886 | checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
4888 4887 | dependencies = [
|
4889 - | "bitflags 2.10.0",
|
4888 + | "bitflags 2.11.0",
|
4890 4889 | "hashbrown 0.15.5",
|
4891 4890 | "indexmap 2.13.0",
|
4892 4891 | "semver",
|
4893 4892 | ]
|
4894 4893 |
|
4895 4894 | [[package]]
|
4896 4895 | name = "web-sys"
|
4897 4896 | version = "0.3.85"
|
4898 4897 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4899 4898 | checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
4900 4899 | dependencies = [
|
4901 4900 | "js-sys",
|
4902 4901 | "wasm-bindgen",
|
4903 4902 | ]
|
4904 4903 |
|
4905 4904 | [[package]]
|
4906 4905 | name = "widestring"
|
4907 4906 | version = "1.2.1"
|
4908 4907 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4909 4908 | checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
|
4910 4909 |
|
4911 4910 | [[package]]
|
4912 4911 | name = "winapi"
|
4913 4912 | version = "0.3.9"
|
4914 4913 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
4915 4914 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
4916 4915 | dependencies = [
|
4917 4916 | "winapi-i686-pc-windows-gnu",
|
4918 4917 | "winapi-x86_64-pc-windows-gnu",
|
4919 4918 | ]
|
@@ -5185,5184 +5306,5305 @@
5185 5184 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
5186 5185 |
|
5187 5186 | [[package]]
|
5188 5187 | name = "windows_x86_64_msvc"
|
5189 5188 | version = "0.52.6"
|
5190 5189 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5191 5190 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
5192 5191 |
|
5193 5192 | [[package]]
|
5194 5193 | name = "windows_x86_64_msvc"
|
5195 5194 | version = "0.53.1"
|
5196 5195 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5197 5196 | checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
5198 5197 |
|
5199 5198 | [[package]]
|
5200 5199 | name = "winreg"
|
5201 5200 | version = "0.50.0"
|
5202 5201 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5203 5202 | checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
5204 5203 | dependencies = [
|
5205 5204 | "cfg-if",
|
5206 5205 | "windows-sys 0.48.0",
|
5207 5206 | ]
|
5208 5207 |
|
5209 5208 | [[package]]
|
5210 5209 | name = "wit-bindgen"
|
5211 5210 | version = "0.46.0"
|
5212 5211 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5213 5212 | checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
5214 5213 | dependencies = [
|
5215 - | "bitflags 2.10.0",
|
5214 + | "bitflags 2.11.0",
|
5216 5215 | ]
|
5217 5216 |
|
5218 5217 | [[package]]
|
5219 5218 | name = "wit-bindgen"
|
5220 5219 | version = "0.51.0"
|
5221 5220 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5222 5221 | checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
5223 5222 | dependencies = [
|
5224 5223 | "wit-bindgen-rust-macro",
|
5225 5224 | ]
|
5226 5225 |
|
5227 5226 | [[package]]
|
5228 5227 | name = "wit-bindgen-core"
|
5229 5228 | version = "0.51.0"
|
5230 5229 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5231 5230 | checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
5232 5231 | dependencies = [
|
5233 5232 | "anyhow",
|
5234 5233 | "heck 0.5.0",
|
5235 5234 | "wit-parser",
|
5236 5235 | ]
|
5237 5236 |
|
5238 5237 | [[package]]
|
5239 5238 | name = "wit-bindgen-rust"
|
5240 5239 | version = "0.51.0"
|
5241 5240 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5242 5241 | checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
5243 5242 | dependencies = [
|
5244 5243 | "anyhow",
|
5245 5244 | "heck 0.5.0",
|
5246 5245 | "indexmap 2.13.0",
|
5247 5246 | "prettyplease",
|
5248 - | "syn 2.0.115",
|
5247 + | "syn 2.0.116",
|
5249 5248 | "wasm-metadata",
|
5250 5249 | "wit-bindgen-core",
|
5251 5250 | "wit-component",
|
5252 5251 | ]
|
5253 5252 |
|
5254 5253 | [[package]]
|
5255 5254 | name = "wit-bindgen-rust-macro"
|
5256 5255 | version = "0.51.0"
|
5257 5256 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5258 5257 | checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
5259 5258 | dependencies = [
|
5260 5259 | "anyhow",
|
5261 5260 | "prettyplease",
|
5262 5261 | "proc-macro2",
|
5263 5262 | "quote",
|
5264 - | "syn 2.0.115",
|
5263 + | "syn 2.0.116",
|
5265 5264 | "wit-bindgen-core",
|
5266 5265 | "wit-bindgen-rust",
|
5267 5266 | ]
|
5268 5267 |
|
5269 5268 | [[package]]
|
5270 5269 | name = "wit-component"
|
5271 5270 | version = "0.244.0"
|
5272 5271 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5273 5272 | checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
5274 5273 | dependencies = [
|
5275 5274 | "anyhow",
|
5276 - | "bitflags 2.10.0",
|
5275 + | "bitflags 2.11.0",
|
5277 5276 | "indexmap 2.13.0",
|
5278 5277 | "log",
|
5279 5278 | "serde",
|
5280 5279 | "serde_derive",
|
5281 5280 | "serde_json",
|
5282 5281 | "wasm-encoder",
|
5283 5282 | "wasm-metadata",
|
5284 5283 | "wasmparser",
|
5285 5284 | "wit-parser",
|
5286 5285 | ]
|
5287 5286 |
|
5288 5287 | [[package]]
|
5289 5288 | name = "wit-parser"
|
5290 5289 | version = "0.244.0"
|
5291 5290 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5292 5291 | checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
5293 5292 | dependencies = [
|
5294 5293 | "anyhow",
|
5295 5294 | "id-arena",
|
5296 5295 | "indexmap 2.13.0",
|
5297 5296 | "log",
|
5298 5297 | "semver",
|
5299 5298 | "serde",
|
5300 5299 | "serde_derive",
|
5301 5300 | "serde_json",
|
5302 5301 | "unicode-xid",
|
5303 5302 | "wasmparser",
|
5304 5303 | ]
|
5305 5304 |
|
5306 5305 | [[package]]
|
@@ -5322,5321 +5434,5433 @@
5322 5321 | checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
5323 5322 |
|
5324 5323 | [[package]]
|
5325 5324 | name = "yasna"
|
5326 5325 | version = "0.5.2"
|
5327 5326 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5328 5327 | checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
|
5329 5328 | dependencies = [
|
5330 5329 | "time",
|
5331 5330 | ]
|
5332 5331 |
|
5333 5332 | [[package]]
|
5334 5333 | name = "yoke"
|
5335 5334 | version = "0.8.1"
|
5336 5335 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5337 5336 | checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
5338 5337 | dependencies = [
|
5339 5338 | "stable_deref_trait",
|
5340 5339 | "yoke-derive",
|
5341 5340 | "zerofrom",
|
5342 5341 | ]
|
5343 5342 |
|
5344 5343 | [[package]]
|
5345 5344 | name = "yoke-derive"
|
5346 5345 | version = "0.8.1"
|
5347 5346 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5348 5347 | checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
5349 5348 | dependencies = [
|
5350 5349 | "proc-macro2",
|
5351 5350 | "quote",
|
5352 - | "syn 2.0.115",
|
5351 + | "syn 2.0.116",
|
5353 5352 | "synstructure",
|
5354 5353 | ]
|
5355 5354 |
|
5356 5355 | [[package]]
|
5357 5356 | name = "zerocopy"
|
5358 5357 | version = "0.8.39"
|
5359 5358 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5360 5359 | checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
|
5361 5360 | dependencies = [
|
5362 5361 | "zerocopy-derive",
|
5363 5362 | ]
|
5364 5363 |
|
5365 5364 | [[package]]
|
5366 5365 | name = "zerocopy-derive"
|
5367 5366 | version = "0.8.39"
|
5368 5367 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5369 5368 | checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
|
5370 5369 | dependencies = [
|
5371 5370 | "proc-macro2",
|
5372 5371 | "quote",
|
5373 - | "syn 2.0.115",
|
5372 + | "syn 2.0.116",
|
5374 5373 | ]
|
5375 5374 |
|
5376 5375 | [[package]]
|
5377 5376 | name = "zerofrom"
|
5378 5377 | version = "0.1.6"
|
5379 5378 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5380 5379 | checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
5381 5380 | dependencies = [
|
5382 5381 | "zerofrom-derive",
|
5383 5382 | ]
|
5384 5383 |
|
5385 5384 | [[package]]
|
5386 5385 | name = "zerofrom-derive"
|
5387 5386 | version = "0.1.6"
|
5388 5387 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5389 5388 | checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
5390 5389 | dependencies = [
|
5391 5390 | "proc-macro2",
|
5392 5391 | "quote",
|
5393 - | "syn 2.0.115",
|
5392 + | "syn 2.0.116",
|
5394 5393 | "synstructure",
|
5395 5394 | ]
|
5396 5395 |
|
5397 5396 | [[package]]
|
5398 5397 | name = "zeroize"
|
5399 5398 | version = "1.8.2"
|
5400 5399 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5401 5400 | checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
5402 5401 |
|
5403 5402 | [[package]]
|
5404 5403 | name = "zerotrie"
|
5405 5404 | version = "0.2.3"
|
5406 5405 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5407 5406 | checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
5408 5407 | dependencies = [
|
5409 5408 | "displaydoc",
|
5410 5409 | "yoke",
|
5411 5410 | "zerofrom",
|
5412 5411 | ]
|
5413 5412 |
|
5414 5413 | [[package]]
|
5415 5414 | name = "zerovec"
|
5416 5415 | version = "0.11.5"
|
5417 5416 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5418 5417 | checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
5419 5418 | dependencies = [
|
5420 5419 | "yoke",
|
5421 5420 | "zerofrom",
|
5422 5421 | "zerovec-derive",
|
5423 5422 | ]
|
5424 5423 |
|
5425 5424 | [[package]]
|
5426 5425 | name = "zerovec-derive"
|
5427 5426 | version = "0.11.2"
|
5428 5427 | source = "registry+https://github.com/rust-lang/crates.io-index"
|
5429 5428 | checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
5430 5429 | dependencies = [
|
5431 5430 | "proc-macro2",
|
5432 5431 | "quote",
|
5433 - | "syn 2.0.115",
|
5432 + | "syn 2.0.116",
|
5434 5433 | ]
|