diff options
author | Rutger Broekhoff | 2024-04-29 18:15:05 +0200 |
---|---|---|
committer | Rutger Broekhoff | 2024-04-29 18:15:05 +0200 |
commit | 2723f48c6fa1b26dc1b563fa68b130755a28387e (patch) | |
tree | dbfed1d9fadde19303a7d4edf364eb8bfb1816bc | |
parent | 6b676295f5f71e255dd585327d95eb1dbd732d4c (diff) | |
download | gitolfs3-2723f48c6fa1b26dc1b563fa68b130755a28387e.tar.gz gitolfs3-2723f48c6fa1b26dc1b563fa68b130755a28387e.zip |
Update dependencies
-rw-r--r-- | Cargo.lock | 634 | ||||
-rw-r--r-- | flake.lock | 46 | ||||
-rw-r--r-- | flake.nix | 4 |
3 files changed, 366 insertions, 318 deletions
@@ -18,15 +18,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" | 18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" |
19 | 19 | ||
20 | [[package]] | 20 | [[package]] |
21 | name = "ahash" | ||
22 | version = "0.8.11" | ||
23 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
24 | checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" | ||
25 | dependencies = [ | ||
26 | "cfg-if", | ||
27 | "once_cell", | ||
28 | "version_check", | ||
29 | "zerocopy", | ||
30 | ] | ||
31 | |||
32 | [[package]] | ||
21 | name = "aho-corasick" | 33 | name = "aho-corasick" |
22 | version = "1.1.2" | 34 | version = "1.1.3" |
23 | source = "registry+https://github.com/rust-lang/crates.io-index" | 35 | source = "registry+https://github.com/rust-lang/crates.io-index" |
24 | checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" | 36 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" |
25 | dependencies = [ | 37 | dependencies = [ |
26 | "memchr", | 38 | "memchr", |
27 | ] | 39 | ] |
28 | 40 | ||
29 | [[package]] | 41 | [[package]] |
42 | name = "allocator-api2" | ||
43 | version = "0.2.18" | ||
44 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
45 | checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f" | ||
46 | |||
47 | [[package]] | ||
30 | name = "android-tzdata" | 48 | name = "android-tzdata" |
31 | version = "0.1.1" | 49 | version = "0.1.1" |
32 | source = "registry+https://github.com/rust-lang/crates.io-index" | 50 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -43,15 +61,15 @@ dependencies = [ | |||
43 | 61 | ||
44 | [[package]] | 62 | [[package]] |
45 | name = "anyhow" | 63 | name = "anyhow" |
46 | version = "1.0.79" | 64 | version = "1.0.82" |
47 | source = "registry+https://github.com/rust-lang/crates.io-index" | 65 | source = "registry+https://github.com/rust-lang/crates.io-index" |
48 | checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca" | 66 | checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" |
49 | 67 | ||
50 | [[package]] | 68 | [[package]] |
51 | name = "async-trait" | 69 | name = "async-trait" |
52 | version = "0.1.77" | 70 | version = "0.1.80" |
53 | source = "registry+https://github.com/rust-lang/crates.io-index" | 71 | source = "registry+https://github.com/rust-lang/crates.io-index" |
54 | checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9" | 72 | checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" |
55 | dependencies = [ | 73 | dependencies = [ |
56 | "proc-macro2", | 74 | "proc-macro2", |
57 | "quote", | 75 | "quote", |
@@ -60,18 +78,17 @@ dependencies = [ | |||
60 | 78 | ||
61 | [[package]] | 79 | [[package]] |
62 | name = "autocfg" | 80 | name = "autocfg" |
63 | version = "1.1.0" | 81 | version = "1.2.0" |
64 | source = "registry+https://github.com/rust-lang/crates.io-index" | 82 | source = "registry+https://github.com/rust-lang/crates.io-index" |
65 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" | 83 | checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" |
66 | 84 | ||
67 | [[package]] | 85 | [[package]] |
68 | name = "aws-config" | 86 | name = "aws-config" |
69 | version = "1.1.2" | 87 | version = "1.2.1" |
70 | source = "registry+https://github.com/rust-lang/crates.io-index" | 88 | source = "registry+https://github.com/rust-lang/crates.io-index" |
71 | checksum = "7e64b72d4bdbb41a73d27709c65a25b6e4bfc8321bf70fa3a8b19ce7d4eb81b0" | 89 | checksum = "b2a4707646259764ab59fd9a50e9de2e92c637b28b36285d6f6fa030e915fbd9" |
72 | dependencies = [ | 90 | dependencies = [ |
73 | "aws-credential-types", | 91 | "aws-credential-types", |
74 | "aws-http", | ||
75 | "aws-runtime", | 92 | "aws-runtime", |
76 | "aws-sdk-sso", | 93 | "aws-sdk-sso", |
77 | "aws-sdk-ssooidc", | 94 | "aws-sdk-ssooidc", |
@@ -86,20 +103,21 @@ dependencies = [ | |||
86 | "bytes", | 103 | "bytes", |
87 | "fastrand", | 104 | "fastrand", |
88 | "hex", | 105 | "hex", |
89 | "http 0.2.11", | 106 | "http 0.2.12", |
90 | "hyper 0.14.28", | 107 | "hyper 0.14.28", |
91 | "ring", | 108 | "ring", |
92 | "time", | 109 | "time", |
93 | "tokio", | 110 | "tokio", |
94 | "tracing", | 111 | "tracing", |
112 | "url", | ||
95 | "zeroize", | 113 | "zeroize", |
96 | ] | 114 | ] |
97 | 115 | ||
98 | [[package]] | 116 | [[package]] |
99 | name = "aws-credential-types" | 117 | name = "aws-credential-types" |
100 | version = "1.1.2" | 118 | version = "1.2.0" |
101 | source = "registry+https://github.com/rust-lang/crates.io-index" | 119 | source = "registry+https://github.com/rust-lang/crates.io-index" |
102 | checksum = "4a7cb3510b95492bd9014b60e2e3bee3e48bc516e220316f8e6b60df18b47331" | 120 | checksum = "e16838e6c9e12125face1c1eff1343c75e3ff540de98ff7ebd61874a89bcfeb9" |
103 | dependencies = [ | 121 | dependencies = [ |
104 | "aws-smithy-async", | 122 | "aws-smithy-async", |
105 | "aws-smithy-runtime-api", | 123 | "aws-smithy-runtime-api", |
@@ -108,29 +126,12 @@ dependencies = [ | |||
108 | ] | 126 | ] |
109 | 127 | ||
110 | [[package]] | 128 | [[package]] |
111 | name = "aws-http" | ||
112 | version = "0.60.2" | ||
113 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
114 | checksum = "a95d41abe4e941399fdb4bc2f54713eac3c839d98151875948bb24e66ab658f2" | ||
115 | dependencies = [ | ||
116 | "aws-smithy-runtime-api", | ||
117 | "aws-smithy-types", | ||
118 | "aws-types", | ||
119 | "bytes", | ||
120 | "http 0.2.11", | ||
121 | "http-body 0.4.6", | ||
122 | "pin-project-lite", | ||
123 | "tracing", | ||
124 | ] | ||
125 | |||
126 | [[package]] | ||
127 | name = "aws-runtime" | 129 | name = "aws-runtime" |
128 | version = "1.1.2" | 130 | version = "1.2.0" |
129 | source = "registry+https://github.com/rust-lang/crates.io-index" | 131 | source = "registry+https://github.com/rust-lang/crates.io-index" |
130 | checksum = "233cca219c6705d525ace011d6f9bc51aaf32fce5b4c41661d2d7ff22d9b4d49" | 132 | checksum = "f4963ac9ff2d33a4231b3806c1c69f578f221a9cabb89ad2bde62ce2b442c8a7" |
131 | dependencies = [ | 133 | dependencies = [ |
132 | "aws-credential-types", | 134 | "aws-credential-types", |
133 | "aws-http", | ||
134 | "aws-sigv4", | 135 | "aws-sigv4", |
135 | "aws-smithy-async", | 136 | "aws-smithy-async", |
136 | "aws-smithy-eventstream", | 137 | "aws-smithy-eventstream", |
@@ -138,21 +139,24 @@ dependencies = [ | |||
138 | "aws-smithy-runtime-api", | 139 | "aws-smithy-runtime-api", |
139 | "aws-smithy-types", | 140 | "aws-smithy-types", |
140 | "aws-types", | 141 | "aws-types", |
142 | "bytes", | ||
141 | "fastrand", | 143 | "fastrand", |
142 | "http 0.2.11", | 144 | "http 0.2.12", |
145 | "http-body 0.4.6", | ||
143 | "percent-encoding", | 146 | "percent-encoding", |
147 | "pin-project-lite", | ||
144 | "tracing", | 148 | "tracing", |
145 | "uuid", | 149 | "uuid", |
146 | ] | 150 | ] |
147 | 151 | ||
148 | [[package]] | 152 | [[package]] |
149 | name = "aws-sdk-s3" | 153 | name = "aws-sdk-s3" |
150 | version = "1.12.0" | 154 | version = "1.24.0" |
151 | source = "registry+https://github.com/rust-lang/crates.io-index" | 155 | source = "registry+https://github.com/rust-lang/crates.io-index" |
152 | checksum = "634fbe5b6591ee2e281cd2ba8641e9bd752dbf5bf338924d6ad4bd5a3304fe31" | 156 | checksum = "7f522b68eb0294c59f7beb0defa30e84fed24ebc50ee219e111d6c33eaea96a8" |
153 | dependencies = [ | 157 | dependencies = [ |
158 | "ahash", | ||
154 | "aws-credential-types", | 159 | "aws-credential-types", |
155 | "aws-http", | ||
156 | "aws-runtime", | 160 | "aws-runtime", |
157 | "aws-sigv4", | 161 | "aws-sigv4", |
158 | "aws-smithy-async", | 162 | "aws-smithy-async", |
@@ -166,23 +170,27 @@ dependencies = [ | |||
166 | "aws-smithy-xml", | 170 | "aws-smithy-xml", |
167 | "aws-types", | 171 | "aws-types", |
168 | "bytes", | 172 | "bytes", |
169 | "http 0.2.11", | 173 | "fastrand", |
174 | "hex", | ||
175 | "hmac", | ||
176 | "http 0.2.12", | ||
170 | "http-body 0.4.6", | 177 | "http-body 0.4.6", |
178 | "lru", | ||
171 | "once_cell", | 179 | "once_cell", |
172 | "percent-encoding", | 180 | "percent-encoding", |
173 | "regex-lite", | 181 | "regex-lite", |
182 | "sha2", | ||
174 | "tracing", | 183 | "tracing", |
175 | "url", | 184 | "url", |
176 | ] | 185 | ] |
177 | 186 | ||
178 | [[package]] | 187 | [[package]] |
179 | name = "aws-sdk-sso" | 188 | name = "aws-sdk-sso" |
180 | version = "1.10.0" | 189 | version = "1.21.0" |
181 | source = "registry+https://github.com/rust-lang/crates.io-index" | 190 | source = "registry+https://github.com/rust-lang/crates.io-index" |
182 | checksum = "ee41005e0f3a19ae749c7953d9e1f1ef8d2183f76f64966e346fa41c1ba0ed44" | 191 | checksum = "3d70fb493f4183f5102d8a8d0cc9b57aec29a762f55c0e7bf527e0f7177bb408" |
183 | dependencies = [ | 192 | dependencies = [ |
184 | "aws-credential-types", | 193 | "aws-credential-types", |
185 | "aws-http", | ||
186 | "aws-runtime", | 194 | "aws-runtime", |
187 | "aws-smithy-async", | 195 | "aws-smithy-async", |
188 | "aws-smithy-http", | 196 | "aws-smithy-http", |
@@ -192,7 +200,7 @@ dependencies = [ | |||
192 | "aws-smithy-types", | 200 | "aws-smithy-types", |
193 | "aws-types", | 201 | "aws-types", |
194 | "bytes", | 202 | "bytes", |
195 | "http 0.2.11", | 203 | "http 0.2.12", |
196 | "once_cell", | 204 | "once_cell", |
197 | "regex-lite", | 205 | "regex-lite", |
198 | "tracing", | 206 | "tracing", |
@@ -200,12 +208,11 @@ dependencies = [ | |||
200 | 208 | ||
201 | [[package]] | 209 | [[package]] |
202 | name = "aws-sdk-ssooidc" | 210 | name = "aws-sdk-ssooidc" |
203 | version = "1.10.0" | 211 | version = "1.21.0" |
204 | source = "registry+https://github.com/rust-lang/crates.io-index" | 212 | source = "registry+https://github.com/rust-lang/crates.io-index" |
205 | checksum = "fa08168f8a27505e7b90f922c32a489feb1f2133878981a15138bebc849ac09c" | 213 | checksum = "de3f37549b3e38b7ea5efd419d4d7add6ea1e55223506eb0b4fef9d25e7cc90d" |
206 | dependencies = [ | 214 | dependencies = [ |
207 | "aws-credential-types", | 215 | "aws-credential-types", |
208 | "aws-http", | ||
209 | "aws-runtime", | 216 | "aws-runtime", |
210 | "aws-smithy-async", | 217 | "aws-smithy-async", |
211 | "aws-smithy-http", | 218 | "aws-smithy-http", |
@@ -215,7 +222,7 @@ dependencies = [ | |||
215 | "aws-smithy-types", | 222 | "aws-smithy-types", |
216 | "aws-types", | 223 | "aws-types", |
217 | "bytes", | 224 | "bytes", |
218 | "http 0.2.11", | 225 | "http 0.2.12", |
219 | "once_cell", | 226 | "once_cell", |
220 | "regex-lite", | 227 | "regex-lite", |
221 | "tracing", | 228 | "tracing", |
@@ -223,12 +230,11 @@ dependencies = [ | |||
223 | 230 | ||
224 | [[package]] | 231 | [[package]] |
225 | name = "aws-sdk-sts" | 232 | name = "aws-sdk-sts" |
226 | version = "1.10.0" | 233 | version = "1.21.0" |
227 | source = "registry+https://github.com/rust-lang/crates.io-index" | 234 | source = "registry+https://github.com/rust-lang/crates.io-index" |
228 | checksum = "29102eff04d50ef70f11a48823db33e33c6cc5f027bfb6ff4864efbd5f1f66f3" | 235 | checksum = "3b2ff219a5d4b795cd33251c19dbe9c4b401f2b2cbe513e07c76ada644eaf34e" |
229 | dependencies = [ | 236 | dependencies = [ |
230 | "aws-credential-types", | 237 | "aws-credential-types", |
231 | "aws-http", | ||
232 | "aws-runtime", | 238 | "aws-runtime", |
233 | "aws-smithy-async", | 239 | "aws-smithy-async", |
234 | "aws-smithy-http", | 240 | "aws-smithy-http", |
@@ -239,7 +245,7 @@ dependencies = [ | |||
239 | "aws-smithy-types", | 245 | "aws-smithy-types", |
240 | "aws-smithy-xml", | 246 | "aws-smithy-xml", |
241 | "aws-types", | 247 | "aws-types", |
242 | "http 0.2.11", | 248 | "http 0.2.12", |
243 | "once_cell", | 249 | "once_cell", |
244 | "regex-lite", | 250 | "regex-lite", |
245 | "tracing", | 251 | "tracing", |
@@ -247,9 +253,9 @@ dependencies = [ | |||
247 | 253 | ||
248 | [[package]] | 254 | [[package]] |
249 | name = "aws-sigv4" | 255 | name = "aws-sigv4" |
250 | version = "1.1.2" | 256 | version = "1.2.1" |
251 | source = "registry+https://github.com/rust-lang/crates.io-index" | 257 | source = "registry+https://github.com/rust-lang/crates.io-index" |
252 | checksum = "b92384b39aedb258aa734fe0e7b2ffcd13f33e68227251a72cd2635e0acc8f1a" | 258 | checksum = "58b56f1cbe6fd4d0c2573df72868f20ab1c125ca9c9dbce17927a463433a2e57" |
253 | dependencies = [ | 259 | dependencies = [ |
254 | "aws-credential-types", | 260 | "aws-credential-types", |
255 | "aws-smithy-eventstream", | 261 | "aws-smithy-eventstream", |
@@ -261,7 +267,8 @@ dependencies = [ | |||
261 | "form_urlencoded", | 267 | "form_urlencoded", |
262 | "hex", | 268 | "hex", |
263 | "hmac", | 269 | "hmac", |
264 | "http 0.2.11", | 270 | "http 0.2.12", |
271 | "http 1.1.0", | ||
265 | "once_cell", | 272 | "once_cell", |
266 | "p256", | 273 | "p256", |
267 | "percent-encoding", | 274 | "percent-encoding", |
@@ -275,9 +282,9 @@ dependencies = [ | |||
275 | 282 | ||
276 | [[package]] | 283 | [[package]] |
277 | name = "aws-smithy-async" | 284 | name = "aws-smithy-async" |
278 | version = "1.1.3" | 285 | version = "1.2.1" |
279 | source = "registry+https://github.com/rust-lang/crates.io-index" | 286 | source = "registry+https://github.com/rust-lang/crates.io-index" |
280 | checksum = "2eac0bb78e9e2765699999a02d7bfb4e6ad8f13e0962ebb9f5202b1d8cd76006" | 287 | checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c" |
281 | dependencies = [ | 288 | dependencies = [ |
282 | "futures-util", | 289 | "futures-util", |
283 | "pin-project-lite", | 290 | "pin-project-lite", |
@@ -286,9 +293,9 @@ dependencies = [ | |||
286 | 293 | ||
287 | [[package]] | 294 | [[package]] |
288 | name = "aws-smithy-checksums" | 295 | name = "aws-smithy-checksums" |
289 | version = "0.60.3" | 296 | version = "0.60.7" |
290 | source = "registry+https://github.com/rust-lang/crates.io-index" | 297 | source = "registry+https://github.com/rust-lang/crates.io-index" |
291 | checksum = "535a2d5f1e459bc7709580a77152c8d493982db083236c2b1d1c51dc6217e8a3" | 298 | checksum = "83fa43bc04a6b2441968faeab56e68da3812f978a670a5db32accbdcafddd12f" |
292 | dependencies = [ | 299 | dependencies = [ |
293 | "aws-smithy-http", | 300 | "aws-smithy-http", |
294 | "aws-smithy-types", | 301 | "aws-smithy-types", |
@@ -296,7 +303,7 @@ dependencies = [ | |||
296 | "crc32c", | 303 | "crc32c", |
297 | "crc32fast", | 304 | "crc32fast", |
298 | "hex", | 305 | "hex", |
299 | "http 0.2.11", | 306 | "http 0.2.12", |
300 | "http-body 0.4.6", | 307 | "http-body 0.4.6", |
301 | "md-5", | 308 | "md-5", |
302 | "pin-project-lite", | 309 | "pin-project-lite", |
@@ -307,9 +314,9 @@ dependencies = [ | |||
307 | 314 | ||
308 | [[package]] | 315 | [[package]] |
309 | name = "aws-smithy-eventstream" | 316 | name = "aws-smithy-eventstream" |
310 | version = "0.60.3" | 317 | version = "0.60.4" |
311 | source = "registry+https://github.com/rust-lang/crates.io-index" | 318 | source = "registry+https://github.com/rust-lang/crates.io-index" |
312 | checksum = "682371561562d08ab437766903c6bc28f4f95d7ab2ecfb389bda7849dd98aefe" | 319 | checksum = "e6363078f927f612b970edf9d1903ef5cef9a64d1e8423525ebb1f0a1633c858" |
313 | dependencies = [ | 320 | dependencies = [ |
314 | "aws-smithy-types", | 321 | "aws-smithy-types", |
315 | "bytes", | 322 | "bytes", |
@@ -318,9 +325,9 @@ dependencies = [ | |||
318 | 325 | ||
319 | [[package]] | 326 | [[package]] |
320 | name = "aws-smithy-http" | 327 | name = "aws-smithy-http" |
321 | version = "0.60.3" | 328 | version = "0.60.8" |
322 | source = "registry+https://github.com/rust-lang/crates.io-index" | 329 | source = "registry+https://github.com/rust-lang/crates.io-index" |
323 | checksum = "365ca49744b2bda2f1e2dc03b856da3fa5a28ca5b0a41e41d7ff5305a8fae190" | 330 | checksum = "4a7de001a1b9a25601016d8057ea16e31a45fdca3751304c8edf4ad72e706c08" |
324 | dependencies = [ | 331 | dependencies = [ |
325 | "aws-smithy-eventstream", | 332 | "aws-smithy-eventstream", |
326 | "aws-smithy-runtime-api", | 333 | "aws-smithy-runtime-api", |
@@ -328,7 +335,7 @@ dependencies = [ | |||
328 | "bytes", | 335 | "bytes", |
329 | "bytes-utils", | 336 | "bytes-utils", |
330 | "futures-core", | 337 | "futures-core", |
331 | "http 0.2.11", | 338 | "http 0.2.12", |
332 | "http-body 0.4.6", | 339 | "http-body 0.4.6", |
333 | "once_cell", | 340 | "once_cell", |
334 | "percent-encoding", | 341 | "percent-encoding", |
@@ -339,18 +346,18 @@ dependencies = [ | |||
339 | 346 | ||
340 | [[package]] | 347 | [[package]] |
341 | name = "aws-smithy-json" | 348 | name = "aws-smithy-json" |
342 | version = "0.60.3" | 349 | version = "0.60.7" |
343 | source = "registry+https://github.com/rust-lang/crates.io-index" | 350 | source = "registry+https://github.com/rust-lang/crates.io-index" |
344 | checksum = "733ccdb727ac63370836aa3b3c483d75ad2ef7bc6507db3efe1d01e8d2e50367" | 351 | checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6" |
345 | dependencies = [ | 352 | dependencies = [ |
346 | "aws-smithy-types", | 353 | "aws-smithy-types", |
347 | ] | 354 | ] |
348 | 355 | ||
349 | [[package]] | 356 | [[package]] |
350 | name = "aws-smithy-query" | 357 | name = "aws-smithy-query" |
351 | version = "0.60.3" | 358 | version = "0.60.7" |
352 | source = "registry+https://github.com/rust-lang/crates.io-index" | 359 | source = "registry+https://github.com/rust-lang/crates.io-index" |
353 | checksum = "aff02ae2ee7968bbce2983ffb5ce529d24f4848532300f398347bde8c2196974" | 360 | checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb" |
354 | dependencies = [ | 361 | dependencies = [ |
355 | "aws-smithy-types", | 362 | "aws-smithy-types", |
356 | "urlencoding", | 363 | "urlencoding", |
@@ -358,9 +365,9 @@ dependencies = [ | |||
358 | 365 | ||
359 | [[package]] | 366 | [[package]] |
360 | name = "aws-smithy-runtime" | 367 | name = "aws-smithy-runtime" |
361 | version = "1.1.3" | 368 | version = "1.3.1" |
362 | source = "registry+https://github.com/rust-lang/crates.io-index" | 369 | source = "registry+https://github.com/rust-lang/crates.io-index" |
363 | checksum = "6ab9cb6fee50680af8ceaa293ae79eba32095ca117161cb323f9ee30dd87d139" | 370 | checksum = "44e7945379821074549168917e89e60630647e186a69243248f08c6d168b975a" |
364 | dependencies = [ | 371 | dependencies = [ |
365 | "aws-smithy-async", | 372 | "aws-smithy-async", |
366 | "aws-smithy-http", | 373 | "aws-smithy-http", |
@@ -368,9 +375,10 @@ dependencies = [ | |||
368 | "aws-smithy-types", | 375 | "aws-smithy-types", |
369 | "bytes", | 376 | "bytes", |
370 | "fastrand", | 377 | "fastrand", |
371 | "h2 0.3.24", | 378 | "h2", |
372 | "http 0.2.11", | 379 | "http 0.2.12", |
373 | "http-body 0.4.6", | 380 | "http-body 0.4.6", |
381 | "http-body 1.0.0", | ||
374 | "hyper 0.14.28", | 382 | "hyper 0.14.28", |
375 | "hyper-rustls", | 383 | "hyper-rustls", |
376 | "once_cell", | 384 | "once_cell", |
@@ -383,14 +391,15 @@ dependencies = [ | |||
383 | 391 | ||
384 | [[package]] | 392 | [[package]] |
385 | name = "aws-smithy-runtime-api" | 393 | name = "aws-smithy-runtime-api" |
386 | version = "1.1.3" | 394 | version = "1.4.0" |
387 | source = "registry+https://github.com/rust-lang/crates.io-index" | 395 | source = "registry+https://github.com/rust-lang/crates.io-index" |
388 | checksum = "02ca2da7619517310bfead6d18abcdde90f1439224d887d608503cfacff46dff" | 396 | checksum = "4cc56a5c96ec741de6c5e6bf1ce6948be969d6506dfa9c39cffc284e31e4979b" |
389 | dependencies = [ | 397 | dependencies = [ |
390 | "aws-smithy-async", | 398 | "aws-smithy-async", |
391 | "aws-smithy-types", | 399 | "aws-smithy-types", |
392 | "bytes", | 400 | "bytes", |
393 | "http 0.2.11", | 401 | "http 0.2.12", |
402 | "http 1.1.0", | ||
394 | "pin-project-lite", | 403 | "pin-project-lite", |
395 | "tokio", | 404 | "tokio", |
396 | "tracing", | 405 | "tracing", |
@@ -399,16 +408,19 @@ dependencies = [ | |||
399 | 408 | ||
400 | [[package]] | 409 | [[package]] |
401 | name = "aws-smithy-types" | 410 | name = "aws-smithy-types" |
402 | version = "1.1.3" | 411 | version = "1.1.8" |
403 | source = "registry+https://github.com/rust-lang/crates.io-index" | 412 | source = "registry+https://github.com/rust-lang/crates.io-index" |
404 | checksum = "5d4bb944488536cd2fef43212d829bc7e9a8bfc4afa079d21170441e7be8d2d0" | 413 | checksum = "abe14dceea1e70101d38fbf2a99e6a34159477c0fb95e68e05c66bd7ae4c3729" |
405 | dependencies = [ | 414 | dependencies = [ |
406 | "base64-simd", | 415 | "base64-simd", |
407 | "bytes", | 416 | "bytes", |
408 | "bytes-utils", | 417 | "bytes-utils", |
409 | "futures-core", | 418 | "futures-core", |
410 | "http 0.2.11", | 419 | "http 0.2.12", |
420 | "http 1.1.0", | ||
411 | "http-body 0.4.6", | 421 | "http-body 0.4.6", |
422 | "http-body 1.0.0", | ||
423 | "http-body-util", | ||
412 | "itoa", | 424 | "itoa", |
413 | "num-integer", | 425 | "num-integer", |
414 | "pin-project-lite", | 426 | "pin-project-lite", |
@@ -422,42 +434,42 @@ dependencies = [ | |||
422 | 434 | ||
423 | [[package]] | 435 | [[package]] |
424 | name = "aws-smithy-xml" | 436 | name = "aws-smithy-xml" |
425 | version = "0.60.3" | 437 | version = "0.60.8" |
426 | source = "registry+https://github.com/rust-lang/crates.io-index" | 438 | source = "registry+https://github.com/rust-lang/crates.io-index" |
427 | checksum = "ef796feaf894d7fd03869235237aeffe73ed1b29a3927cceeee2eecadf876eba" | 439 | checksum = "d123fbc2a4adc3c301652ba8e149bf4bc1d1725affb9784eb20c953ace06bf55" |
428 | dependencies = [ | 440 | dependencies = [ |
429 | "xmlparser", | 441 | "xmlparser", |
430 | ] | 442 | ] |
431 | 443 | ||
432 | [[package]] | 444 | [[package]] |
433 | name = "aws-types" | 445 | name = "aws-types" |
434 | version = "1.1.2" | 446 | version = "1.2.0" |
435 | source = "registry+https://github.com/rust-lang/crates.io-index" | 447 | source = "registry+https://github.com/rust-lang/crates.io-index" |
436 | checksum = "8549aa62c5b7db5c57ab915200ee214b4f5d8f19b29a4a8fa0b3ad3bca1380e3" | 448 | checksum = "5a43b56df2c529fe44cb4d92bd64d0479883fb9608ff62daede4df5405381814" |
437 | dependencies = [ | 449 | dependencies = [ |
438 | "aws-credential-types", | 450 | "aws-credential-types", |
439 | "aws-smithy-async", | 451 | "aws-smithy-async", |
440 | "aws-smithy-runtime-api", | 452 | "aws-smithy-runtime-api", |
441 | "aws-smithy-types", | 453 | "aws-smithy-types", |
442 | "http 0.2.11", | 454 | "http 0.2.12", |
443 | "rustc_version", | 455 | "rustc_version", |
444 | "tracing", | 456 | "tracing", |
445 | ] | 457 | ] |
446 | 458 | ||
447 | [[package]] | 459 | [[package]] |
448 | name = "axum" | 460 | name = "axum" |
449 | version = "0.7.4" | 461 | version = "0.7.5" |
450 | source = "registry+https://github.com/rust-lang/crates.io-index" | 462 | source = "registry+https://github.com/rust-lang/crates.io-index" |
451 | checksum = "1236b4b292f6c4d6dc34604bb5120d85c3fe1d1aa596bd5cc52ca054d13e7b9e" | 463 | checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" |
452 | dependencies = [ | 464 | dependencies = [ |
453 | "async-trait", | 465 | "async-trait", |
454 | "axum-core", | 466 | "axum-core", |
455 | "bytes", | 467 | "bytes", |
456 | "futures-util", | 468 | "futures-util", |
457 | "http 1.0.0", | 469 | "http 1.1.0", |
458 | "http-body 1.0.0", | 470 | "http-body 1.0.0", |
459 | "http-body-util", | 471 | "http-body-util", |
460 | "hyper 1.1.0", | 472 | "hyper 1.3.1", |
461 | "hyper-util", | 473 | "hyper-util", |
462 | "itoa", | 474 | "itoa", |
463 | "matchit", | 475 | "matchit", |
@@ -470,7 +482,7 @@ dependencies = [ | |||
470 | "serde_json", | 482 | "serde_json", |
471 | "serde_path_to_error", | 483 | "serde_path_to_error", |
472 | "serde_urlencoded", | 484 | "serde_urlencoded", |
473 | "sync_wrapper", | 485 | "sync_wrapper 1.0.1", |
474 | "tokio", | 486 | "tokio", |
475 | "tower", | 487 | "tower", |
476 | "tower-layer", | 488 | "tower-layer", |
@@ -487,13 +499,13 @@ dependencies = [ | |||
487 | "async-trait", | 499 | "async-trait", |
488 | "bytes", | 500 | "bytes", |
489 | "futures-util", | 501 | "futures-util", |
490 | "http 1.0.0", | 502 | "http 1.1.0", |
491 | "http-body 1.0.0", | 503 | "http-body 1.0.0", |
492 | "http-body-util", | 504 | "http-body-util", |
493 | "mime", | 505 | "mime", |
494 | "pin-project-lite", | 506 | "pin-project-lite", |
495 | "rustversion", | 507 | "rustversion", |
496 | "sync_wrapper", | 508 | "sync_wrapper 0.1.2", |
497 | "tower-layer", | 509 | "tower-layer", |
498 | "tower-service", | 510 | "tower-service", |
499 | "tracing", | 511 | "tracing", |
@@ -501,9 +513,9 @@ dependencies = [ | |||
501 | 513 | ||
502 | [[package]] | 514 | [[package]] |
503 | name = "backtrace" | 515 | name = "backtrace" |
504 | version = "0.3.69" | 516 | version = "0.3.71" |
505 | source = "registry+https://github.com/rust-lang/crates.io-index" | 517 | source = "registry+https://github.com/rust-lang/crates.io-index" |
506 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" | 518 | checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" |
507 | dependencies = [ | 519 | dependencies = [ |
508 | "addr2line", | 520 | "addr2line", |
509 | "cc", | 521 | "cc", |
@@ -549,6 +561,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
549 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | 561 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
550 | 562 | ||
551 | [[package]] | 563 | [[package]] |
564 | name = "bitflags" | ||
565 | version = "2.5.0" | ||
566 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
567 | checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" | ||
568 | |||
569 | [[package]] | ||
552 | name = "block-buffer" | 570 | name = "block-buffer" |
553 | version = "0.10.4" | 571 | version = "0.10.4" |
554 | source = "registry+https://github.com/rust-lang/crates.io-index" | 572 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -559,15 +577,15 @@ dependencies = [ | |||
559 | 577 | ||
560 | [[package]] | 578 | [[package]] |
561 | name = "bumpalo" | 579 | name = "bumpalo" |
562 | version = "3.14.0" | 580 | version = "3.16.0" |
563 | source = "registry+https://github.com/rust-lang/crates.io-index" | 581 | source = "registry+https://github.com/rust-lang/crates.io-index" |
564 | checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" | 582 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" |
565 | 583 | ||
566 | [[package]] | 584 | [[package]] |
567 | name = "bytes" | 585 | name = "bytes" |
568 | version = "1.5.0" | 586 | version = "1.6.0" |
569 | source = "registry+https://github.com/rust-lang/crates.io-index" | 587 | source = "registry+https://github.com/rust-lang/crates.io-index" |
570 | checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" | 588 | checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" |
571 | 589 | ||
572 | [[package]] | 590 | [[package]] |
573 | name = "bytes-utils" | 591 | name = "bytes-utils" |
@@ -581,12 +599,9 @@ dependencies = [ | |||
581 | 599 | ||
582 | [[package]] | 600 | [[package]] |
583 | name = "cc" | 601 | name = "cc" |
584 | version = "1.0.83" | 602 | version = "1.0.95" |
585 | source = "registry+https://github.com/rust-lang/crates.io-index" | 603 | source = "registry+https://github.com/rust-lang/crates.io-index" |
586 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" | 604 | checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b" |
587 | dependencies = [ | ||
588 | "libc", | ||
589 | ] | ||
590 | 605 | ||
591 | [[package]] | 606 | [[package]] |
592 | name = "cfg-if" | 607 | name = "cfg-if" |
@@ -596,9 +611,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | |||
596 | 611 | ||
597 | [[package]] | 612 | [[package]] |
598 | name = "chrono" | 613 | name = "chrono" |
599 | version = "0.4.31" | 614 | version = "0.4.38" |
600 | source = "registry+https://github.com/rust-lang/crates.io-index" | 615 | source = "registry+https://github.com/rust-lang/crates.io-index" |
601 | checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" | 616 | checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" |
602 | dependencies = [ | 617 | dependencies = [ |
603 | "android-tzdata", | 618 | "android-tzdata", |
604 | "iana-time-zone", | 619 | "iana-time-zone", |
@@ -606,7 +621,7 @@ dependencies = [ | |||
606 | "num-traits", | 621 | "num-traits", |
607 | "serde", | 622 | "serde", |
608 | "wasm-bindgen", | 623 | "wasm-bindgen", |
609 | "windows-targets 0.48.5", | 624 | "windows-targets 0.52.5", |
610 | ] | 625 | ] |
611 | 626 | ||
612 | [[package]] | 627 | [[package]] |
@@ -652,18 +667,18 @@ dependencies = [ | |||
652 | 667 | ||
653 | [[package]] | 668 | [[package]] |
654 | name = "crc32c" | 669 | name = "crc32c" |
655 | version = "0.6.4" | 670 | version = "0.6.5" |
656 | source = "registry+https://github.com/rust-lang/crates.io-index" | 671 | source = "registry+https://github.com/rust-lang/crates.io-index" |
657 | checksum = "d8f48d60e5b4d2c53d5c2b1d8a58c849a70ae5e5509b08a48d047e3b65714a74" | 672 | checksum = "89254598aa9b9fa608de44b3ae54c810f0f06d755e24c50177f1f8f31ff50ce2" |
658 | dependencies = [ | 673 | dependencies = [ |
659 | "rustc_version", | 674 | "rustc_version", |
660 | ] | 675 | ] |
661 | 676 | ||
662 | [[package]] | 677 | [[package]] |
663 | name = "crc32fast" | 678 | name = "crc32fast" |
664 | version = "1.3.2" | 679 | version = "1.4.0" |
665 | source = "registry+https://github.com/rust-lang/crates.io-index" | 680 | source = "registry+https://github.com/rust-lang/crates.io-index" |
666 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" | 681 | checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa" |
667 | dependencies = [ | 682 | dependencies = [ |
668 | "cfg-if", | 683 | "cfg-if", |
669 | ] | 684 | ] |
@@ -744,9 +759,9 @@ dependencies = [ | |||
744 | 759 | ||
745 | [[package]] | 760 | [[package]] |
746 | name = "either" | 761 | name = "either" |
747 | version = "1.9.0" | 762 | version = "1.11.0" |
748 | source = "registry+https://github.com/rust-lang/crates.io-index" | 763 | source = "registry+https://github.com/rust-lang/crates.io-index" |
749 | checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" | 764 | checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2" |
750 | 765 | ||
751 | [[package]] | 766 | [[package]] |
752 | name = "elliptic-curve" | 767 | name = "elliptic-curve" |
@@ -776,9 +791,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" | |||
776 | 791 | ||
777 | [[package]] | 792 | [[package]] |
778 | name = "fastrand" | 793 | name = "fastrand" |
779 | version = "2.0.1" | 794 | version = "2.1.0" |
780 | source = "registry+https://github.com/rust-lang/crates.io-index" | 795 | source = "registry+https://github.com/rust-lang/crates.io-index" |
781 | checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" | 796 | checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" |
782 | 797 | ||
783 | [[package]] | 798 | [[package]] |
784 | name = "ff" | 799 | name = "ff" |
@@ -856,9 +871,9 @@ dependencies = [ | |||
856 | 871 | ||
857 | [[package]] | 872 | [[package]] |
858 | name = "getrandom" | 873 | name = "getrandom" |
859 | version = "0.2.12" | 874 | version = "0.2.14" |
860 | source = "registry+https://github.com/rust-lang/crates.io-index" | 875 | source = "registry+https://github.com/rust-lang/crates.io-index" |
861 | checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5" | 876 | checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" |
862 | dependencies = [ | 877 | dependencies = [ |
863 | "cfg-if", | 878 | "cfg-if", |
864 | "libc", | 879 | "libc", |
@@ -894,16 +909,16 @@ dependencies = [ | |||
894 | 909 | ||
895 | [[package]] | 910 | [[package]] |
896 | name = "h2" | 911 | name = "h2" |
897 | version = "0.3.24" | 912 | version = "0.3.26" |
898 | source = "registry+https://github.com/rust-lang/crates.io-index" | 913 | source = "registry+https://github.com/rust-lang/crates.io-index" |
899 | checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9" | 914 | checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" |
900 | dependencies = [ | 915 | dependencies = [ |
901 | "bytes", | 916 | "bytes", |
902 | "fnv", | 917 | "fnv", |
903 | "futures-core", | 918 | "futures-core", |
904 | "futures-sink", | 919 | "futures-sink", |
905 | "futures-util", | 920 | "futures-util", |
906 | "http 0.2.11", | 921 | "http 0.2.12", |
907 | "indexmap", | 922 | "indexmap", |
908 | "slab", | 923 | "slab", |
909 | "tokio", | 924 | "tokio", |
@@ -912,35 +927,20 @@ dependencies = [ | |||
912 | ] | 927 | ] |
913 | 928 | ||
914 | [[package]] | 929 | [[package]] |
915 | name = "h2" | 930 | name = "hashbrown" |
916 | version = "0.4.2" | 931 | version = "0.14.5" |
917 | source = "registry+https://github.com/rust-lang/crates.io-index" | 932 | source = "registry+https://github.com/rust-lang/crates.io-index" |
918 | checksum = "31d030e59af851932b72ceebadf4a2b5986dba4c3b99dd2493f8273a0f151943" | 933 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" |
919 | dependencies = [ | 934 | dependencies = [ |
920 | "bytes", | 935 | "ahash", |
921 | "fnv", | 936 | "allocator-api2", |
922 | "futures-core", | ||
923 | "futures-sink", | ||
924 | "futures-util", | ||
925 | "http 1.0.0", | ||
926 | "indexmap", | ||
927 | "slab", | ||
928 | "tokio", | ||
929 | "tokio-util", | ||
930 | "tracing", | ||
931 | ] | 937 | ] |
932 | 938 | ||
933 | [[package]] | 939 | [[package]] |
934 | name = "hashbrown" | ||
935 | version = "0.14.3" | ||
936 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
937 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" | ||
938 | |||
939 | [[package]] | ||
940 | name = "hermit-abi" | 940 | name = "hermit-abi" |
941 | version = "0.3.3" | 941 | version = "0.3.9" |
942 | source = "registry+https://github.com/rust-lang/crates.io-index" | 942 | source = "registry+https://github.com/rust-lang/crates.io-index" |
943 | checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" | 943 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" |
944 | 944 | ||
945 | [[package]] | 945 | [[package]] |
946 | name = "hex" | 946 | name = "hex" |
@@ -965,9 +965,9 @@ checksum = "3688e69b38018fec1557254f64c8dc2cc8ec502890182f395dbb0aa997aa5735" | |||
965 | 965 | ||
966 | [[package]] | 966 | [[package]] |
967 | name = "http" | 967 | name = "http" |
968 | version = "0.2.11" | 968 | version = "0.2.12" |
969 | source = "registry+https://github.com/rust-lang/crates.io-index" | 969 | source = "registry+https://github.com/rust-lang/crates.io-index" |
970 | checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" | 970 | checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" |
971 | dependencies = [ | 971 | dependencies = [ |
972 | "bytes", | 972 | "bytes", |
973 | "fnv", | 973 | "fnv", |
@@ -976,9 +976,9 @@ dependencies = [ | |||
976 | 976 | ||
977 | [[package]] | 977 | [[package]] |
978 | name = "http" | 978 | name = "http" |
979 | version = "1.0.0" | 979 | version = "1.1.0" |
980 | source = "registry+https://github.com/rust-lang/crates.io-index" | 980 | source = "registry+https://github.com/rust-lang/crates.io-index" |
981 | checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea" | 981 | checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" |
982 | dependencies = [ | 982 | dependencies = [ |
983 | "bytes", | 983 | "bytes", |
984 | "fnv", | 984 | "fnv", |
@@ -992,7 +992,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
992 | checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" | 992 | checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" |
993 | dependencies = [ | 993 | dependencies = [ |
994 | "bytes", | 994 | "bytes", |
995 | "http 0.2.11", | 995 | "http 0.2.12", |
996 | "pin-project-lite", | 996 | "pin-project-lite", |
997 | ] | 997 | ] |
998 | 998 | ||
@@ -1003,18 +1003,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1003 | checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" | 1003 | checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643" |
1004 | dependencies = [ | 1004 | dependencies = [ |
1005 | "bytes", | 1005 | "bytes", |
1006 | "http 1.0.0", | 1006 | "http 1.1.0", |
1007 | ] | 1007 | ] |
1008 | 1008 | ||
1009 | [[package]] | 1009 | [[package]] |
1010 | name = "http-body-util" | 1010 | name = "http-body-util" |
1011 | version = "0.1.0" | 1011 | version = "0.1.1" |
1012 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1012 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1013 | checksum = "41cb79eb393015dadd30fc252023adb0b2400a0caee0fa2a077e6e21a551e840" | 1013 | checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d" |
1014 | dependencies = [ | 1014 | dependencies = [ |
1015 | "bytes", | 1015 | "bytes", |
1016 | "futures-util", | 1016 | "futures-core", |
1017 | "http 1.0.0", | 1017 | "http 1.1.0", |
1018 | "http-body 1.0.0", | 1018 | "http-body 1.0.0", |
1019 | "pin-project-lite", | 1019 | "pin-project-lite", |
1020 | ] | 1020 | ] |
@@ -1041,8 +1041,8 @@ dependencies = [ | |||
1041 | "futures-channel", | 1041 | "futures-channel", |
1042 | "futures-core", | 1042 | "futures-core", |
1043 | "futures-util", | 1043 | "futures-util", |
1044 | "h2 0.3.24", | 1044 | "h2", |
1045 | "http 0.2.11", | 1045 | "http 0.2.12", |
1046 | "http-body 0.4.6", | 1046 | "http-body 0.4.6", |
1047 | "httparse", | 1047 | "httparse", |
1048 | "httpdate", | 1048 | "httpdate", |
@@ -1057,20 +1057,20 @@ dependencies = [ | |||
1057 | 1057 | ||
1058 | [[package]] | 1058 | [[package]] |
1059 | name = "hyper" | 1059 | name = "hyper" |
1060 | version = "1.1.0" | 1060 | version = "1.3.1" |
1061 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1061 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1062 | checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75" | 1062 | checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d" |
1063 | dependencies = [ | 1063 | dependencies = [ |
1064 | "bytes", | 1064 | "bytes", |
1065 | "futures-channel", | 1065 | "futures-channel", |
1066 | "futures-util", | 1066 | "futures-util", |
1067 | "h2 0.4.2", | 1067 | "http 1.1.0", |
1068 | "http 1.0.0", | ||
1069 | "http-body 1.0.0", | 1068 | "http-body 1.0.0", |
1070 | "httparse", | 1069 | "httparse", |
1071 | "httpdate", | 1070 | "httpdate", |
1072 | "itoa", | 1071 | "itoa", |
1073 | "pin-project-lite", | 1072 | "pin-project-lite", |
1073 | "smallvec", | ||
1074 | "tokio", | 1074 | "tokio", |
1075 | ] | 1075 | ] |
1076 | 1076 | ||
@@ -1081,7 +1081,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1081 | checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" | 1081 | checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" |
1082 | dependencies = [ | 1082 | dependencies = [ |
1083 | "futures-util", | 1083 | "futures-util", |
1084 | "http 0.2.11", | 1084 | "http 0.2.12", |
1085 | "hyper 0.14.28", | 1085 | "hyper 0.14.28", |
1086 | "log", | 1086 | "log", |
1087 | "rustls", | 1087 | "rustls", |
@@ -1092,27 +1092,25 @@ dependencies = [ | |||
1092 | 1092 | ||
1093 | [[package]] | 1093 | [[package]] |
1094 | name = "hyper-util" | 1094 | name = "hyper-util" |
1095 | version = "0.1.2" | 1095 | version = "0.1.3" |
1096 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1096 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1097 | checksum = "bdea9aac0dbe5a9240d68cfd9501e2db94222c6dc06843e06640b9e07f0fdc67" | 1097 | checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa" |
1098 | dependencies = [ | 1098 | dependencies = [ |
1099 | "bytes", | 1099 | "bytes", |
1100 | "futures-channel", | ||
1101 | "futures-util", | 1100 | "futures-util", |
1102 | "http 1.0.0", | 1101 | "http 1.1.0", |
1103 | "http-body 1.0.0", | 1102 | "http-body 1.0.0", |
1104 | "hyper 1.1.0", | 1103 | "hyper 1.3.1", |
1105 | "pin-project-lite", | 1104 | "pin-project-lite", |
1106 | "socket2", | 1105 | "socket2", |
1107 | "tokio", | 1106 | "tokio", |
1108 | "tracing", | ||
1109 | ] | 1107 | ] |
1110 | 1108 | ||
1111 | [[package]] | 1109 | [[package]] |
1112 | name = "iana-time-zone" | 1110 | name = "iana-time-zone" |
1113 | version = "0.1.59" | 1111 | version = "0.1.60" |
1114 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1112 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1115 | checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539" | 1113 | checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" |
1116 | dependencies = [ | 1114 | dependencies = [ |
1117 | "android_system_properties", | 1115 | "android_system_properties", |
1118 | "core-foundation-sys", | 1116 | "core-foundation-sys", |
@@ -1143,9 +1141,9 @@ dependencies = [ | |||
1143 | 1141 | ||
1144 | [[package]] | 1142 | [[package]] |
1145 | name = "indexmap" | 1143 | name = "indexmap" |
1146 | version = "2.1.0" | 1144 | version = "2.2.6" |
1147 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1145 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1148 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" | 1146 | checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" |
1149 | dependencies = [ | 1147 | dependencies = [ |
1150 | "equivalent", | 1148 | "equivalent", |
1151 | "hashbrown", | 1149 | "hashbrown", |
@@ -1153,15 +1151,15 @@ dependencies = [ | |||
1153 | 1151 | ||
1154 | [[package]] | 1152 | [[package]] |
1155 | name = "itoa" | 1153 | name = "itoa" |
1156 | version = "1.0.10" | 1154 | version = "1.0.11" |
1157 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1155 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1158 | checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" | 1156 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" |
1159 | 1157 | ||
1160 | [[package]] | 1158 | [[package]] |
1161 | name = "js-sys" | 1159 | name = "js-sys" |
1162 | version = "0.3.67" | 1160 | version = "0.3.69" |
1163 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1161 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1164 | checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" | 1162 | checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" |
1165 | dependencies = [ | 1163 | dependencies = [ |
1166 | "wasm-bindgen", | 1164 | "wasm-bindgen", |
1167 | ] | 1165 | ] |
@@ -1174,15 +1172,15 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | |||
1174 | 1172 | ||
1175 | [[package]] | 1173 | [[package]] |
1176 | name = "libc" | 1174 | name = "libc" |
1177 | version = "0.2.152" | 1175 | version = "0.2.153" |
1178 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1176 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1179 | checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" | 1177 | checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" |
1180 | 1178 | ||
1181 | [[package]] | 1179 | [[package]] |
1182 | name = "lock_api" | 1180 | name = "lock_api" |
1183 | version = "0.4.11" | 1181 | version = "0.4.12" |
1184 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1182 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1185 | checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" | 1183 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" |
1186 | dependencies = [ | 1184 | dependencies = [ |
1187 | "autocfg", | 1185 | "autocfg", |
1188 | "scopeguard", | 1186 | "scopeguard", |
@@ -1190,9 +1188,18 @@ dependencies = [ | |||
1190 | 1188 | ||
1191 | [[package]] | 1189 | [[package]] |
1192 | name = "log" | 1190 | name = "log" |
1193 | version = "0.4.20" | 1191 | version = "0.4.21" |
1194 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1192 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1195 | checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" | 1193 | checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" |
1194 | |||
1195 | [[package]] | ||
1196 | name = "lru" | ||
1197 | version = "0.12.3" | ||
1198 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1199 | checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc" | ||
1200 | dependencies = [ | ||
1201 | "hashbrown", | ||
1202 | ] | ||
1196 | 1203 | ||
1197 | [[package]] | 1204 | [[package]] |
1198 | name = "matchers" | 1205 | name = "matchers" |
@@ -1221,9 +1228,9 @@ dependencies = [ | |||
1221 | 1228 | ||
1222 | [[package]] | 1229 | [[package]] |
1223 | name = "memchr" | 1230 | name = "memchr" |
1224 | version = "2.7.1" | 1231 | version = "2.7.2" |
1225 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1232 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1226 | checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" | 1233 | checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" |
1227 | 1234 | ||
1228 | [[package]] | 1235 | [[package]] |
1229 | name = "mime" | 1236 | name = "mime" |
@@ -1233,18 +1240,18 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" | |||
1233 | 1240 | ||
1234 | [[package]] | 1241 | [[package]] |
1235 | name = "miniz_oxide" | 1242 | name = "miniz_oxide" |
1236 | version = "0.7.1" | 1243 | version = "0.7.2" |
1237 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1244 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1238 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" | 1245 | checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" |
1239 | dependencies = [ | 1246 | dependencies = [ |
1240 | "adler", | 1247 | "adler", |
1241 | ] | 1248 | ] |
1242 | 1249 | ||
1243 | [[package]] | 1250 | [[package]] |
1244 | name = "mio" | 1251 | name = "mio" |
1245 | version = "0.8.10" | 1252 | version = "0.8.11" |
1246 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1253 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1247 | checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" | 1254 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" |
1248 | dependencies = [ | 1255 | dependencies = [ |
1249 | "libc", | 1256 | "libc", |
1250 | "wasi", | 1257 | "wasi", |
@@ -1262,20 +1269,25 @@ dependencies = [ | |||
1262 | ] | 1269 | ] |
1263 | 1270 | ||
1264 | [[package]] | 1271 | [[package]] |
1272 | name = "num-conv" | ||
1273 | version = "0.1.0" | ||
1274 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1275 | checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" | ||
1276 | |||
1277 | [[package]] | ||
1265 | name = "num-integer" | 1278 | name = "num-integer" |
1266 | version = "0.1.45" | 1279 | version = "0.1.46" |
1267 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1280 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1268 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" | 1281 | checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" |
1269 | dependencies = [ | 1282 | dependencies = [ |
1270 | "autocfg", | ||
1271 | "num-traits", | 1283 | "num-traits", |
1272 | ] | 1284 | ] |
1273 | 1285 | ||
1274 | [[package]] | 1286 | [[package]] |
1275 | name = "num-traits" | 1287 | name = "num-traits" |
1276 | version = "0.2.17" | 1288 | version = "0.2.18" |
1277 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1289 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1278 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" | 1290 | checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" |
1279 | dependencies = [ | 1291 | dependencies = [ |
1280 | "autocfg", | 1292 | "autocfg", |
1281 | ] | 1293 | ] |
@@ -1336,9 +1348,9 @@ dependencies = [ | |||
1336 | 1348 | ||
1337 | [[package]] | 1349 | [[package]] |
1338 | name = "parking_lot" | 1350 | name = "parking_lot" |
1339 | version = "0.12.1" | 1351 | version = "0.12.2" |
1340 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1352 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1341 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" | 1353 | checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" |
1342 | dependencies = [ | 1354 | dependencies = [ |
1343 | "lock_api", | 1355 | "lock_api", |
1344 | "parking_lot_core", | 1356 | "parking_lot_core", |
@@ -1346,15 +1358,15 @@ dependencies = [ | |||
1346 | 1358 | ||
1347 | [[package]] | 1359 | [[package]] |
1348 | name = "parking_lot_core" | 1360 | name = "parking_lot_core" |
1349 | version = "0.9.9" | 1361 | version = "0.9.10" |
1350 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1362 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1351 | checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" | 1363 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" |
1352 | dependencies = [ | 1364 | dependencies = [ |
1353 | "cfg-if", | 1365 | "cfg-if", |
1354 | "libc", | 1366 | "libc", |
1355 | "redox_syscall", | 1367 | "redox_syscall", |
1356 | "smallvec", | 1368 | "smallvec", |
1357 | "windows-targets 0.48.5", | 1369 | "windows-targets 0.52.5", |
1358 | ] | 1370 | ] |
1359 | 1371 | ||
1360 | [[package]] | 1372 | [[package]] |
@@ -1365,18 +1377,18 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" | |||
1365 | 1377 | ||
1366 | [[package]] | 1378 | [[package]] |
1367 | name = "pin-project" | 1379 | name = "pin-project" |
1368 | version = "1.1.3" | 1380 | version = "1.1.5" |
1369 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1381 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1370 | checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" | 1382 | checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" |
1371 | dependencies = [ | 1383 | dependencies = [ |
1372 | "pin-project-internal", | 1384 | "pin-project-internal", |
1373 | ] | 1385 | ] |
1374 | 1386 | ||
1375 | [[package]] | 1387 | [[package]] |
1376 | name = "pin-project-internal" | 1388 | name = "pin-project-internal" |
1377 | version = "1.1.3" | 1389 | version = "1.1.5" |
1378 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1390 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1379 | checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" | 1391 | checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" |
1380 | dependencies = [ | 1392 | dependencies = [ |
1381 | "proc-macro2", | 1393 | "proc-macro2", |
1382 | "quote", | 1394 | "quote", |
@@ -1385,9 +1397,9 @@ dependencies = [ | |||
1385 | 1397 | ||
1386 | [[package]] | 1398 | [[package]] |
1387 | name = "pin-project-lite" | 1399 | name = "pin-project-lite" |
1388 | version = "0.2.13" | 1400 | version = "0.2.14" |
1389 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1401 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1390 | checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" | 1402 | checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" |
1391 | 1403 | ||
1392 | [[package]] | 1404 | [[package]] |
1393 | name = "pin-utils" | 1405 | name = "pin-utils" |
@@ -1413,18 +1425,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" | |||
1413 | 1425 | ||
1414 | [[package]] | 1426 | [[package]] |
1415 | name = "proc-macro2" | 1427 | name = "proc-macro2" |
1416 | version = "1.0.76" | 1428 | version = "1.0.81" |
1417 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1429 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1418 | checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c" | 1430 | checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba" |
1419 | dependencies = [ | 1431 | dependencies = [ |
1420 | "unicode-ident", | 1432 | "unicode-ident", |
1421 | ] | 1433 | ] |
1422 | 1434 | ||
1423 | [[package]] | 1435 | [[package]] |
1424 | name = "quote" | 1436 | name = "quote" |
1425 | version = "1.0.35" | 1437 | version = "1.0.36" |
1426 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1438 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1427 | checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" | 1439 | checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" |
1428 | dependencies = [ | 1440 | dependencies = [ |
1429 | "proc-macro2", | 1441 | "proc-macro2", |
1430 | ] | 1442 | ] |
@@ -1440,23 +1452,23 @@ dependencies = [ | |||
1440 | 1452 | ||
1441 | [[package]] | 1453 | [[package]] |
1442 | name = "redox_syscall" | 1454 | name = "redox_syscall" |
1443 | version = "0.4.1" | 1455 | version = "0.5.1" |
1444 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1456 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1445 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" | 1457 | checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" |
1446 | dependencies = [ | 1458 | dependencies = [ |
1447 | "bitflags", | 1459 | "bitflags 2.5.0", |
1448 | ] | 1460 | ] |
1449 | 1461 | ||
1450 | [[package]] | 1462 | [[package]] |
1451 | name = "regex" | 1463 | name = "regex" |
1452 | version = "1.10.3" | 1464 | version = "1.10.4" |
1453 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1465 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1454 | checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" | 1466 | checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" |
1455 | dependencies = [ | 1467 | dependencies = [ |
1456 | "aho-corasick", | 1468 | "aho-corasick", |
1457 | "memchr", | 1469 | "memchr", |
1458 | "regex-automata 0.4.4", | 1470 | "regex-automata 0.4.6", |
1459 | "regex-syntax 0.8.2", | 1471 | "regex-syntax 0.8.3", |
1460 | ] | 1472 | ] |
1461 | 1473 | ||
1462 | [[package]] | 1474 | [[package]] |
@@ -1470,13 +1482,13 @@ dependencies = [ | |||
1470 | 1482 | ||
1471 | [[package]] | 1483 | [[package]] |
1472 | name = "regex-automata" | 1484 | name = "regex-automata" |
1473 | version = "0.4.4" | 1485 | version = "0.4.6" |
1474 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1486 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1475 | checksum = "3b7fa1134405e2ec9353fd416b17f8dacd46c473d7d3fd1cf202706a14eb792a" | 1487 | checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea" |
1476 | dependencies = [ | 1488 | dependencies = [ |
1477 | "aho-corasick", | 1489 | "aho-corasick", |
1478 | "memchr", | 1490 | "memchr", |
1479 | "regex-syntax 0.8.2", | 1491 | "regex-syntax 0.8.3", |
1480 | ] | 1492 | ] |
1481 | 1493 | ||
1482 | [[package]] | 1494 | [[package]] |
@@ -1493,9 +1505,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" | |||
1493 | 1505 | ||
1494 | [[package]] | 1506 | [[package]] |
1495 | name = "regex-syntax" | 1507 | name = "regex-syntax" |
1496 | version = "0.8.2" | 1508 | version = "0.8.3" |
1497 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1509 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1498 | checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" | 1510 | checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" |
1499 | 1511 | ||
1500 | [[package]] | 1512 | [[package]] |
1501 | name = "rfc6979" | 1513 | name = "rfc6979" |
@@ -1510,16 +1522,17 @@ dependencies = [ | |||
1510 | 1522 | ||
1511 | [[package]] | 1523 | [[package]] |
1512 | name = "ring" | 1524 | name = "ring" |
1513 | version = "0.17.7" | 1525 | version = "0.17.8" |
1514 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1526 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1515 | checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" | 1527 | checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" |
1516 | dependencies = [ | 1528 | dependencies = [ |
1517 | "cc", | 1529 | "cc", |
1530 | "cfg-if", | ||
1518 | "getrandom", | 1531 | "getrandom", |
1519 | "libc", | 1532 | "libc", |
1520 | "spin", | 1533 | "spin", |
1521 | "untrusted", | 1534 | "untrusted", |
1522 | "windows-sys 0.48.0", | 1535 | "windows-sys 0.52.0", |
1523 | ] | 1536 | ] |
1524 | 1537 | ||
1525 | [[package]] | 1538 | [[package]] |
@@ -1539,9 +1552,9 @@ dependencies = [ | |||
1539 | 1552 | ||
1540 | [[package]] | 1553 | [[package]] |
1541 | name = "rustls" | 1554 | name = "rustls" |
1542 | version = "0.21.10" | 1555 | version = "0.21.12" |
1543 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1556 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1544 | checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" | 1557 | checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" |
1545 | dependencies = [ | 1558 | dependencies = [ |
1546 | "log", | 1559 | "log", |
1547 | "ring", | 1560 | "ring", |
@@ -1582,15 +1595,15 @@ dependencies = [ | |||
1582 | 1595 | ||
1583 | [[package]] | 1596 | [[package]] |
1584 | name = "rustversion" | 1597 | name = "rustversion" |
1585 | version = "1.0.14" | 1598 | version = "1.0.15" |
1586 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1599 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1587 | checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" | 1600 | checksum = "80af6f9131f277a45a3fba6ce8e2258037bb0477a67e610d3c1fe046ab31de47" |
1588 | 1601 | ||
1589 | [[package]] | 1602 | [[package]] |
1590 | name = "ryu" | 1603 | name = "ryu" |
1591 | version = "1.0.16" | 1604 | version = "1.0.17" |
1592 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1605 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1593 | checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" | 1606 | checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" |
1594 | 1607 | ||
1595 | [[package]] | 1608 | [[package]] |
1596 | name = "schannel" | 1609 | name = "schannel" |
@@ -1633,11 +1646,11 @@ dependencies = [ | |||
1633 | 1646 | ||
1634 | [[package]] | 1647 | [[package]] |
1635 | name = "security-framework" | 1648 | name = "security-framework" |
1636 | version = "2.9.2" | 1649 | version = "2.10.0" |
1637 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1650 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1638 | checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" | 1651 | checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" |
1639 | dependencies = [ | 1652 | dependencies = [ |
1640 | "bitflags", | 1653 | "bitflags 1.3.2", |
1641 | "core-foundation", | 1654 | "core-foundation", |
1642 | "core-foundation-sys", | 1655 | "core-foundation-sys", |
1643 | "libc", | 1656 | "libc", |
@@ -1646,9 +1659,9 @@ dependencies = [ | |||
1646 | 1659 | ||
1647 | [[package]] | 1660 | [[package]] |
1648 | name = "security-framework-sys" | 1661 | name = "security-framework-sys" |
1649 | version = "2.9.1" | 1662 | version = "2.10.0" |
1650 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1663 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1651 | checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" | 1664 | checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" |
1652 | dependencies = [ | 1665 | dependencies = [ |
1653 | "core-foundation-sys", | 1666 | "core-foundation-sys", |
1654 | "libc", | 1667 | "libc", |
@@ -1656,24 +1669,24 @@ dependencies = [ | |||
1656 | 1669 | ||
1657 | [[package]] | 1670 | [[package]] |
1658 | name = "semver" | 1671 | name = "semver" |
1659 | version = "1.0.21" | 1672 | version = "1.0.22" |
1660 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1673 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1661 | checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" | 1674 | checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" |
1662 | 1675 | ||
1663 | [[package]] | 1676 | [[package]] |
1664 | name = "serde" | 1677 | name = "serde" |
1665 | version = "1.0.195" | 1678 | version = "1.0.199" |
1666 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1679 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1667 | checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02" | 1680 | checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" |
1668 | dependencies = [ | 1681 | dependencies = [ |
1669 | "serde_derive", | 1682 | "serde_derive", |
1670 | ] | 1683 | ] |
1671 | 1684 | ||
1672 | [[package]] | 1685 | [[package]] |
1673 | name = "serde_derive" | 1686 | name = "serde_derive" |
1674 | version = "1.0.195" | 1687 | version = "1.0.199" |
1675 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1688 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1676 | checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c" | 1689 | checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" |
1677 | dependencies = [ | 1690 | dependencies = [ |
1678 | "proc-macro2", | 1691 | "proc-macro2", |
1679 | "quote", | 1692 | "quote", |
@@ -1682,9 +1695,9 @@ dependencies = [ | |||
1682 | 1695 | ||
1683 | [[package]] | 1696 | [[package]] |
1684 | name = "serde_json" | 1697 | name = "serde_json" |
1685 | version = "1.0.111" | 1698 | version = "1.0.116" |
1686 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1699 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1687 | checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4" | 1700 | checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" |
1688 | dependencies = [ | 1701 | dependencies = [ |
1689 | "itoa", | 1702 | "itoa", |
1690 | "ryu", | 1703 | "ryu", |
@@ -1693,9 +1706,9 @@ dependencies = [ | |||
1693 | 1706 | ||
1694 | [[package]] | 1707 | [[package]] |
1695 | name = "serde_path_to_error" | 1708 | name = "serde_path_to_error" |
1696 | version = "0.1.15" | 1709 | version = "0.1.16" |
1697 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1710 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1698 | checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c" | 1711 | checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" |
1699 | dependencies = [ | 1712 | dependencies = [ |
1700 | "itoa", | 1713 | "itoa", |
1701 | "serde", | 1714 | "serde", |
@@ -1769,9 +1782,9 @@ version = "0.1.0" | |||
1769 | 1782 | ||
1770 | [[package]] | 1783 | [[package]] |
1771 | name = "signal-hook-registry" | 1784 | name = "signal-hook-registry" |
1772 | version = "1.4.1" | 1785 | version = "1.4.2" |
1773 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1786 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1774 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" | 1787 | checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" |
1775 | dependencies = [ | 1788 | dependencies = [ |
1776 | "libc", | 1789 | "libc", |
1777 | ] | 1790 | ] |
@@ -1797,18 +1810,18 @@ dependencies = [ | |||
1797 | 1810 | ||
1798 | [[package]] | 1811 | [[package]] |
1799 | name = "smallvec" | 1812 | name = "smallvec" |
1800 | version = "1.11.2" | 1813 | version = "1.13.2" |
1801 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1814 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1802 | checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" | 1815 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" |
1803 | 1816 | ||
1804 | [[package]] | 1817 | [[package]] |
1805 | name = "socket2" | 1818 | name = "socket2" |
1806 | version = "0.5.5" | 1819 | version = "0.5.7" |
1807 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1820 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1808 | checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" | 1821 | checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" |
1809 | dependencies = [ | 1822 | dependencies = [ |
1810 | "libc", | 1823 | "libc", |
1811 | "windows-sys 0.48.0", | 1824 | "windows-sys 0.52.0", |
1812 | ] | 1825 | ] |
1813 | 1826 | ||
1814 | [[package]] | 1827 | [[package]] |
@@ -1835,9 +1848,9 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" | |||
1835 | 1848 | ||
1836 | [[package]] | 1849 | [[package]] |
1837 | name = "syn" | 1850 | name = "syn" |
1838 | version = "2.0.48" | 1851 | version = "2.0.60" |
1839 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1852 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1840 | checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" | 1853 | checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3" |
1841 | dependencies = [ | 1854 | dependencies = [ |
1842 | "proc-macro2", | 1855 | "proc-macro2", |
1843 | "quote", | 1856 | "quote", |
@@ -1851,10 +1864,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1851 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" | 1864 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" |
1852 | 1865 | ||
1853 | [[package]] | 1866 | [[package]] |
1867 | name = "sync_wrapper" | ||
1868 | version = "1.0.1" | ||
1869 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1870 | checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" | ||
1871 | |||
1872 | [[package]] | ||
1854 | name = "thread_local" | 1873 | name = "thread_local" |
1855 | version = "1.1.7" | 1874 | version = "1.1.8" |
1856 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1875 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1857 | checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" | 1876 | checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" |
1858 | dependencies = [ | 1877 | dependencies = [ |
1859 | "cfg-if", | 1878 | "cfg-if", |
1860 | "once_cell", | 1879 | "once_cell", |
@@ -1862,11 +1881,12 @@ dependencies = [ | |||
1862 | 1881 | ||
1863 | [[package]] | 1882 | [[package]] |
1864 | name = "time" | 1883 | name = "time" |
1865 | version = "0.3.31" | 1884 | version = "0.3.36" |
1866 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1885 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1867 | checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" | 1886 | checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" |
1868 | dependencies = [ | 1887 | dependencies = [ |
1869 | "deranged", | 1888 | "deranged", |
1889 | "num-conv", | ||
1870 | "powerfmt", | 1890 | "powerfmt", |
1871 | "serde", | 1891 | "serde", |
1872 | "time-core", | 1892 | "time-core", |
@@ -1881,10 +1901,11 @@ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" | |||
1881 | 1901 | ||
1882 | [[package]] | 1902 | [[package]] |
1883 | name = "time-macros" | 1903 | name = "time-macros" |
1884 | version = "0.2.16" | 1904 | version = "0.2.18" |
1885 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1905 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1886 | checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" | 1906 | checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" |
1887 | dependencies = [ | 1907 | dependencies = [ |
1908 | "num-conv", | ||
1888 | "time-core", | 1909 | "time-core", |
1889 | ] | 1910 | ] |
1890 | 1911 | ||
@@ -1905,9 +1926,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | |||
1905 | 1926 | ||
1906 | [[package]] | 1927 | [[package]] |
1907 | name = "tokio" | 1928 | name = "tokio" |
1908 | version = "1.35.1" | 1929 | version = "1.37.0" |
1909 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1930 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1910 | checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104" | 1931 | checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" |
1911 | dependencies = [ | 1932 | dependencies = [ |
1912 | "backtrace", | 1933 | "backtrace", |
1913 | "bytes", | 1934 | "bytes", |
@@ -2073,9 +2094,9 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" | |||
2073 | 2094 | ||
2074 | [[package]] | 2095 | [[package]] |
2075 | name = "unicode-normalization" | 2096 | name = "unicode-normalization" |
2076 | version = "0.1.22" | 2097 | version = "0.1.23" |
2077 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2098 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2078 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" | 2099 | checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" |
2079 | dependencies = [ | 2100 | dependencies = [ |
2080 | "tinyvec", | 2101 | "tinyvec", |
2081 | ] | 2102 | ] |
@@ -2105,9 +2126,9 @@ checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" | |||
2105 | 2126 | ||
2106 | [[package]] | 2127 | [[package]] |
2107 | name = "uuid" | 2128 | name = "uuid" |
2108 | version = "1.6.1" | 2129 | version = "1.8.0" |
2109 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2130 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2110 | checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" | 2131 | checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" |
2111 | 2132 | ||
2112 | [[package]] | 2133 | [[package]] |
2113 | name = "valuable" | 2134 | name = "valuable" |
@@ -2144,9 +2165,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" | |||
2144 | 2165 | ||
2145 | [[package]] | 2166 | [[package]] |
2146 | name = "wasm-bindgen" | 2167 | name = "wasm-bindgen" |
2147 | version = "0.2.90" | 2168 | version = "0.2.92" |
2148 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2169 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2149 | checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" | 2170 | checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" |
2150 | dependencies = [ | 2171 | dependencies = [ |
2151 | "cfg-if", | 2172 | "cfg-if", |
2152 | "wasm-bindgen-macro", | 2173 | "wasm-bindgen-macro", |
@@ -2154,9 +2175,9 @@ dependencies = [ | |||
2154 | 2175 | ||
2155 | [[package]] | 2176 | [[package]] |
2156 | name = "wasm-bindgen-backend" | 2177 | name = "wasm-bindgen-backend" |
2157 | version = "0.2.90" | 2178 | version = "0.2.92" |
2158 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2179 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2159 | checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" | 2180 | checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" |
2160 | dependencies = [ | 2181 | dependencies = [ |
2161 | "bumpalo", | 2182 | "bumpalo", |
2162 | "log", | 2183 | "log", |
@@ -2169,9 +2190,9 @@ dependencies = [ | |||
2169 | 2190 | ||
2170 | [[package]] | 2191 | [[package]] |
2171 | name = "wasm-bindgen-macro" | 2192 | name = "wasm-bindgen-macro" |
2172 | version = "0.2.90" | 2193 | version = "0.2.92" |
2173 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2194 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2174 | checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" | 2195 | checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" |
2175 | dependencies = [ | 2196 | dependencies = [ |
2176 | "quote", | 2197 | "quote", |
2177 | "wasm-bindgen-macro-support", | 2198 | "wasm-bindgen-macro-support", |
@@ -2179,9 +2200,9 @@ dependencies = [ | |||
2179 | 2200 | ||
2180 | [[package]] | 2201 | [[package]] |
2181 | name = "wasm-bindgen-macro-support" | 2202 | name = "wasm-bindgen-macro-support" |
2182 | version = "0.2.90" | 2203 | version = "0.2.92" |
2183 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2204 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2184 | checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" | 2205 | checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" |
2185 | dependencies = [ | 2206 | dependencies = [ |
2186 | "proc-macro2", | 2207 | "proc-macro2", |
2187 | "quote", | 2208 | "quote", |
@@ -2192,9 +2213,9 @@ dependencies = [ | |||
2192 | 2213 | ||
2193 | [[package]] | 2214 | [[package]] |
2194 | name = "wasm-bindgen-shared" | 2215 | name = "wasm-bindgen-shared" |
2195 | version = "0.2.90" | 2216 | version = "0.2.92" |
2196 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2217 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2197 | checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" | 2218 | checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" |
2198 | 2219 | ||
2199 | [[package]] | 2220 | [[package]] |
2200 | name = "winapi" | 2221 | name = "winapi" |
@@ -2224,7 +2245,7 @@ version = "0.52.0" | |||
2224 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2245 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2225 | checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" | 2246 | checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" |
2226 | dependencies = [ | 2247 | dependencies = [ |
2227 | "windows-targets 0.52.0", | 2248 | "windows-targets 0.52.5", |
2228 | ] | 2249 | ] |
2229 | 2250 | ||
2230 | [[package]] | 2251 | [[package]] |
@@ -2242,7 +2263,7 @@ version = "0.52.0" | |||
2242 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2263 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2243 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" | 2264 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" |
2244 | dependencies = [ | 2265 | dependencies = [ |
2245 | "windows-targets 0.52.0", | 2266 | "windows-targets 0.52.5", |
2246 | ] | 2267 | ] |
2247 | 2268 | ||
2248 | [[package]] | 2269 | [[package]] |
@@ -2262,17 +2283,18 @@ dependencies = [ | |||
2262 | 2283 | ||
2263 | [[package]] | 2284 | [[package]] |
2264 | name = "windows-targets" | 2285 | name = "windows-targets" |
2265 | version = "0.52.0" | 2286 | version = "0.52.5" |
2266 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2287 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2267 | checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" | 2288 | checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" |
2268 | dependencies = [ | 2289 | dependencies = [ |
2269 | "windows_aarch64_gnullvm 0.52.0", | 2290 | "windows_aarch64_gnullvm 0.52.5", |
2270 | "windows_aarch64_msvc 0.52.0", | 2291 | "windows_aarch64_msvc 0.52.5", |
2271 | "windows_i686_gnu 0.52.0", | 2292 | "windows_i686_gnu 0.52.5", |
2272 | "windows_i686_msvc 0.52.0", | 2293 | "windows_i686_gnullvm", |
2273 | "windows_x86_64_gnu 0.52.0", | 2294 | "windows_i686_msvc 0.52.5", |
2274 | "windows_x86_64_gnullvm 0.52.0", | 2295 | "windows_x86_64_gnu 0.52.5", |
2275 | "windows_x86_64_msvc 0.52.0", | 2296 | "windows_x86_64_gnullvm 0.52.5", |
2297 | "windows_x86_64_msvc 0.52.5", | ||
2276 | ] | 2298 | ] |
2277 | 2299 | ||
2278 | [[package]] | 2300 | [[package]] |
@@ -2283,9 +2305,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" | |||
2283 | 2305 | ||
2284 | [[package]] | 2306 | [[package]] |
2285 | name = "windows_aarch64_gnullvm" | 2307 | name = "windows_aarch64_gnullvm" |
2286 | version = "0.52.0" | 2308 | version = "0.52.5" |
2287 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2309 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2288 | checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" | 2310 | checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" |
2289 | 2311 | ||
2290 | [[package]] | 2312 | [[package]] |
2291 | name = "windows_aarch64_msvc" | 2313 | name = "windows_aarch64_msvc" |
@@ -2295,9 +2317,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" | |||
2295 | 2317 | ||
2296 | [[package]] | 2318 | [[package]] |
2297 | name = "windows_aarch64_msvc" | 2319 | name = "windows_aarch64_msvc" |
2298 | version = "0.52.0" | 2320 | version = "0.52.5" |
2299 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2321 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2300 | checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" | 2322 | checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" |
2301 | 2323 | ||
2302 | [[package]] | 2324 | [[package]] |
2303 | name = "windows_i686_gnu" | 2325 | name = "windows_i686_gnu" |
@@ -2307,9 +2329,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" | |||
2307 | 2329 | ||
2308 | [[package]] | 2330 | [[package]] |
2309 | name = "windows_i686_gnu" | 2331 | name = "windows_i686_gnu" |
2310 | version = "0.52.0" | 2332 | version = "0.52.5" |
2333 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2334 | checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" | ||
2335 | |||
2336 | [[package]] | ||
2337 | name = "windows_i686_gnullvm" | ||
2338 | version = "0.52.5" | ||
2311 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2339 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2312 | checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" | 2340 | checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" |
2313 | 2341 | ||
2314 | [[package]] | 2342 | [[package]] |
2315 | name = "windows_i686_msvc" | 2343 | name = "windows_i686_msvc" |
@@ -2319,9 +2347,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" | |||
2319 | 2347 | ||
2320 | [[package]] | 2348 | [[package]] |
2321 | name = "windows_i686_msvc" | 2349 | name = "windows_i686_msvc" |
2322 | version = "0.52.0" | 2350 | version = "0.52.5" |
2323 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2351 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2324 | checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" | 2352 | checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" |
2325 | 2353 | ||
2326 | [[package]] | 2354 | [[package]] |
2327 | name = "windows_x86_64_gnu" | 2355 | name = "windows_x86_64_gnu" |
@@ -2331,9 +2359,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" | |||
2331 | 2359 | ||
2332 | [[package]] | 2360 | [[package]] |
2333 | name = "windows_x86_64_gnu" | 2361 | name = "windows_x86_64_gnu" |
2334 | version = "0.52.0" | 2362 | version = "0.52.5" |
2335 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2363 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2336 | checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" | 2364 | checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" |
2337 | 2365 | ||
2338 | [[package]] | 2366 | [[package]] |
2339 | name = "windows_x86_64_gnullvm" | 2367 | name = "windows_x86_64_gnullvm" |
@@ -2343,9 +2371,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" | |||
2343 | 2371 | ||
2344 | [[package]] | 2372 | [[package]] |
2345 | name = "windows_x86_64_gnullvm" | 2373 | name = "windows_x86_64_gnullvm" |
2346 | version = "0.52.0" | 2374 | version = "0.52.5" |
2347 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2375 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2348 | checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" | 2376 | checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" |
2349 | 2377 | ||
2350 | [[package]] | 2378 | [[package]] |
2351 | name = "windows_x86_64_msvc" | 2379 | name = "windows_x86_64_msvc" |
@@ -2355,9 +2383,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" | |||
2355 | 2383 | ||
2356 | [[package]] | 2384 | [[package]] |
2357 | name = "windows_x86_64_msvc" | 2385 | name = "windows_x86_64_msvc" |
2358 | version = "0.52.0" | 2386 | version = "0.52.5" |
2359 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2387 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2360 | checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" | 2388 | checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" |
2361 | 2389 | ||
2362 | [[package]] | 2390 | [[package]] |
2363 | name = "xmlparser" | 2391 | name = "xmlparser" |
@@ -2366,6 +2394,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2366 | checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" | 2394 | checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4" |
2367 | 2395 | ||
2368 | [[package]] | 2396 | [[package]] |
2397 | name = "zerocopy" | ||
2398 | version = "0.7.32" | ||
2399 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2400 | checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" | ||
2401 | dependencies = [ | ||
2402 | "zerocopy-derive", | ||
2403 | ] | ||
2404 | |||
2405 | [[package]] | ||
2406 | name = "zerocopy-derive" | ||
2407 | version = "0.7.32" | ||
2408 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2409 | checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" | ||
2410 | dependencies = [ | ||
2411 | "proc-macro2", | ||
2412 | "quote", | ||
2413 | "syn", | ||
2414 | ] | ||
2415 | |||
2416 | [[package]] | ||
2369 | name = "zeroize" | 2417 | name = "zeroize" |
2370 | version = "1.7.0" | 2418 | version = "1.7.0" |
2371 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2419 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -3,11 +3,11 @@ | |||
3 | "advisory-db": { | 3 | "advisory-db": { |
4 | "flake": false, | 4 | "flake": false, |
5 | "locked": { | 5 | "locked": { |
6 | "lastModified": 1706115649, | 6 | "lastModified": 1714183630, |
7 | "narHash": "sha256-Qrqb54qGaRsFdLDj8EJtI5leFGFfqWHLRgC+t6KWlpQ=", | 7 | "narHash": "sha256-1BVft7ggSN2XXFeXQjazU3jN9wVECd9qp2mZx/8GDMk=", |
8 | "owner": "rustsec", | 8 | "owner": "rustsec", |
9 | "repo": "advisory-db", | 9 | "repo": "advisory-db", |
10 | "rev": "1d2202ea2b32fabd3307641010301bfe187ef11a", | 10 | "rev": "35e7459a331d3e0c585e56dabd03006b9b354088", |
11 | "type": "github" | 11 | "type": "github" |
12 | }, | 12 | }, |
13 | "original": { | 13 | "original": { |
@@ -23,16 +23,16 @@ | |||
23 | ] | 23 | ] |
24 | }, | 24 | }, |
25 | "locked": { | 25 | "locked": { |
26 | "lastModified": 1705625727, | 26 | "lastModified": 1712513517, |
27 | "narHash": "sha256-naMq6+TNLpEiBBjc0XaCbMLYJxJXWTZz4JGSpYGgIOM=", | 27 | "narHash": "sha256-VuLm5tTMqfS82NZAsNfsW7U+pTZ1+GcOU7gYR/Fb1Z4=", |
28 | "rev": "8f515142e805dc377cf8edb0ff75d14a11307f89", | 28 | "rev": "9caad1eb0c69a13ee6467035353b71a76c85ea53", |
29 | "revCount": 485, | 29 | "revCount": 540, |
30 | "type": "tarball", | 30 | "type": "tarball", |
31 | "url": "https://api.flakehub.com/f/pinned/ipetkov/crane/0.16.0/018d1f38-c6e9-7615-a492-9b554687ba26/source.tar.gz" | 31 | "url": "https://api.flakehub.com/f/pinned/ipetkov/crane/0.16.4/018eb9c4-47d3-7d6b-9a55-1e0f89eabf96/source.tar.gz" |
32 | }, | 32 | }, |
33 | "original": { | 33 | "original": { |
34 | "type": "tarball", | 34 | "type": "tarball", |
35 | "url": "https://flakehub.com/f/ipetkov/crane/0.16.0.tar.gz" | 35 | "url": "https://flakehub.com/f/ipetkov/crane/0.16.3.tar.gz" |
36 | } | 36 | } |
37 | }, | 37 | }, |
38 | "flake-utils": { | 38 | "flake-utils": { |
@@ -40,26 +40,26 @@ | |||
40 | "systems": "systems" | 40 | "systems": "systems" |
41 | }, | 41 | }, |
42 | "locked": { | 42 | "locked": { |
43 | "lastModified": 1705309234, | 43 | "lastModified": 1710146030, |
44 | "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", | 44 | "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", |
45 | "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", | 45 | "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", |
46 | "revCount": 90, | 46 | "revCount": 92, |
47 | "type": "tarball", | 47 | "type": "tarball", |
48 | "url": "https://api.flakehub.com/f/pinned/numtide/flake-utils/0.1.90%2Brev-1ef2e671c3b0c19053962c07dbda38332dcebf26/018d0c5a-ac7d-77f2-bef1-1527903ad3cc/source.tar.gz" | 48 | "url": "https://api.flakehub.com/f/pinned/numtide/flake-utils/0.1.92%2Brev-b1d9ab70662946ef0850d488da1c9019f3a9752a/018e2ca5-e5a2-7f80-9261-445a8cecd4d7/source.tar.gz" |
49 | }, | 49 | }, |
50 | "original": { | 50 | "original": { |
51 | "type": "tarball", | 51 | "type": "tarball", |
52 | "url": "https://flakehub.com/f/numtide/flake-utils/0.1.90.tar.gz" | 52 | "url": "https://flakehub.com/f/numtide/flake-utils/0.1.92.tar.gz" |
53 | } | 53 | } |
54 | }, | 54 | }, |
55 | "nixpkgs": { | 55 | "nixpkgs": { |
56 | "locked": { | 56 | "locked": { |
57 | "lastModified": 1705916986, | 57 | "lastModified": 1713828541, |
58 | "narHash": "sha256-iBpfltu6QvN4xMpen6jGGEb6jOqmmVQKUrXdOJ32u8w=", | 58 | "narHash": "sha256-KtvQeE12MSkCOhvVmnmcZCjnx7t31zWin2XVSDOwBDE=", |
59 | "rev": "d7f206b723e42edb09d9d753020a84b3061a79d8", | 59 | "rev": "b500489fd3cf653eafc075f9362423ad5cdd8676", |
60 | "revCount": 554771, | 60 | "revCount": 557957, |
61 | "type": "tarball", | 61 | "type": "tarball", |
62 | "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2311.554771%2Brev-d7f206b723e42edb09d9d753020a84b3061a79d8/018d35d3-1b83-7e69-a58c-3fca76cb78bb/source.tar.gz" | 62 | "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2311.557957%2Brev-b500489fd3cf653eafc075f9362423ad5cdd8676/018f0fd6-81fe-7478-8e97-08ae23c447b1/source.tar.gz" |
63 | }, | 63 | }, |
64 | "original": { | 64 | "original": { |
65 | "type": "tarball", | 65 | "type": "tarball", |
@@ -85,11 +85,11 @@ | |||
85 | ] | 85 | ] |
86 | }, | 86 | }, |
87 | "locked": { | 87 | "locked": { |
88 | "lastModified": 1706149103, | 88 | "lastModified": 1714356894, |
89 | "narHash": "sha256-Me28A0tAb1EzZIozfi31+hnsQIaYU0HXaMPWCe+zByc=", | 89 | "narHash": "sha256-W6Mss7AG6bnFT1BqRApHXvLXBrFOu7V0+EUe9iML30s=", |
90 | "owner": "oxalica", | 90 | "owner": "oxalica", |
91 | "repo": "rust-overlay", | 91 | "repo": "rust-overlay", |
92 | "rev": "493cc67d5e9f1b298241b8d92aa06883296acc3f", | 92 | "rev": "d9b44509b4064f0a3fc9c7c92a603861f52fbedc", |
93 | "type": "github" | 93 | "type": "github" |
94 | }, | 94 | }, |
95 | "original": { | 95 | "original": { |
@@ -1,10 +1,10 @@ | |||
1 | { | 1 | { |
2 | inputs = { | 2 | inputs = { |
3 | nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2311.*.tar.gz"; | 3 | nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.2311.*.tar.gz"; |
4 | flake-utils.url = "https://flakehub.com/f/numtide/flake-utils/0.1.90.tar.gz"; | 4 | flake-utils.url = "https://flakehub.com/f/numtide/flake-utils/0.1.92.tar.gz"; |
5 | 5 | ||
6 | crane = { | 6 | crane = { |
7 | url = "https://flakehub.com/f/ipetkov/crane/0.16.0.tar.gz"; | 7 | url = "https://flakehub.com/f/ipetkov/crane/0.16.3.tar.gz"; |
8 | inputs.nixpkgs.follows = "nixpkgs"; | 8 | inputs.nixpkgs.follows = "nixpkgs"; |
9 | }; | 9 | }; |
10 | 10 | ||